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

Added possibility to enforce numerical derivatives

There is a new method for colvars and function, enforceNumericalDerivatives(),
which can be used in the constructor so as to enforce numerical derivatives.
It should be added to complex colvars for which we do not want to implement
numerical derivatives, or can be used at preliminary stage during CV
implementation.

I also added a check for colvar ENERGY, which cannot be done with
numerical derivatives
parent c0084691
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,11 @@ ...@@ -4,7 +4,11 @@
using namespace std; using namespace std;
using namespace PLMD; using namespace PLMD;
void ActionWithValue::enforceNumericalDerivatives(){
numericalDerivatives=true;
log.printf(" WARNING: Numerical derivatives will be used\n");
log.printf(" (probably this object does not implement analytical derivatives yet)\n");
}
ActionWithValue::ActionWithValue(const ActionOptions&ao): ActionWithValue::ActionWithValue(const ActionOptions&ao):
Action(ao), Action(ao),
...@@ -12,6 +16,7 @@ ActionWithValue::ActionWithValue(const ActionOptions&ao): ...@@ -12,6 +16,7 @@ ActionWithValue::ActionWithValue(const ActionOptions&ao):
numericalDerivatives(false) numericalDerivatives(false)
{ {
parseFlag("NUMERICAL_DERIVATIVES",numericalDerivatives); parseFlag("NUMERICAL_DERIVATIVES",numericalDerivatives);
if(numericalDerivatives) log.printf(" using numerical derivatives\n");
} }
ActionWithValue::~ActionWithValue(){ ActionWithValue::~ActionWithValue(){
......
...@@ -21,6 +21,13 @@ class ActionWithValue: ...@@ -21,6 +21,13 @@ class ActionWithValue:
void assertUnique(const std::string&name); void assertUnique(const std::string&name);
int getValueIndex(const std::string&name)const; int getValueIndex(const std::string&name)const;
bool numericalDerivatives; bool numericalDerivatives;
protected:
/// Enforce the use of numerical derivatives.
/// This may be useful during the implementation of new collective
/// variables. Before implementing the derivatives, the used can
/// just tell plumed to use finite difference irrespectively of
/// the NUMERICAL_DERIVATIVES keyword in the input file
void enforceNumericalDerivatives();
public: public:
ActionWithValue(const ActionOptions&ao); ActionWithValue(const ActionOptions&ao);
~ActionWithValue(); ~ActionWithValue();
...@@ -61,6 +68,7 @@ public: ...@@ -61,6 +68,7 @@ public:
void setValue(Value*,double); void setValue(Value*,double);
/// Set the default value (the one without name) /// Set the default value (the one without name)
void setValue(double); void setValue(double);
/// Check if numerical derivatives should be used
bool checkNumericalDerivatives()const; bool checkNumericalDerivatives()const;
}; };
...@@ -75,7 +83,9 @@ void ActionWithValue::setValue(double d){ ...@@ -75,7 +83,9 @@ void ActionWithValue::setValue(double d){
} }
inline inline
double ActionWithValue::getForce(int n){return values[n]->getForce();} double ActionWithValue::getForce(int n){
return values[n]->getForce();
}
inline inline
void ActionWithValue::assertUnique(const std::string&name){ void ActionWithValue::assertUnique(const std::string&name){
...@@ -83,7 +93,9 @@ void ActionWithValue::assertUnique(const std::string&name){ ...@@ -83,7 +93,9 @@ void ActionWithValue::assertUnique(const std::string&name){
} }
inline inline
int ActionWithValue::getNumberOfValues(){return values.size();} int ActionWithValue::getNumberOfValues(){
return values.size();
}
inline inline
int ActionWithValue::getNumberOfParameters()const{ int ActionWithValue::getNumberOfParameters()const{
......
...@@ -40,6 +40,7 @@ ColvarEnergy::ColvarEnergy(const ActionOptions&ao): ...@@ -40,6 +40,7 @@ ColvarEnergy::ColvarEnergy(const ActionOptions&ao):
PLUMED_COLVAR_INIT(ao), PLUMED_COLVAR_INIT(ao),
components(false) components(false)
{ {
assert(!checkNumericalDerivatives());
std::vector<int> atoms; std::vector<int> atoms;
requestAtoms(atoms); requestAtoms(atoms);
isEnergy=true; isEnergy=true;
......
...@@ -87,7 +87,7 @@ void DumpDerivatives::calculate(){ ...@@ -87,7 +87,7 @@ void DumpDerivatives::calculate(){
fprintf(fp," %f",getTime()); fprintf(fp," %f",getTime());
fprintf(fp," %u",ipar); fprintf(fp," %u",ipar);
for(unsigned i=0;i<getNumberOfArguments();i++){ for(unsigned i=0;i<getNumberOfArguments();i++){
fprintf(fp," %f",arguments[i]->getDerivatives()[ipar]); fprintf(fp," %15.10f",arguments[i]->getDerivatives()[ipar]);
}; };
fprintf(fp,"\n"); fprintf(fp,"\n");
} }
......
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