Skip to content
Snippets Groups Projects
Commit 5793786c authored by Giovanni Bussi's avatar Giovanni Bussi
Browse files

Fixed VOLUME derivatives

Notice that now it is also possible to use VOLUME with NUMERICAL_DERIVATIVES
(so as to debug). I tested with NPT and a box of water and seems to work correctly.
parent 98703b7f
No related branches found
No related tags found
No related merge requests found
......@@ -78,7 +78,7 @@ void Volume::registerKeywords( Keywords& keys ){
Action::registerKeywords( keys );
ActionWithValue::registerKeywords( keys );
ActionAtomistic::registerKeywords( keys );
keys.remove("NUMERICAL_DERIVATIVES");
// keys.remove("NUMERICAL_DERIVATIVES");
keys.addFlag("COMPONENTS",false,"use xx, yy, zz, alpha, beta, gamma as the colvars rather than the box volume");
}
......@@ -89,8 +89,9 @@ void Volume::calculate(){
// todo
};
setBoxDerivatives(-1.0*Tensor::identity());
setValue (getBox().determinant());
double v=getBox().determinant();
setBoxDerivatives(-v*Tensor::identity());
setValue (v);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment