GROMACS version: 2020.1-Ubuntu-2020.1-1
GROMACS modification: Yes/No
Im running a workflow for an umbrella sampling pulling a ion away from a peptide:
gmx pdb2gmx -f Peptide.pdb -o processed.gro -water tip3p -ff amber14sb
gmx editconf -f processed.gro -o newbox.gro -c -d 3 -bt triclinic
gmx solvate -cp newbox.gro -cs spc216.gro -p topol.top -o solv.gro
gmx grompp -f ions.mdp -c solv.gro -p topol.top -o ions.tpr
echo -e “SOL” | gmx genion -s ions.tpr -o peptide_ions.gro -p topol.top -pname LI -nname CL -neutral -np 1 -nn 1
gmx grompp -f minim.mdp -c peptide_ions.gro -p topol.top -o em.tpr
gmx mdrun -v -deffnm em
gmx grompp -f nvt.mdp -c em.gro -r em.gro -p topol.top -o nvt.tpr
gmx mdrun -deffnm nvt
gmx grompp -f npt.mdp -c nvt.gro -r nvt.gro -t nvt.cpt -p topol.top -o npt.tpr
gmx mdrun -deffnm npt
gmx grompp -f md.mdp -c npt.gro -t npt.cpt -p topol.top -o md_01.tpr
gmx mdrun -v -deffnm md_01
gmx grompp -f pull.mdp -c md_01.gro -t md_01.cpt -p topol.top -o pull.tpr
gmx mdrun -v -deffnm pull
almost all the process run well, but when i run the line of code i get this error:
Output error:
starting mdrun ‘Protein in water’
500000 steps, 1000.0 ps.
step 7600, will finish Thu Aug 15 14:02:23 2024vol 0.69 imb F 4% pme/F 0.76
Program: gmx mdrun, version 2020.1-Ubuntu-2020.1-1
Source file: src/gromacs/ewald/pme_redistribute.cpp (line 305)
MPI rank: 29 (out of 48)
Fatal error:
100 particles communicated to PME rank 4 are more than 2/3 times the cut-off
out of the domain decomposition cell of their charge group in dimension x.
This usually means that your system is not well equilibrated.
Im attaching below the parameters files. im comitting a mistake somewhere and im not seeing it?
allParameters.mdp (9.8 KB)