VMD-L Mailing List
From: Mcguire, Kelly (klmcguire_at_UCSD.EDU)
Date: Tue May 04 2021 - 12:45:55 CDT
- Next message: René Hafner TUK: "Re: Tcl Scripting Question"
- Previous message: John Stone: "Re: Re: rendering with a very large scene description file"
- Next in thread: René Hafner TUK: "Re: Tcl Scripting Question"
- Reply: René Hafner TUK: "Re: Tcl Scripting Question"
- Reply: Ashar Malik: "Re: Tcl Scripting Question"
- Reply: Vermaas, Josh: "Re: Tcl Scripting Question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
I have a DCD file with 5000 frames. I have a script that saves each frame as a PDB (shown below). This takes quite a bit of time to finish as you can imagine. Is there a way to run this in parallel with MPI (I don't have much experience with this) or on multiple CPUs on a node with 24 CPUs or multiple threads to speed up the process? I will need to do this with multiple DCD files in the future. Thanks!
mol new ../../Aldolase-HMR.prmtop
mol addfile ../../MD-1.nc waitfor all
for {set i 1} {$i < 4999} {incr i} {
[atomselect top all frame $i] writepdb $i.pdb
}
Dr. Kelly McGuire
Postdoc
Chemistry/Biochemistry Department
Natural Science Building, 4104A, 4106A, 4017
- Next message: René Hafner TUK: "Re: Tcl Scripting Question"
- Previous message: John Stone: "Re: Re: rendering with a very large scene description file"
- Next in thread: René Hafner TUK: "Re: Tcl Scripting Question"
- Reply: René Hafner TUK: "Re: Tcl Scripting Question"
- Reply: Ashar Malik: "Re: Tcl Scripting Question"
- Reply: Vermaas, Josh: "Re: Tcl Scripting Question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]