Previous Thread
Next Thread
Print Thread
#37531 06/19/19 04:56 PM
Joined: Oct 2017
Posts: 42
R
Rohit Offline OP
Forum Member
OP Offline
Forum Member
R
Joined: Oct 2017
Posts: 42
Hi,

I was trying to save the interaction energies in array and dump them in the file at the end of the loop completion.

I tried things mentioned in miscom.doc but still I get this error I might not have understood the miscom.doc completely.

Below is the snippet and error which I encounter.

snippet
Code:
OPEN UNIT 28 WRITE FORM NAME dummyfile.dat

SET frame 0
LABEL TimeFrameTernary
TRAJ READ

inter SELECT some1 END SELECT some2 END
set @wbvdw@@frame ?vdw
set @wbelec@@frame ?elec
set @wbtot@@frame ?ener

increment frame
if frame .LT. ?NFILE GOTO TimeFrameTernary
echu 28
echo @wbvdw @wbelec @wbtot 



Error

Code:
 CHARMM>    set @wbvdw@@frame ?vdw
 Parameter: FRAME -> "0"
  * WARNING * <PARSUB> Command ignored. Token not found: >WBVDW0<


Regards,
Rohit Modee

Joined: Sep 2003
Posts: 8,660
Likes: 26
rmv Online Content
Forum Member
Online Content
Forum Member
Joined: Sep 2003
Posts: 8,660
Likes: 26
Multiple syntax errors. For setting the values, you do not use the initial @ or the double @@ e.g.

set wbvdw@frame ?vdw

To obtain the stored value, both are necessary

echo @wbvdw@@frame

Also, you cannot print the entire array via

echo @wbvdw

but must again loop over the indices.


It may be easier to write the data to a file as it being generated, e.g.

! OPEN FILE, SET ECHO UNIT
open unit 11 form write name intere.txt
echu 11
SET frame 0
LABEL TimeFrameTernary
TRAJ READ
inter SELECT some1 END SELECT some2 END
echo @FRAME ?VDW ?ELEC ?ENER
increment frame
if frame .LT. ?NFILE GOTO TimeFrameTernary


Rick Venable
computational chemist


Moderated by  BRBrooks, lennart, rmv 

Link Copied to Clipboard
Powered by UBB.threads™ PHP Forum Software 7.7.5
(Release build 20201027)
Responsive Width:

PHP: 7.3.31-1~deb10u5 Page Time: 0.010s Queries: 18 (0.007s) Memory: 0.7294 MB (Peak: 0.7705 MB) Data Comp: Off Server Time: 2023-12-10 17:47:39 UTC
Valid HTML 5 and Valid CSS