Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plumed AlphaFold
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Kurečka
Plumed AlphaFold
Commits
02aba5b6
There was an error fetching the commit references. Please try again later.
Commit
02aba5b6
authored
7 years ago
by
Giovanni Bussi
Browse files
Options
Downloads
Plain Diff
Merge branch 'v2.4'
parents
f66eacac
9b2fdbc2
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES/v2.4.md
+1
-0
1 addition, 0 deletions
CHANGES/v2.4.md
regtest/basic/rt67/config
+1
-1
1 addition, 1 deletion
regtest/basic/rt67/config
regtest/basic/rt67/plumed.dat
+0
-1
0 additions, 1 deletion
regtest/basic/rt67/plumed.dat
src/cltools/Driver.cpp
+6
-0
6 additions, 0 deletions
src/cltools/Driver.cpp
with
8 additions
and
2 deletions
CHANGES/v2.4.md
+
1
−
0
View file @
02aba5b6
...
@@ -155,6 +155,7 @@ Fixes after beta release:
...
@@ -155,6 +155,7 @@ Fixes after beta release:
-
(developers)
`plumed config makefile_conf`
can be used to retrieve
`Makefile.conf`
file a posteriori.
-
(developers)
`plumed config makefile_conf`
can be used to retrieve
`Makefile.conf`
file a posteriori.
-
Added patch for Quantum ESPRESSO 6.2 (thanks to Ralf Meyer).
-
Added patch for Quantum ESPRESSO 6.2 (thanks to Ralf Meyer).
-
Implemented HREX for gromacs-2016.4.
-
Implemented HREX for gromacs-2016.4.
-
Added possibility to pass
`--kt`
from
\r
ef driver.
-
(developers) Store
`MPIEXEC`
variable at configure time and use it later for running regtests. Notice that in case
-
(developers) Store
`MPIEXEC`
variable at configure time and use it later for running regtests. Notice that in case
`MPIEXEC`
is not specified regtests will be run using the command stored in env var
`PLUMED_MPIRUN`
or, if this is
`MPIEXEC`
is not specified regtests will be run using the command stored in env var
`PLUMED_MPIRUN`
or, if this is
also not defined, using
`mpirun`
.
also not defined, using
`mpirun`
.
...
...
This diff is collapsed.
Click to expand it.
regtest/basic/rt67/config
+
1
−
1
View file @
02aba5b6
type=driver
type=driver
# this is to test a different name
# this is to test a different name
arg="--plumed plumed.dat --trajectory-stride 500 --timestep 0.002 --igro traj.gro"
arg="--plumed plumed.dat --trajectory-stride 500 --timestep 0.002 --igro traj.gro
--kt 2.494339
"
This diff is collapsed.
Click to expand it.
regtest/basic/rt67/plumed.dat
+
0
−
1
View file @
02aba5b6
...
@@ -6,7 +6,6 @@ METAD ...
...
@@ -6,7 +6,6 @@ METAD ...
SIGMA=0.20,0.20
SIGMA=0.20,0.20
HEIGHT=1.20
HEIGHT=1.20
BIASFACTOR=10
BIASFACTOR=10
TEMP=300.0
PACE=500
PACE=500
LABEL=metad
LABEL=metad
FILE=HILLS
FILE=HILLS
...
...
This diff is collapsed.
Click to expand it.
src/cltools/Driver.cpp
+
6
−
0
View file @
02aba5b6
...
@@ -230,6 +230,7 @@ void Driver<real>::registerKeywords( Keywords& keys ) {
...
@@ -230,6 +230,7 @@ void Driver<real>::registerKeywords( Keywords& keys ) {
keys
.
add
(
"optional"
,
"--length-units"
,
"units for length, either as a string or a number"
);
keys
.
add
(
"optional"
,
"--length-units"
,
"units for length, either as a string or a number"
);
keys
.
add
(
"optional"
,
"--mass-units"
,
"units for mass in pdb and mc file, either as a string or a number"
);
keys
.
add
(
"optional"
,
"--mass-units"
,
"units for mass in pdb and mc file, either as a string or a number"
);
keys
.
add
(
"optional"
,
"--charge-units"
,
"units for charge in pdb and mc file, either as a string or a number"
);
keys
.
add
(
"optional"
,
"--charge-units"
,
"units for charge in pdb and mc file, either as a string or a number"
);
keys
.
add
(
"optional"
,
"--kt"
,
"set kBT, it will not be necessary to specify temperature in input file"
);
keys
.
add
(
"optional"
,
"--dump-forces"
,
"dump the forces on a file"
);
keys
.
add
(
"optional"
,
"--dump-forces"
,
"dump the forces on a file"
);
keys
.
add
(
"optional"
,
"--dump-forces-fmt"
,
"( default=%%f ) the format to use to dump the forces"
);
keys
.
add
(
"optional"
,
"--dump-forces-fmt"
,
"( default=%%f ) the format to use to dump the forces"
);
keys
.
addFlag
(
"--dump-full-virial"
,
false
,
"with --dump-forces, it dumps the 9 components of the virial"
);
keys
.
addFlag
(
"--dump-full-virial"
,
false
,
"with --dump-forces, it dumps the 9 components of the virial"
);
...
@@ -351,6 +352,8 @@ int Driver<real>::main(FILE* in,FILE*out,Communicator& pc) {
...
@@ -351,6 +352,8 @@ int Driver<real>::main(FILE* in,FILE*out,Communicator& pc) {
if
(
debugforces
!=
""
&&
(
debug_dd
||
debug_pd
)
)
error
(
"cannot debug forces and domain/particle decomposition at same time"
);
if
(
debugforces
!=
""
&&
(
debug_dd
||
debug_pd
)
)
error
(
"cannot debug forces and domain/particle decomposition at same time"
);
if
(
debugforces
!=
""
&&
sizeof
(
real
)
!=
sizeof
(
double
)
)
error
(
"cannot debug forces in single precision mode"
);
if
(
debugforces
!=
""
&&
sizeof
(
real
)
!=
sizeof
(
double
)
)
error
(
"cannot debug forces in single precision mode"
);
real
kt
=-
1.0
;
parse
(
"--kt"
,
kt
);
string
trajectory_fmt
;
string
trajectory_fmt
;
bool
use_molfile
=
false
;
bool
use_molfile
=
false
;
...
@@ -633,6 +636,9 @@ int Driver<real>::main(FILE* in,FILE*out,Communicator& pc) {
...
@@ -633,6 +636,9 @@ int Driver<real>::main(FILE* in,FILE*out,Communicator& pc) {
natoms
=
0
;
natoms
=
0
;
}
}
if
(
checknatoms
<
0
)
{
if
(
checknatoms
<
0
)
{
if
(
kt
>=
0
)
{
p
.
cmd
(
"setKbT"
,
&
kt
);
}
checknatoms
=
natoms
;
checknatoms
=
natoms
;
p
.
cmd
(
"setNatoms"
,
&
natoms
);
p
.
cmd
(
"setNatoms"
,
&
natoms
);
p
.
cmd
(
"init"
);
p
.
cmd
(
"init"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment