-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathOutputBasisFunctions.cpp
236 lines (196 loc) · 9.96 KB
/
OutputBasisFunctions.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright (c) 2016-2021 The VES code team
(see the PEOPLE-VES file at the root of this folder for a list of names)
See http://www.ves-code.org for more information.
This file is part of VES code module.
The VES code module is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The VES code module is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the VES code module. If not, see <http://www.gnu.org/licenses/>.
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
#include "BasisFunctions.h"
#include "TargetDistribution.h"
#include "CoeffsVector.h"
#include "VesTools.h"
#include "core/ActionRegister.h"
#include "core/ActionSet.h"
#include "core/PlumedMain.h"
#include "core/Value.h"
#include "tools/File.h"
#include "tools/Grid.h"
namespace PLMD {
namespace ves {
//+PLUMEDOC VES_UTILS VES_OUTPUT_BASISFUNCTIONS
/*
Output basis functions to file.
This action can be used to write out to a grid file the values and derivatives of
given basis functions. This is normally used for debugging when programming new
types of basis functions. For example, it is possible to calculate the
derivatives numerically and compare to the analytically calculated
derivatives.
This action is normally used through the \ref driver.
\par Examples
In the following input we define a Legendre polynomials basis functions
of order 14 over the interval -4.0 to 4.0 and output their values
and derivatives to files called bfL.values.data and bfL.derivs.data.
\plumedfile
BF_LEGENDRE ...
ORDER=14
MINIMUM=-4.0
MAXIMUM=4.0
LABEL=bfL
... BF_LEGENDRE
VES_OUTPUT_BASISFUNCTIONS ...
BASIS_FUNCTIONS=bfL
GRID_BINS=200
FORMAT_VALUES_DERIVS=%13.6f
... VES_OUTPUT_BASISFUNCTIONS
\endplumedfile
This input should be run through the driver by using a command similar to the
following one where the trajectory/configuration file configuration.gro is needed to
trick the code to exit correctly.
\verbatim
plumed driver --plumed plumed.dat --igro configuration.gro
\endverbatim
*/
//+ENDPLUMEDOC
class OutputBasisFunctions :
public Action
{
std::vector<BasisFunctions*> bf_pntrs;
public:
explicit OutputBasisFunctions(const ActionOptions&);
TargetDistribution* setupTargetDistPntr(std::string keyword) const;
void calculate() override {}
void apply() override {}
static void registerKeywords(Keywords& keys);
};
PLUMED_REGISTER_ACTION(OutputBasisFunctions,"VES_OUTPUT_BASISFUNCTIONS")
void OutputBasisFunctions::registerKeywords(Keywords& keys) {
Action::registerKeywords(keys);
keys.add("compulsory","BASIS_FUNCTIONS","the label of the basis functions that you want to use");
keys.add("optional","GRID_BINS","the number of bins used for the grid for writing the basis function values and derivatives. The default value is 1000.");
keys.add("optional","GRID_MIN","the minimum of the grid for writing the basis function values and derivatives. By default it is the minimum of the interval on which the basis functions are defined.");
keys.add("optional","GRID_MAX","the maximum of the grid for writing the basis function values and derivatives. By default it is the maximum of the interval on which the basis functions are defined.");
keys.add("optional","FILE_VALUES","filename of the file on which the basis function values are written. By default it is BF_LABEL.values.data.");
keys.add("optional","FILE_DERIVS","filename of the file on which the basis function derivatives are written. By default it is BF_LABEL.derivs.data.");
keys.add("optional","FORMAT_VALUES_DERIVS","the numerical format of the basis function values and derivatives written to file. By default it is %15.8f.\n. You can also use FORMAT_VALUES and FORMAT_DERIVS to give the numerical formats separately.");
keys.add("optional","FORMAT_VALUES","the numerical format of the basis function derivatives written to file. By default it is %15.8f.\n");
keys.add("optional","FORMAT_DERIVS","the numerical format of the basis function values written to file. By default it is %15.8f.\n");
keys.add("optional","FILE_TARGETDIST_AVERAGES","filename of the file on which the averages over the target distributions are written. By default it is BF_LABEL.targetdist-averages.data.");
keys.add("optional","FORMAT_TARGETDIST_AVERAGES","the numerical format of the target distribution averages written to file. By default it is %15.8f.\n");
keys.add("optional","FILE_TARGETDIST","filename of the files on which the target distributions are written. By default it is BF_LABEL.targetdist-#.data.");
keys.add("numbered","TARGET_DISTRIBUTION","the target distribution to be used.");
keys.addFlag("IGNORE_PERIODICITY",false,"if the periodicity of the basis functions should be ignored.");
keys.addFlag("NUMERICAL_DERIVATIVES",false,"if the derivatives of the basis functions should be calculated numerically.");
}
OutputBasisFunctions::OutputBasisFunctions(const ActionOptions&ao):
Action(ao),
bf_pntrs(0)
{
std::vector<std::string> basisset_labels(0);
parseVector("BASIS_FUNCTIONS",basisset_labels);
if(basisset_labels.size()>1) {plumed_merror("Only one basis set label allowed in keyword BASIS_FUNCTIONS of "+getName());}
std::string error_msg = "";
bf_pntrs = VesTools::getPointersFromLabels<BasisFunctions*>(basisset_labels,plumed.getActionSet(),error_msg);
if(error_msg.size()>0) {plumed_merror("Error in keyword BASIS_FUNCTIONS of "+getName()+": "+error_msg);}
unsigned int nbins = 1000;
parse("GRID_BINS",nbins);
std::string min_str = bf_pntrs[0]->intervalMinStr();
std::string max_str = bf_pntrs[0]->intervalMaxStr();
parse("GRID_MIN",min_str);
parse("GRID_MAX",max_str);
std::string fname_values = bf_pntrs[0]->getLabel()+".values.data";
parse("FILE_VALUES",fname_values);
std::string fname_derives = bf_pntrs[0]->getLabel()+".derivs.data";
parse("FILE_DERIVS",fname_derives);
std::string fname_targetdist_aver = bf_pntrs[0]->getLabel()+".targetdist-averages.data";
parse("FILE_TARGETDIST_AVERAGES",fname_targetdist_aver);
std::string fname_targetdist = bf_pntrs[0]->getLabel()+".targetdist-.data";
parse("FILE_TARGETDIST",fname_targetdist);
std::string fmt_values_derivs = "%15.8f";
parse("FORMAT_VALUES_DERIVS",fmt_values_derivs);
std::string fmt_values = fmt_values_derivs;
std::string fmt_derivs = fmt_values_derivs;
parse("FORMAT_VALUES",fmt_values);
parse("FORMAT_DERIVS",fmt_derivs);
std::string fmt_targetdist_aver = "%15.8f";
parse("FORMAT_TARGETDIST_AVERAGES",fmt_targetdist_aver);
bool ignore_periodicity = false;
parseFlag("IGNORE_PERIODICITY",ignore_periodicity);
bool numerical_deriv = false;
parseFlag("NUMERICAL_DERIVATIVES",numerical_deriv);
std::vector<TargetDistribution*> targetdist_pntrs;
targetdist_pntrs.push_back(NULL);
std::string targetdist_label="";
for(int i=1;; i++) {
if(!parseNumbered("TARGET_DISTRIBUTION",i,targetdist_label)) {break;}
std::string error_msg = "";
TargetDistribution* pntr_tmp = VesTools::getPointerFromLabel<TargetDistribution*>(targetdist_label,plumed.getActionSet(),error_msg);
if(error_msg.size()>0) {plumed_merror("Error in keyword TARGET_DISTRIBUTION of "+getName()+": "+error_msg);}
targetdist_pntrs.push_back(pntr_tmp);
}
checkRead();
//
OFile ofile_values;
ofile_values.link(*this);
ofile_values.enforceBackup();
ofile_values.open(fname_values);
OFile ofile_derivs;
ofile_derivs.link(*this);
ofile_derivs.enforceBackup();
ofile_derivs.open(fname_derives);
bf_pntrs[0]->writeBasisFunctionsToFile(ofile_values,ofile_derivs,min_str,max_str,nbins,ignore_periodicity,fmt_values,fmt_derivs,numerical_deriv);
ofile_values.close();
ofile_derivs.close();
//
std::vector<std::string> grid_min(1); grid_min[0]=bf_pntrs[0]->intervalMinStr();
std::vector<std::string> grid_max(1); grid_max[0]=bf_pntrs[0]->intervalMaxStr();
std::vector<unsigned int> grid_bins(1); grid_bins[0]=nbins;
std::vector<std::unique_ptr<Value>> arguments(1);
arguments[0]= Tools::make_unique<Value>(nullptr,"arg",false);
if(bf_pntrs[0]->arePeriodic() && !ignore_periodicity) {
arguments[0]->setDomain(bf_pntrs[0]->intervalMinStr(),bf_pntrs[0]->intervalMaxStr());
}
else {
arguments[0]->setNotPeriodic();
}
OFile ofile_targetdist_aver;
ofile_targetdist_aver.link(*this);
ofile_targetdist_aver.enforceBackup();
ofile_targetdist_aver.open(fname_targetdist_aver);
for(unsigned int i=0; i<targetdist_pntrs.size(); i++) {
std::string is; Tools::convert(i,is);
//
if(targetdist_pntrs[i]!=NULL) {
targetdist_pntrs[i]->setupGrids(Tools::unique2raw(arguments),grid_min,grid_max,grid_bins);
plumed_massert(targetdist_pntrs[i]->getDimension()==1,"the target distribution must be one dimensional");
targetdist_pntrs[i]->updateTargetDist();
}
//
std::vector<double> bf_integrals = bf_pntrs[0]->getTargetDistributionIntegrals(targetdist_pntrs[i]);
CoeffsVector targetdist_averages = CoeffsVector("aver.targetdist-"+is,Tools::unique2raw(arguments),bf_pntrs,comm,false);
targetdist_averages.setValues(bf_integrals);
if(fmt_targetdist_aver.size()>0) {targetdist_averages.setOutputFmt(fmt_targetdist_aver);}
targetdist_averages.writeToFile(ofile_targetdist_aver,true);
if(targetdist_pntrs[i]!=NULL) {
Grid* targetdist_grid_pntr = targetdist_pntrs[i]->getTargetDistGridPntr();
std::string fname = FileBase::appendSuffix(fname_targetdist,is);
OFile ofile;
ofile.link(*this);
ofile.enforceBackup();
ofile.open(fname);
targetdist_grid_pntr->writeToFile(ofile);
ofile.close();
}
}
ofile_targetdist_aver.close();
}
}
}