How to generate initial condition positions with a coarse grained 10 bead polymer model? #375
-
Hi there! I am trying to generate initial location conditions for 200 coarse grained generic polymers, each of length 10 beads. Each bead has a radius of 1, and they are to fit in a cubic box of side length 12.628. They are the kind of polymers described in Model C of the follwoing paper https://chemrxiv.org/engage/chemrxiv/article-details/6647c97491aefa6ce14a4a92. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @Learnian, Indeed you would have to create your own ff-files, but they are rather simple (see below). To generate the system coordinates you'll need a very simple topology file as shown below. To generate your polymer itp file use Also, be aware that GROMACS might not be able to run the model. We're exploring other MD engines but haven't made much progress yet. FF-File
TOP-File
|
Beta Was this translation helpful? Give feedback.
Hi @Learnian,
Indeed you would have to create your own ff-files, but they are rather simple (see below). To generate the system coordinates you'll need a very simple topology file as shown below. To generate your polymer itp file use
polyply gen_params -f ff_ile.ff -seq A:10 -o A.itp -name A
. Then use the top file to generate the coordinates withpolyply gen_coords -p system.top -box 12.628 12.628 12.628 -o coords.gro
. If you want to use the WCM model to bias the initial end-to-end distance you can provide a build file though I'm not sure it makes any sense for such short polymers.Also, be aware that GROMACS might not be able to run the model. We're exploring other MD engines but haven't…