-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7597c0
commit 1c4bf10
Showing
36 changed files
with
637 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
\newcommand{\cvversion}{2024-11-08} | ||
\newcommand{\cvversion}{2024-11-13} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## Gromacs mwABF regression test | ||
|
||
This directory contains a test for multiple-walker ABF in Colvars/Gromacs. | ||
|
||
|
||
### Version tested | ||
|
||
The tests are valid against Gromacs version 2024.3 and following. | ||
|
||
|
||
### Files tested | ||
|
||
Only the traj files of the simulation **a** is being tested. | ||
|
||
|
||
### Scripts | ||
|
||
- `create_tpr.sh` is used to generate the .tpr | ||
- `run.sh` is called by a `run_tests.sh` script to run the REMD simulation | ||
- `cleanup.sh` is called by a `run_tests.sh` to clean the simulations files in the subfolders. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
;Run control | ||
integrator = md-vv | ||
;time step in picoseconds | ||
dt = 0.002 | ||
;number of steps | ||
nsteps = 50 | ||
;no trr | ||
nstxout = 0 | ||
nstvout = 0 | ||
nstfout = 0 | ||
;frequency to write energies to log file | ||
nstlog = 1 | ||
;frequency to write energies to energy file | ||
nstenergy = 1 | ||
nstcalcenergy = 1 | ||
;frequency to write coordinates to xtc trajectory | ||
nstxout-compressed = 1 | ||
|
||
cutoff-scheme = verlet | ||
|
||
|
||
; Periodic boundary conditions | ||
pbc = xyz ; 3-D PBC | ||
|
||
; Bond parameters | ||
constraint_algorithm = lincs | ||
constraints = h-bonds | ||
|
||
|
||
|
||
;treatment of van der waals interactions | ||
vdwtype = cut-off | ||
vdw-modifier = Potential-switch | ||
rvdw = 1.2 | ||
rvdw-switch = 1.0 | ||
|
||
coulombtype = PME | ||
rcoulomb = 1.2 | ||
pme_order = 4 ; cubic interpolation | ||
fourierspacing = 0.12 ; grid spacing for FFT | ||
|
||
;Temperature coupling | ||
tcoupl = v-rescale | ||
tc-grps = System | ||
ref-t = 300 | ||
tau-t = 1 | ||
ld-seed = 1 | ||
|
||
; pressure coupling | ||
pcoupl = no | ||
|
||
gen-vel = no | ||
|
||
colvars-active = yes | ||
colvars-configfile = test.colvars | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../test.colvars |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
;Run control | ||
integrator = md-vv | ||
;time step in picoseconds | ||
dt = 0.002 | ||
;number of steps | ||
nsteps = 50 | ||
;no trr | ||
nstxout = 0 | ||
nstvout = 0 | ||
nstfout = 0 | ||
;frequency to write energies to log file | ||
nstlog = 1 | ||
;frequency to write energies to energy file | ||
nstenergy = 1 | ||
nstcalcenergy = 1 | ||
;frequency to write coordinates to xtc trajectory | ||
nstxout-compressed = 1 | ||
|
||
cutoff-scheme = verlet | ||
|
||
|
||
; Periodic boundary conditions | ||
pbc = xyz ; 3-D PBC | ||
|
||
; Bond parameters | ||
constraint_algorithm = lincs | ||
constraints = h-bonds | ||
|
||
|
||
|
||
;treatment of van der waals interactions | ||
vdwtype = cut-off | ||
vdw-modifier = Potential-switch | ||
rvdw = 1.2 | ||
rvdw-switch = 1.0 | ||
|
||
coulombtype = PME | ||
rcoulomb = 1.2 | ||
pme_order = 4 ; cubic interpolation | ||
fourierspacing = 0.12 ; grid spacing for FFT | ||
|
||
;Temperature coupling | ||
tcoupl = v-rescale | ||
tc-grps = System | ||
ref-t = 300 | ||
tau-t = 1 | ||
ld-seed = 2 | ||
|
||
; pressure coupling | ||
pcoupl = no | ||
|
||
gen-vel = no | ||
|
||
colvars-active = yes | ||
colvars-configfile = test.colvars | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../test.colvars |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
;Run control | ||
integrator = md-vv | ||
;time step in picoseconds | ||
dt = 0.002 | ||
;number of steps | ||
nsteps = 50 | ||
;no trr | ||
nstxout = 0 | ||
nstvout = 0 | ||
nstfout = 0 | ||
;frequency to write energies to log file | ||
nstlog = 1 | ||
;frequency to write energies to energy file | ||
nstenergy = 1 | ||
nstcalcenergy = 1 | ||
;frequency to write coordinates to xtc trajectory | ||
nstxout-compressed = 1 | ||
|
||
cutoff-scheme = verlet | ||
|
||
|
||
; Periodic boundary conditions | ||
pbc = xyz ; 3-D PBC | ||
|
||
; Bond parameters | ||
constraint_algorithm = lincs | ||
constraints = h-bonds | ||
|
||
|
||
|
||
;treatment of van der waals interactions | ||
vdwtype = cut-off | ||
vdw-modifier = Potential-switch | ||
rvdw = 1.2 | ||
rvdw-switch = 1.0 | ||
|
||
coulombtype = PME | ||
rcoulomb = 1.2 | ||
pme_order = 4 ; cubic interpolation | ||
fourierspacing = 0.12 ; grid spacing for FFT | ||
|
||
;Temperature coupling | ||
tcoupl = v-rescale | ||
tc-grps = System | ||
ref-t = 300 | ||
tau-t = 1 | ||
ld-seed = 3 | ||
|
||
; pressure coupling | ||
pcoupl = no | ||
|
||
gen-vel = no | ||
|
||
colvars-active = yes | ||
colvars-configfile = test.colvars | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../test.colvars |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
# -*- sh-basic-offset: 2; sh-indentation: 2; -*- | ||
|
||
# Script to remove simulations files | ||
# Called by `run_tests.sh` scripts | ||
|
||
echo "Cleaning up output files" | ||
for i in a b c d | ||
do | ||
cd $i | ||
rm -f *.xtc *.trr *.edr *.cpt *.gro *.log *~ \#*\# mdout.mdp | ||
rm -f *.state *.old *.traj *.zcount | ||
cd .. | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
;Run control | ||
integrator = md-vv | ||
;time step in picoseconds | ||
dt = 0.002 | ||
;number of steps | ||
nsteps = 50 | ||
;no trr | ||
nstxout = 0 | ||
nstvout = 0 | ||
nstfout = 0 | ||
;frequency to write energies to log file | ||
nstlog = 1 | ||
;frequency to write energies to energy file | ||
nstenergy = 1 | ||
nstcalcenergy = 1 | ||
;frequency to write coordinates to xtc trajectory | ||
nstxout-compressed = 1 | ||
|
||
cutoff-scheme = verlet | ||
|
||
|
||
; Periodic boundary conditions | ||
pbc = xyz ; 3-D PBC | ||
|
||
; Bond parameters | ||
constraint_algorithm = lincs | ||
constraints = h-bonds | ||
|
||
|
||
|
||
;treatment of van der waals interactions | ||
vdwtype = cut-off | ||
vdw-modifier = Potential-switch | ||
rvdw = 1.2 | ||
rvdw-switch = 1.0 | ||
|
||
coulombtype = PME | ||
rcoulomb = 1.2 | ||
pme_order = 4 ; cubic interpolation | ||
fourierspacing = 0.12 ; grid spacing for FFT | ||
|
||
;Temperature coupling | ||
tcoupl = v-rescale | ||
tc-grps = System | ||
ref-t = 300 | ||
tau-t = 1 | ||
ld-seed = 4 | ||
|
||
; pressure coupling | ||
pcoupl = no | ||
|
||
gen-vel = no | ||
|
||
colvars-active = yes | ||
colvars-configfile = test.colvars | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../test.colvars |
Binary file not shown.
Oops, something went wrong.