GROMACS version:
GROMACS modification: No
Hi,
I have a simple/general/dumb question, for clarification. I want to create a solvation shell around a solute at the standard water density, in a big box, that I will fill later with a different solvent.
If I run:
gmx solvate -cp solute.pdb -cs ../TIP3P_eq_box_6x6x6.gro -o solute_TIP3P_box.gro -p test.top -box 10 10 10
… the output is:
Output configuration contains 100518 atoms in 33506 residues
Volume : 1000 (nm^3)
Density : 1002.34 (g/l)
Number of solvent molecules: 33505
So, the whole box is at 1 g/l. Now, if I run:
gmx solvate -cp solute.pdb -cs ../TIP3P_eq_box_6x6x6.gro -o solute_TIP3P_shell.gro -p test_shell.top -shell 1 -box 10 10 10
…the output is:
Output configuration contains 540 atoms in 180 residues
Volume : 1000 (nm^3)
Density : 5.38472 (g/l)
Number of solvent molecules: 179
The density is higher, so I guess that the number is calculated with respect to the shell volume, not the box volume, right? (In order to get the solvation shell at 1 g/l I have to decrease the number of TIP3P waters with the -maxsol
option.)
Thanks in advance.