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