From: Lechuga, Javier (j.lechuga_at_cranfield.ac.uk)
Date: Wed Aug 30 2006 - 06:11:47 CDT

Hello,
 
Running the next script into VMD:
 
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
set Atom [atomselect top all]
set FrameN [molinfo top get numframes]
set outfile [open File.out w]
puts $outfile "[$Atom num] $FrameN"
for {set FrameI 0} {$FrameI<$FrameN} {incr FrameI 1} {
set Frame [atomselect top all frame $FrameI]
puts $outfile [$Frame get {resname segname resid name index x y z}]
}
close $outfile
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 
After 200 frames processed, I am getting the next error:
 
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Runtime error!
 
Program: C:\Program files\University of Illinois\VMD\vmd.exe
 
This application has requested the Runtime to terminate in an unusual way,
Please contact the application's support team for more information
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 
Any idea about what it could be or how can I solve this issue?
 
Thank you