We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80e45d0 commit ba853efCopy full SHA for ba853ef
2 files changed
level3/solvation-energy/preparation/icpRun.sh
level3/solvation-energy/preparation/local-run.sh
@@ -0,0 +1,18 @@
1
+#!/bin/sh
2
+set -e
3
+
4
+export GMX_MAXBACKUP=-1
5
6
+gmx=/home/simon/Softwares/gromacs-2024.2/build/bin/gmx
7
8
+${gmx} trjconv -f FJEW_allatom_optimised_geometry.pdb -s FJEW_allatom_optimised_geometry.pdb -o hbc.gro -box 3.5 3.5 3.5 -center << EOF
9
+ 0
10
11
+EOF
12
13
+${gmx} grompp -f inputs/min.mdp -c solvated.gro -p topol.top -o min -pp min -po min -maxwarn 1
14
+${gmx} mdrun -v -deffnm min -nt 8
15
+${gmx} grompp -f inputs/nvt.mdp -c min.gro -p topol.top -o nvt -pp nvt -po nvt -maxwarn 1
16
+${gmx} mdrun -v -deffnm nvt -nt 8
17
+${gmx} grompp -f inputs/npt.mdp -c nvt.gro -p topol.top -o npt -pp npt -po npt -maxwarn 1
18
+${gmx} mdrun -v -deffnm npt -nt 8
0 commit comments