calculate PMF from Umbrella sampling. #725
-
|
Dear developer, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Hi @Adityapanda1992, first a disclaimer: this simulation is way too short (50000 steps per window) to give you any statistically meaningful results. Therefore, I assume you are only inquiring about the general protocol and not for this specific run. What you will need is the To extract the trajectories of the python3 plot_colvars_traj.py \
--first $((${targetNumSteps}*${i})) \
--last $((${targetNumSteps}*(${i}+1))) \
--variables myColvar \
--output-file window-${i}.dat \
*.colvars.trajor also load the script in Python and do the slicing there. @fabsugar You want to provide some example for the FCAM unbiasing method? |
Beta Was this translation helpful? Give feedback.
Hi @Adityapanda1992, first a disclaimer: this simulation is way too short (50000 steps per window) to give you any statistically meaningful results. Therefore, I assume you are only inquiring about the general protocol and not for this specific run.
What you will need is the
.colvars.trajfile generated during this run (or the set of them if continuing from checkpoints), to be run through an unbiasing method such as WHAM or other methods. The specifics of the input format depend on each code. The.colvars.trajfile will contain the minimum common denominator, i.e. the biased variable and (given that you haveoutputEnergy yes) the corresponding restraint energy.To extract the trajectories…