| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /** \file datacreator.cpp
 | 
|---|
| 9 |  *
 | 
|---|
| 10 |  * Declarations of assisting functions in creating data and plot files.
 | 
|---|
| 11 |  *
 | 
|---|
| 12 |  */
 | 
|---|
| 13 | 
 | 
|---|
| 14 | //============================ INCLUDES ===========================
 | 
|---|
| 15 | 
 | 
|---|
| 16 | // include config.h
 | 
|---|
| 17 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 18 | #include <config.h>
 | 
|---|
| 19 | #endif
 | 
|---|
| 20 | 
 | 
|---|
| 21 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| 22 | 
 | 
|---|
| 23 | #include <fstream>
 | 
|---|
| 24 | #include <sstream>
 | 
|---|
| 25 | #include <iomanip>
 | 
|---|
| 26 | 
 | 
|---|
| 27 | #include "CodePatterns/Log.hpp"
 | 
|---|
| 28 | #include "CodePatterns/Verbose.hpp"
 | 
|---|
| 29 | #include "LinearAlgebra/defs.hpp"
 | 
|---|
| 30 | #include "Helpers/defs.hpp"
 | 
|---|
| 31 | #include "datacreator.hpp"
 | 
|---|
| 32 | #include "Fragmentation/EnergyMatrix.hpp"
 | 
|---|
| 33 | #include "Fragmentation/ForceMatrix.hpp"
 | 
|---|
| 34 | #include "Fragmentation/HessianMatrix.hpp"
 | 
|---|
| 35 | #include "Fragmentation/KeySetsContainer.hpp"
 | 
|---|
| 36 | 
 | 
|---|
| 37 | using namespace std;
 | 
|---|
| 38 | 
 | 
|---|
| 39 | //=========================== FUNCTIONS============================
 | 
|---|
| 40 | 
 | 
|---|
| 41 | /** Opens a file with \a *filename in \a *dir.
 | 
|---|
| 42 |  * \param output file handle on return
 | 
|---|
| 43 |  * \param *dir directory
 | 
|---|
| 44 |  * \param *filename name of file
 | 
|---|
| 45 |  * \return true if file has been opened
 | 
|---|
| 46 |  */
 | 
|---|
| 47 | bool OpenOutputFile(ofstream &output, const char *dir, const char *filename)
 | 
|---|
| 48 | {
 | 
|---|
| 49 |   stringstream name;
 | 
|---|
| 50 |   name << dir << "/" << filename;
 | 
|---|
| 51 |   output.open(name.str().c_str(), ios::out);
 | 
|---|
| 52 |   if (output == NULL) {
 | 
|---|
| 53 |     LOG(0, "Unable to open " << name.str() << " for writing, is directory correct?");
 | 
|---|
| 54 |     return false;
 | 
|---|
| 55 |   }
 | 
|---|
| 56 |   return true;
 | 
|---|
| 57 | };
 | 
|---|
| 58 | 
 | 
|---|
| 59 | /** Opens a file for appending with \a *filename in \a *dir.
 | 
|---|
| 60 |  * \param output file handle on return
 | 
|---|
| 61 |  * \param *dir directory
 | 
|---|
| 62 |  * \param *filename name of file
 | 
|---|
| 63 |  * \return true if file has been opened
 | 
|---|
| 64 |  */
 | 
|---|
| 65 | bool AppendOutputFile(ofstream &output, const char *dir, const char *filename)
 | 
|---|
| 66 | {
 | 
|---|
| 67 |   stringstream name;
 | 
|---|
| 68 |   name << dir << "/" << filename;
 | 
|---|
| 69 |   output.open(name.str().c_str(), ios::app);
 | 
|---|
| 70 |   if (output == NULL) {
 | 
|---|
| 71 |     LOG(0, "Unable to open " << name.str() << " for writing, is directory correct?");
 | 
|---|
| 72 |     return false;
 | 
|---|
| 73 |   }
 | 
|---|
| 74 |   return true;
 | 
|---|
| 75 | };
 | 
|---|
| 76 | 
 | 
|---|
| 77 | /** Plots an energy vs. order.
 | 
|---|
| 78 |  * \param &Fragments EnergyMatrix class containing matrix values
 | 
|---|
| 79 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 80 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 81 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 82 |  * \return true if file was written successfully
 | 
|---|
| 83 |  */
 | 
|---|
| 84 | bool CreateDataEnergyOrder(class EnergyMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum)
 | 
|---|
| 85 | {
 | 
|---|
| 86 |   stringstream filename;
 | 
|---|
| 87 |   ofstream output;
 | 
|---|
| 88 | 
 | 
|---|
| 89 |   filename << prefix << ".dat";
 | 
|---|
| 90 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 91 |   LOG(0, msg);
 | 
|---|
| 92 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 93 |   output << "#Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
 | 
|---|
| 94 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 95 |     for(int i=KeySets.FragmentsPerOrder[BondOrder];i--;) {
 | 
|---|
| 96 |       for(int j=Fragments.RowCounter[ KeySets.OrderSet[BondOrder][i] ];j--;)
 | 
|---|
| 97 |         for(int k=Fragments.ColumnCounter[ KeySets.OrderSet[BondOrder][i] ];k--;)
 | 
|---|
| 98 |           Fragments.Matrix[Fragments.MatrixCounter][j][k] += Fragments.Matrix[ KeySets.OrderSet[BondOrder][i] ][j][k];
 | 
|---|
| 99 |     }
 | 
|---|
| 100 |     output << BondOrder+1 << "\t" << KeySets.FragmentsPerOrder[BondOrder];
 | 
|---|
| 101 |     for (int l=0;l<Fragments.ColumnCounter[Fragments.MatrixCounter];l++)
 | 
|---|
| 102 |       output << scientific << "\t" << Fragments.Matrix[Fragments.MatrixCounter][ Fragments.RowCounter[Fragments.MatrixCounter]-1 ][l];
 | 
|---|
| 103 |     output << endl;
 | 
|---|
| 104 |   }
 | 
|---|
| 105 |   output.close();
 | 
|---|
| 106 |   return true;
 | 
|---|
| 107 | };
 | 
|---|
| 108 | 
 | 
|---|
| 109 | /** Plots an energy error vs. order.
 | 
|---|
| 110 |  * \param &Energy EnergyMatrix class containing reference values (in MatrixCounter matrix)
 | 
|---|
| 111 |  * \param &Fragments EnergyMatrix class containing matrix values
 | 
|---|
| 112 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 113 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 114 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 115 |  * \return true if file was written successfully
 | 
|---|
| 116 |  */
 | 
|---|
| 117 | bool CreateDataDeltaEnergyOrder(class EnergyMatrix &Energy, class EnergyMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum)
 | 
|---|
| 118 | {
 | 
|---|
| 119 |   stringstream filename;
 | 
|---|
| 120 |   ofstream output;
 | 
|---|
| 121 | 
 | 
|---|
| 122 |   filename << prefix << ".dat";
 | 
|---|
| 123 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 124 |   LOG(0, msg);
 | 
|---|
| 125 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 126 |   output << "#Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
 | 
|---|
| 127 |   Fragments.SetLastMatrix(Energy.Matrix[Energy.MatrixCounter],0);
 | 
|---|
| 128 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 129 |     for(int i=KeySets.FragmentsPerOrder[BondOrder];i--;) {
 | 
|---|
| 130 |       for(int j=Fragments.RowCounter[ KeySets.OrderSet[BondOrder][i] ];j--;)
 | 
|---|
| 131 |         for(int k=Fragments.ColumnCounter[ KeySets.OrderSet[BondOrder][i] ];k--;)
 | 
|---|
| 132 |           Fragments.Matrix[Fragments.MatrixCounter][j][k] -= Fragments.Matrix[ KeySets.OrderSet[BondOrder][i] ][j][k];
 | 
|---|
| 133 |     }
 | 
|---|
| 134 |     output << BondOrder+1 << "\t" << KeySets.FragmentsPerOrder[BondOrder];
 | 
|---|
| 135 |     for (int l=0;l<Fragments.ColumnCounter[Energy.MatrixCounter];l++)
 | 
|---|
| 136 |       if (fabs(Energy.Matrix[Energy.MatrixCounter][ Energy.RowCounter[Energy.MatrixCounter]-1 ][l]) < MYEPSILON)
 | 
|---|
| 137 |         output << scientific << "\t" << Fragments.Matrix[Fragments.MatrixCounter][ Fragments.RowCounter[Fragments.MatrixCounter]-1 ][l];
 | 
|---|
| 138 |       else
 | 
|---|
| 139 |         output << scientific << "\t" << (Fragments.Matrix[Fragments.MatrixCounter][ Fragments.RowCounter[Fragments.MatrixCounter]-1 ][l] / Energy.Matrix[Energy.MatrixCounter][ Energy.RowCounter[Energy.MatrixCounter]-1 ][l]);
 | 
|---|
| 140 |     output << endl;
 | 
|---|
| 141 |   }
 | 
|---|
| 142 |   output.close();
 | 
|---|
| 143 |   return true;
 | 
|---|
| 144 | };
 | 
|---|
| 145 | 
 | 
|---|
| 146 | /** Plot forces vs. order.
 | 
|---|
| 147 |  * \param &Fragments ForceMatrix class containing matrix values
 | 
|---|
| 148 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 149 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 150 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 151 |  * \param *datum current date and time
 | 
|---|
| 152 |  * \return true if file was written successfully
 | 
|---|
| 153 |  */
 | 
|---|
| 154 | bool CreateDataForcesOrder(class ForceMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix,const  char *msg, const char *datum, void (*CreateForce)(class MatrixContainer &, int))
 | 
|---|
| 155 | {
 | 
|---|
| 156 |   stringstream filename;
 | 
|---|
| 157 |   ofstream output;
 | 
|---|
| 158 | 
 | 
|---|
| 159 |   filename << prefix << ".dat";
 | 
|---|
| 160 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 161 |   LOG(0, msg);
 | 
|---|
| 162 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 163 |   output << "# Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
 | 
|---|
| 164 |   Fragments.SetLastMatrix(0.,0);
 | 
|---|
| 165 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 166 |     Fragments.SumSubForces(Fragments, KeySets, BondOrder, 1.);
 | 
|---|
| 167 |     output << BondOrder+1 << "\t" << KeySets.FragmentsPerOrder[BondOrder];
 | 
|---|
| 168 |     CreateForce(Fragments, Fragments.MatrixCounter);
 | 
|---|
| 169 |     for (int l=0;l<Fragments.ColumnCounter[Fragments.MatrixCounter];l++)
 | 
|---|
| 170 |        output << scientific << "\t" << Fragments.Matrix[Fragments.MatrixCounter][ Fragments.RowCounter[Fragments.MatrixCounter] ][l];
 | 
|---|
| 171 |     output << endl;
 | 
|---|
| 172 |   }
 | 
|---|
| 173 |   output.close();
 | 
|---|
| 174 |   return true;
 | 
|---|
| 175 | };
 | 
|---|
| 176 | 
 | 
|---|
| 177 | /** Plot forces error vs. order.
 | 
|---|
| 178 |  * \param &Force ForceMatrix containing reference values (in MatrixCounter matrix)
 | 
|---|
| 179 |  * \param &Fragments ForceMatrix class containing matrix values
 | 
|---|
| 180 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 181 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 182 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 183 |  * \param *datum current date and time
 | 
|---|
| 184 |  * \return true if file was written successfully
 | 
|---|
| 185 |  */
 | 
|---|
| 186 | bool CreateDataDeltaForcesOrder(class ForceMatrix &Force, class ForceMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum, void (*CreateForce)(class MatrixContainer &, int))
 | 
|---|
| 187 | {
 | 
|---|
| 188 |   stringstream filename;
 | 
|---|
| 189 |   ofstream output;
 | 
|---|
| 190 | 
 | 
|---|
| 191 |   filename << prefix << ".dat";
 | 
|---|
| 192 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 193 |   LOG(0, msg);
 | 
|---|
| 194 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 195 |   output << "# Order\tFrag.No.\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
 | 
|---|
| 196 |   Fragments.SetLastMatrix(Force.Matrix[Force.MatrixCounter],0);
 | 
|---|
| 197 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 198 |     Fragments.SumSubForces(Fragments, KeySets, BondOrder, -1.);
 | 
|---|
| 199 |     output << BondOrder+1 << "\t" << KeySets.FragmentsPerOrder[BondOrder];
 | 
|---|
| 200 |     CreateForce(Fragments, Fragments.MatrixCounter);
 | 
|---|
| 201 |     for (int l=0;l<Fragments.ColumnCounter[Fragments.MatrixCounter];l++)
 | 
|---|
| 202 |        output << scientific << "\t" << Fragments.Matrix[Fragments.MatrixCounter][ Fragments.RowCounter[Fragments.MatrixCounter] ][l];
 | 
|---|
| 203 |     output << endl;
 | 
|---|
| 204 |   }
 | 
|---|
| 205 |   output.close();
 | 
|---|
| 206 |   return true;
 | 
|---|
| 207 | };
 | 
|---|
| 208 | 
 | 
|---|
| 209 | /** Plot forces error vs. vs atom vs. order.
 | 
|---|
| 210 |  * \param &Force ForceMatrix containing reference values (in MatrixCounter matrix)
 | 
|---|
| 211 |  * \param &Fragments ForceMatrix class containing matrix values
 | 
|---|
| 212 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 213 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 214 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 215 |  * \param *datum current date and time
 | 
|---|
| 216 |  * \return true if file was written successfully
 | 
|---|
| 217 |  */
 | 
|---|
| 218 | bool CreateDataDeltaForcesOrderPerAtom(class ForceMatrix &Force, class ForceMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum)
 | 
|---|
| 219 | {
 | 
|---|
| 220 |   stringstream filename;
 | 
|---|
| 221 |   ofstream output;
 | 
|---|
| 222 |   double norm = 0.;
 | 
|---|
| 223 | 
 | 
|---|
| 224 |   filename << prefix << ".dat";
 | 
|---|
| 225 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 226 |   LOG(0, msg);
 | 
|---|
| 227 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 228 |   output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
 | 
|---|
| 229 |   Fragments.SetLastMatrix(Force.Matrix[Force.MatrixCounter], 0);
 | 
|---|
| 230 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 231 |     //LOG(0, "Current order is " << BondOrder << ".");
 | 
|---|
| 232 |     Fragments.SumSubForces(Fragments, KeySets, BondOrder, -1.);
 | 
|---|
| 233 |     // errors per atom
 | 
|---|
| 234 |     output << endl << "#Order\t" << BondOrder+1 << endl;
 | 
|---|
| 235 |     for(int j=0;j<Fragments.RowCounter[ Fragments.MatrixCounter ];j++) {
 | 
|---|
| 236 |       output << Fragments.Indices[Fragments.MatrixCounter][j] << "\t";
 | 
|---|
| 237 |       for (int l=0;l<Fragments.ColumnCounter[ Fragments.MatrixCounter ];l++) {
 | 
|---|
| 238 |         if (((l+1) % 3) == 0) {
 | 
|---|
| 239 |           norm = 0.;
 | 
|---|
| 240 |           for (int m=0;m<NDIM;m++)
 | 
|---|
| 241 |             norm += Force.Matrix[Force.MatrixCounter][ j ][l+m]*Force.Matrix[Force.MatrixCounter][ j ][l+m];
 | 
|---|
| 242 |           norm = sqrt(norm);
 | 
|---|
| 243 |         }                                                                                                    
 | 
|---|
| 244 | //        if (norm < MYEPSILON)
 | 
|---|
| 245 |           output << scientific << Fragments.Matrix[Fragments.MatrixCounter][ j ][l] << "\t";
 | 
|---|
| 246 | //        else
 | 
|---|
| 247 | //          output << scientific << (Fragments.Matrix[Fragments.MatrixCounter][ j ][l] / norm) << "\t";
 | 
|---|
| 248 |       }
 | 
|---|
| 249 |       output << endl;
 | 
|---|
| 250 |     }
 | 
|---|
| 251 |     output << endl;
 | 
|---|
| 252 |   }
 | 
|---|
| 253 |   output.close();
 | 
|---|
| 254 |   return true;
 | 
|---|
| 255 | };
 | 
|---|
| 256 | 
 | 
|---|
| 257 | /** Plot forces error vs. vs atom vs. order.
 | 
|---|
| 258 |  * \param &Fragments ForceMatrix class containing matrix values
 | 
|---|
| 259 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 260 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 261 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 262 |  * \param *datum current date and time
 | 
|---|
| 263 |  * \return true if file was written successfully
 | 
|---|
| 264 |  */
 | 
|---|
| 265 | bool CreateDataForcesOrderPerAtom(class ForceMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum)
 | 
|---|
| 266 | {
 | 
|---|
| 267 |   stringstream filename;
 | 
|---|
| 268 |   ofstream output;
 | 
|---|
| 269 | 
 | 
|---|
| 270 |   filename << prefix << ".dat";
 | 
|---|
| 271 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 272 |   LOG(0, msg);
 | 
|---|
| 273 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 274 |   output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
 | 
|---|
| 275 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 276 |     //LOG(0, "Current order is " << BondOrder << ".");
 | 
|---|
| 277 |     Fragments.SumSubForces(Fragments, KeySets, BondOrder, 1.);
 | 
|---|
| 278 |     // errors per atom
 | 
|---|
| 279 |     output << endl << "#Order\t" << BondOrder+1 << endl;
 | 
|---|
| 280 |     for(int j=0;j<Fragments.RowCounter[ Fragments.MatrixCounter ];j++) {
 | 
|---|
| 281 |       output << Fragments.Indices[Fragments.MatrixCounter][j] << "\t";
 | 
|---|
| 282 |       for (int l=0;l<Fragments.ColumnCounter[ Fragments.MatrixCounter ];l++)
 | 
|---|
| 283 |         output << scientific << Fragments.Matrix[Fragments.MatrixCounter][ j ][l] << "\t";
 | 
|---|
| 284 |       output << endl;
 | 
|---|
| 285 |     }
 | 
|---|
| 286 |     output << endl;
 | 
|---|
| 287 |   }
 | 
|---|
| 288 |   output.close();
 | 
|---|
| 289 |   return true;
 | 
|---|
| 290 | };
 | 
|---|
| 291 | 
 | 
|---|
| 292 | 
 | 
|---|
| 293 | /** Plot hessian error vs. vs atom vs. order.
 | 
|---|
| 294 |  * \param &Hessian HessianMatrix containing reference values (in MatrixCounter matrix)
 | 
|---|
| 295 |  * \param &Fragments HessianMatrix class containing matrix values
 | 
|---|
| 296 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 297 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 298 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 299 |  * \param *datum current date and time
 | 
|---|
| 300 |  * \return true if file was written successfully
 | 
|---|
| 301 |  */
 | 
|---|
| 302 | bool CreateDataDeltaHessianOrderPerAtom(class HessianMatrix &Hessian, class HessianMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum)
 | 
|---|
| 303 | {
 | 
|---|
| 304 |   stringstream filename;
 | 
|---|
| 305 |   ofstream output;
 | 
|---|
| 306 | 
 | 
|---|
| 307 |   filename << prefix << ".dat";
 | 
|---|
| 308 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 
 | 
|---|
| 309 |   LOG(0, msg);
 | 
|---|
| 310 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 311 |   output << "# AtomNo\t" << Fragments.Header[Fragments.MatrixCounter] << endl;
 | 
|---|
| 312 |   Fragments.SetLastMatrix(Hessian.Matrix[Hessian.MatrixCounter], 0);
 | 
|---|
| 313 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 314 |     //LOG(0, "Current order is " << BondOrder << ".");
 | 
|---|
| 315 |     Fragments.SumSubHessians(Fragments, KeySets, BondOrder, -1.);
 | 
|---|
| 316 |     // errors per atom
 | 
|---|
| 317 |     output << endl << "#Order\t" << BondOrder+1 << endl;
 | 
|---|
| 318 |     for(int j=0;j<Fragments.RowCounter[ Fragments.MatrixCounter ];j++) { 
 | 
|---|
| 319 |       output << Fragments.Indices[Fragments.MatrixCounter][j] << "\t";
 | 
|---|
| 320 |       for (int l=0;l<Fragments.ColumnCounter[ Fragments.MatrixCounter ];l++) {
 | 
|---|
| 321 |         output << scientific << Fragments.Matrix[Fragments.MatrixCounter][ j ][l] << "\t";
 | 
|---|
| 322 |       }
 | 
|---|
| 323 |       output << endl;
 | 
|---|
| 324 |     }
 | 
|---|
| 325 |     output << endl;
 | 
|---|
| 326 |   }
 | 
|---|
| 327 |   output.close();
 | 
|---|
| 328 |   return true;
 | 
|---|
| 329 | };
 | 
|---|
| 330 | 
 | 
|---|
| 331 | /** Plot hessian error vs. vs atom vs. order in the frobenius norm.
 | 
|---|
| 332 |  * \param &Hessian HessianMatrix containing reference values (in MatrixCounter matrix)
 | 
|---|
| 333 |  * \param &Fragments HessianMatrix class containing matrix values
 | 
|---|
| 334 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 335 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 336 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 337 |  * \param *datum current date and time
 | 
|---|
| 338 |  * \return true if file was written successfully
 | 
|---|
| 339 |  */
 | 
|---|
| 340 | bool CreateDataDeltaFrobeniusOrderPerAtom(class HessianMatrix &Hessian, class HessianMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum)
 | 
|---|
| 341 | {
 | 
|---|
| 342 |   stringstream filename;
 | 
|---|
| 343 |   ofstream output;
 | 
|---|
| 344 |   double norm = 0;
 | 
|---|
| 345 |   double tmp;
 | 
|---|
| 346 | 
 | 
|---|
| 347 |   filename << prefix << ".dat";
 | 
|---|
| 348 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 
 | 
|---|
| 349 |   LOG(0, msg);
 | 
|---|
| 350 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 351 |   output << "# AtomNo\t";
 | 
|---|
| 352 |   Fragments.SetLastMatrix(Hessian.Matrix[Hessian.MatrixCounter], 0);
 | 
|---|
| 353 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 354 |     output << "Order" << BondOrder+1 << "\t";
 | 
|---|
| 355 |   }
 | 
|---|
| 356 |   output << endl;
 | 
|---|
| 357 |   output << Fragments.RowCounter[ Fragments.MatrixCounter ] << "\t";
 | 
|---|
| 358 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 359 |     //LOG(0, "Current order is " << BondOrder << ".");
 | 
|---|
| 360 |     Fragments.SumSubHessians(Fragments, KeySets, BondOrder, -1.);
 | 
|---|
| 361 |     // frobenius norm of errors per atom
 | 
|---|
| 362 |     norm = 0.;
 | 
|---|
| 363 |     for(int j=0;j<Fragments.RowCounter[ Fragments.MatrixCounter ];j++) { 
 | 
|---|
| 364 |       for (int l=0;l<Fragments.ColumnCounter[ Fragments.MatrixCounter ];l++) {
 | 
|---|
| 365 |         tmp = Fragments.Matrix[Fragments.MatrixCounter][ j ][l];
 | 
|---|
| 366 |         norm += tmp*tmp;
 | 
|---|
| 367 |       }
 | 
|---|
| 368 |     }
 | 
|---|
| 369 |     output << scientific << sqrt(norm)/(Fragments.RowCounter[ Fragments.MatrixCounter ]*Fragments.ColumnCounter[ Fragments.MatrixCounter] ) << "\t";
 | 
|---|
| 370 |   }
 | 
|---|
| 371 |   output << endl;
 | 
|---|
| 372 |   output.close();
 | 
|---|
| 373 |   return true;
 | 
|---|
| 374 | };
 | 
|---|
| 375 | 
 | 
|---|
| 376 | /** Plot hessian error vs. vs atom vs. order.
 | 
|---|
| 377 |  * \param &Fragments HessianMatrix class containing matrix values
 | 
|---|
| 378 |  * \param KeySets KeySetContainer class holding bond KeySetContainer::Order
 | 
|---|
| 379 |  * \param *prefix prefix in filename (without ending)
 | 
|---|
| 380 |  * \param *msg message to be place in first line as a comment
 | 
|---|
| 381 |  * \param *datum current date and time
 | 
|---|
| 382 |  * \return true if file was written successfully
 | 
|---|
| 383 |  */
 | 
|---|
| 384 | bool CreateDataHessianOrderPerAtom(class HessianMatrix &Fragments, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum)
 | 
|---|
| 385 | {
 | 
|---|
| 386 |   stringstream filename;
 | 
|---|
| 387 |   ofstream output;
 | 
|---|
| 388 | 
 | 
|---|
| 389 |   filename << prefix << ".dat";
 | 
|---|
| 390 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false; 
 | 
|---|
| 391 |   LOG(0, msg);
 | 
|---|
| 392 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 393 |   output << "# AtomNo\t" << Fragments.Header[ Fragments.MatrixCounter ] << endl;
 | 
|---|
| 394 |   Fragments.SetLastMatrix(0., 0);
 | 
|---|
| 395 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 396 |     //LOG(0, "Current order is " << BondOrder << ".");
 | 
|---|
| 397 |     Fragments.SumSubHessians(Fragments, KeySets, BondOrder, 1.);
 | 
|---|
| 398 |     // errors per atom
 | 
|---|
| 399 |     output << endl << "#Order\t" << BondOrder+1 << endl;
 | 
|---|
| 400 |     for(int j=0;j<Fragments.RowCounter[ Fragments.MatrixCounter ];j++) { 
 | 
|---|
| 401 |       output << Fragments.Indices[Fragments.MatrixCounter][j] << "\t";
 | 
|---|
| 402 |       for (int l=0;l<Fragments.ColumnCounter[ Fragments.MatrixCounter ];l++)
 | 
|---|
| 403 |         output << scientific << Fragments.Matrix[Fragments.MatrixCounter][ j ][l] << "\t";
 | 
|---|
| 404 |       output << endl;
 | 
|---|
| 405 |     }
 | 
|---|
| 406 |     output << endl;
 | 
|---|
| 407 |   }
 | 
|---|
| 408 |   output.close();
 | 
|---|
| 409 |   return true;
 | 
|---|
| 410 | };
 | 
|---|
| 411 | 
 | 
|---|
| 412 | /** Plot matrix vs. fragment.
 | 
|---|
| 413 |  */
 | 
|---|
| 414 | bool CreateDataFragment(class MatrixContainer &Fragment, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum, void (*CreateFragment)(class MatrixContainer &, int))
 | 
|---|
| 415 | {
 | 
|---|
| 416 |   stringstream filename;
 | 
|---|
| 417 |   ofstream output;
 | 
|---|
| 418 | 
 | 
|---|
| 419 |   filename << prefix << ".dat";
 | 
|---|
| 420 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 421 |   LOG(0, msg);
 | 
|---|
| 422 |   output << "# " << msg << ", created on " << datum << endl;
 | 
|---|
| 423 |   output << "#Order\tFrag.No.\t" << Fragment.Header[ Fragment.MatrixCounter ] << endl;
 | 
|---|
| 424 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 425 |     for(int i=0;i<KeySets.FragmentsPerOrder[BondOrder];i++) {
 | 
|---|
| 426 |       output << BondOrder+1 << "\t" << KeySets.OrderSet[BondOrder][i]+1;
 | 
|---|
| 427 |       CreateFragment(Fragment, KeySets.OrderSet[BondOrder][i]);
 | 
|---|
| 428 |       for (int l=0;l<Fragment.ColumnCounter[ KeySets.OrderSet[BondOrder][i] ];l++)
 | 
|---|
| 429 |         output << scientific << "\t" << Fragment.Matrix[ KeySets.OrderSet[BondOrder][i] ][ Fragment.RowCounter[ KeySets.OrderSet[BondOrder][i] ] ][l];
 | 
|---|
| 430 |       output << endl;
 | 
|---|
| 431 |     }
 | 
|---|
| 432 |   }
 | 
|---|
| 433 |   output.close();
 | 
|---|
| 434 |   return true;
 | 
|---|
| 435 | };
 | 
|---|
| 436 | 
 | 
|---|
| 437 | /** Copies fragment energy values into last matrix of \a Matrix with greatest total energy.
 | 
|---|
| 438 |  * \param &Matrix MatrixContainer with all fragment energy values
 | 
|---|
| 439 |  * \param &KeySets KeySetsContainer with associations of each fragment to a bond order
 | 
|---|
| 440 |  * \param BondOrder current bond order
 | 
|---|
| 441 |  */
 | 
|---|
| 442 | void CreateMaxFragmentOrder(class MatrixContainer &Fragments, class KeySetsContainer &KeySets, int BondOrder)
 | 
|---|
| 443 | {
 | 
|---|
| 444 |   for(int j=Fragments.RowCounter[ Fragments.MatrixCounter ];j--;) {
 | 
|---|
| 445 |     for(int i=KeySets.FragmentsPerOrder[BondOrder];i--;) {
 | 
|---|
| 446 |       if (fabs(Fragments.Matrix[ Fragments.MatrixCounter ][j][1]) < fabs(Fragments.Matrix[ KeySets.OrderSet[BondOrder][i] ][j][1])) {
 | 
|---|
| 447 |         for (int k=Fragments.ColumnCounter[ Fragments.MatrixCounter ];k--;)
 | 
|---|
| 448 |           Fragments.Matrix[ Fragments.MatrixCounter ][j][k] = Fragments.Matrix[ KeySets.OrderSet[BondOrder][i] ][j][k];
 | 
|---|
| 449 |       }
 | 
|---|
| 450 |     }
 | 
|---|
| 451 |   }
 | 
|---|
| 452 | };
 | 
|---|
| 453 | 
 | 
|---|
| 454 | /** Copies fragment energy values into last matrix of \a Matrix with smallest total energy.
 | 
|---|
| 455 |  * \param &Matrix MatrixContainer with all fragment energy values
 | 
|---|
| 456 |  * \param &KeySets KeySetsContainer with associations of each fragment to a bond order
 | 
|---|
| 457 |  * \param BondOrder current bond order
 | 
|---|
| 458 |  */
 | 
|---|
| 459 | void CreateMinFragmentOrder(class MatrixContainer &Fragments, class KeySetsContainer &KeySets, int BondOrder)
 | 
|---|
| 460 | {
 | 
|---|
| 461 |   for(int j=0;j<Fragments.RowCounter[ Fragments.MatrixCounter ];j++) {
 | 
|---|
| 462 |     int i=0;
 | 
|---|
| 463 |     do {  // first get a minimum value unequal to 0
 | 
|---|
| 464 |       for (int k=Fragments.ColumnCounter[ Fragments.MatrixCounter ];k--;)
 | 
|---|
| 465 |         Fragments.Matrix[ Fragments.MatrixCounter ][j][k] = Fragments.Matrix[ KeySets.OrderSet[BondOrder][i] ][j][k];
 | 
|---|
| 466 |       i++;
 | 
|---|
| 467 |     } while ((fabs(Fragments.Matrix[ Fragments.MatrixCounter ][j][1]) < MYEPSILON) && (i<KeySets.FragmentsPerOrder[BondOrder]));
 | 
|---|
| 468 |     for(;i<KeySets.FragmentsPerOrder[BondOrder];i++) { // then find lowest
 | 
|---|
| 469 |       if (fabs(Fragments.Matrix[ Fragments.MatrixCounter ][j][1]) > fabs(Fragments.Matrix[ KeySets.OrderSet[BondOrder][i] ][j][1])) {
 | 
|---|
| 470 |         for (int k=Fragments.ColumnCounter[ Fragments.MatrixCounter ];k--;)
 | 
|---|
| 471 |           Fragments.Matrix[ Fragments.MatrixCounter ][j][k] = Fragments.Matrix[ KeySets.OrderSet[BondOrder][i] ][j][k];
 | 
|---|
| 472 |       }
 | 
|---|
| 473 |     }
 | 
|---|
| 474 |   }
 | 
|---|
| 475 | };
 | 
|---|
| 476 | 
 | 
|---|
| 477 | /** Plot matrix vs. fragment.
 | 
|---|
| 478 |  */
 | 
|---|
| 479 | bool CreateDataFragmentOrder(class MatrixContainer &Fragment, class KeySetsContainer &KeySets, const char *dir, const char *prefix, const char *msg, const char *datum, void (*CreateFragmentOrder)(class MatrixContainer &, class KeySetsContainer &, int))
 | 
|---|
| 480 | {
 | 
|---|
| 481 |   stringstream filename;
 | 
|---|
| 482 |   ofstream output;
 | 
|---|
| 483 | 
 | 
|---|
| 484 |   filename << prefix << ".dat";
 | 
|---|
| 485 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 486 |   LOG(0, msg);
 | 
|---|
| 487 |   output << "# " << msg << ", created on " << datum;
 | 
|---|
| 488 |   output << "#Order\tFrag.No.\t" << Fragment.Header[ Fragment.MatrixCounter ] << endl;
 | 
|---|
| 489 |   // max
 | 
|---|
| 490 |   for (int BondOrder=0;BondOrder<KeySets.Order;BondOrder++) {
 | 
|---|
| 491 |     Fragment.SetLastMatrix(0.,0);
 | 
|---|
| 492 |     CreateFragmentOrder(Fragment, KeySets, BondOrder);
 | 
|---|
| 493 |     output << BondOrder+1 << "\t" << KeySets.FragmentsPerOrder[BondOrder];
 | 
|---|
| 494 |     for (int l=0;l<Fragment.ColumnCounter[ Fragment.MatrixCounter ];l++)
 | 
|---|
| 495 |       output << scientific << "\t" << Fragment.Matrix[ Fragment.MatrixCounter ][ Fragment.RowCounter[ Fragment.MatrixCounter ]-1 ][l];
 | 
|---|
| 496 |     output << endl;
 | 
|---|
| 497 |   }
 | 
|---|
| 498 |   output.close();
 | 
|---|
| 499 |   return true;
 | 
|---|
| 500 | };
 | 
|---|
| 501 | 
 | 
|---|
| 502 | /** Takes last but one row and copies into final row.
 | 
|---|
| 503 |  * \param Energy MatrixContainer with matrix values
 | 
|---|
| 504 |  * \param MatrixNumber the index for the ForceMatrix::matrix array
 | 
|---|
| 505 |  */
 | 
|---|
| 506 | void CreateEnergy(class MatrixContainer &Energy, int MatrixNumber)
 | 
|---|
| 507 | {
 | 
|---|
| 508 |   for(int k=0;k<Energy.ColumnCounter[MatrixNumber];k++)
 | 
|---|
| 509 |     Energy.Matrix[MatrixNumber][ Energy.RowCounter[MatrixNumber] ] [k] =  Energy.Matrix[MatrixNumber][ Energy.RowCounter[MatrixNumber]-1 ] [k];
 | 
|---|
| 510 | };
 | 
|---|
| 511 | 
 | 
|---|
| 512 | /** Scans forces for the minimum in magnitude.
 | 
|---|
| 513 |  * Results are stored in the matrix ForceMatrix::MatrixCounter of \a Force.
 | 
|---|
| 514 |  * \param Force ForceMatrix class containing matrix values
 | 
|---|
| 515 |  * \param MatrixNumber the index for the ForceMatrix::matrix array
 | 
|---|
| 516 |  */
 | 
|---|
| 517 | void CreateMinimumForce(class MatrixContainer &Force, int MatrixNumber)
 | 
|---|
| 518 | {
 | 
|---|
| 519 |   for (int l=Force.ColumnCounter[MatrixNumber];l--;)
 | 
|---|
| 520 |     Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l] = 0.;
 | 
|---|
| 521 |   for (int l=5;l<Force.ColumnCounter[MatrixNumber];l+=3) {
 | 
|---|
| 522 |     double stored = 0;
 | 
|---|
| 523 |     int k=0;
 | 
|---|
| 524 |     do {
 | 
|---|
| 525 |       for (int m=NDIM;m--;) {
 | 
|---|
| 526 |         stored += Force.Matrix[MatrixNumber][ k ][l+m]
 | 
|---|
| 527 |               * Force.Matrix[MatrixNumber][ k ][l+m];
 | 
|---|
| 528 |         Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l+m]  = Force.Matrix[MatrixNumber][ k ][l+m];
 | 
|---|
| 529 |       }
 | 
|---|
| 530 |       k++;
 | 
|---|
| 531 |     } while ((fabs(stored) < MYEPSILON) && (k<Force.RowCounter[MatrixNumber]));
 | 
|---|
| 532 |     for (;k<Force.RowCounter[MatrixNumber];k++) {
 | 
|---|
| 533 |       double tmp = 0;
 | 
|---|
| 534 |       for (int m=NDIM;m--;)
 | 
|---|
| 535 |         tmp += Force.Matrix[MatrixNumber][ k ][l+m]
 | 
|---|
| 536 |               * Force.Matrix[MatrixNumber][ k ][l+m];
 | 
|---|
| 537 |       if ((fabs(tmp) > MYEPSILON) && (tmp < stored)) {  // current force is greater than stored
 | 
|---|
| 538 |         for (int m=NDIM;m--;)
 | 
|---|
| 539 |           Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l+m]  = Force.Matrix[MatrixNumber][ k ][l+m];
 | 
|---|
| 540 |         stored = tmp;
 | 
|---|
| 541 |       }
 | 
|---|
| 542 |     }
 | 
|---|
| 543 |   }
 | 
|---|
| 544 | };
 | 
|---|
| 545 | 
 | 
|---|
| 546 | /** Scans forces for the mean in magnitude.
 | 
|---|
| 547 |  * Results are stored in the matrix ForceMatrix::MatrixCounter of \a Force.
 | 
|---|
| 548 |  * \param Force ForceMatrix class containing matrix values
 | 
|---|
| 549 |   * \param MatrixNumber the index for the ForceMatrix::matrix array
 | 
|---|
| 550 |  */
 | 
|---|
| 551 | void CreateMeanForce(class MatrixContainer &Force, int MatrixNumber)
 | 
|---|
| 552 | {
 | 
|---|
| 553 |   int divisor = 0;
 | 
|---|
| 554 |   for (int l=Force.ColumnCounter[MatrixNumber];l--;)
 | 
|---|
| 555 |     Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l] = 0.;
 | 
|---|
| 556 |   for (int l=5;l<Force.ColumnCounter[MatrixNumber];l+=3) {
 | 
|---|
| 557 |     double tmp = 0;
 | 
|---|
| 558 |     for (int k=Force.RowCounter[MatrixNumber];k--;) {
 | 
|---|
| 559 |       double norm = 0.;
 | 
|---|
| 560 |       for (int m=NDIM;m--;)
 | 
|---|
| 561 |         norm += Force.Matrix[MatrixNumber][ k ][l+m]
 | 
|---|
| 562 |               * Force.Matrix[MatrixNumber][ k ][l+m];
 | 
|---|
| 563 |       tmp += sqrt(norm);
 | 
|---|
| 564 |       if (fabs(norm) > MYEPSILON) divisor++;
 | 
|---|
| 565 |     }
 | 
|---|
| 566 |     tmp /= (double)divisor;
 | 
|---|
| 567 |     Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l] = tmp;
 | 
|---|
| 568 |   }
 | 
|---|
| 569 | };
 | 
|---|
| 570 | 
 | 
|---|
| 571 | /** Scans forces for the maximum in magnitude.
 | 
|---|
| 572 |  * Results are stored in the matrix ForceMatrix::MatrixCounter of \a Force.
 | 
|---|
| 573 |  * \param Force ForceMatrix class containing matrix values
 | 
|---|
| 574 |  * \param MatrixNumber the index for the ForceMatrix::matrix array
 | 
|---|
| 575 |  */
 | 
|---|
| 576 | void CreateMaximumForce(class MatrixContainer &Force, int MatrixNumber)
 | 
|---|
| 577 | {
 | 
|---|
| 578 |   for (int l=5;l<Force.ColumnCounter[MatrixNumber];l+=3) {
 | 
|---|
| 579 |     double stored = 0;
 | 
|---|
| 580 |     for (int k=Force.RowCounter[MatrixNumber];k--;) {
 | 
|---|
| 581 |       double tmp = 0;
 | 
|---|
| 582 |       for (int m=NDIM;m--;)
 | 
|---|
| 583 |         tmp += Force.Matrix[MatrixNumber][ k ][l+m]
 | 
|---|
| 584 |               * Force.Matrix[MatrixNumber][ k ][l+m];
 | 
|---|
| 585 |       if (tmp > stored) {  // current force is greater than stored
 | 
|---|
| 586 |         for (int m=NDIM;m--;)
 | 
|---|
| 587 |           Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l+m]  = Force.Matrix[MatrixNumber][ k ][l+m];
 | 
|---|
| 588 |         stored = tmp;
 | 
|---|
| 589 |       }
 | 
|---|
| 590 |     }
 | 
|---|
| 591 |   }
 | 
|---|
| 592 | };
 | 
|---|
| 593 | 
 | 
|---|
| 594 | /** Leaves the Force.Matrix as it is.
 | 
|---|
| 595 |  * \param Force ForceMatrix class containing matrix values
 | 
|---|
| 596 |  * \param MatrixNumber the index for the ForceMatrix::matrix array
 | 
|---|
| 597 | */
 | 
|---|
| 598 | void CreateSameForce(class MatrixContainer &Force, int MatrixNumber)
 | 
|---|
| 599 | {
 | 
|---|
| 600 |   // does nothing
 | 
|---|
| 601 | };
 | 
|---|
| 602 | 
 | 
|---|
| 603 | /** Adds vectorwise all forces.
 | 
|---|
| 604 |  * Results are stored in the matrix ForceMatrix::MatrixCounter of \a Force.
 | 
|---|
| 605 |  * \param Force ForceMatrix class containing matrix values
 | 
|---|
| 606 |  * \param MatrixNumber the index for the ForceMatrix::matrix array
 | 
|---|
| 607 |  */
 | 
|---|
| 608 | void CreateVectorSumForce(class MatrixContainer &Force, int MatrixNumber)
 | 
|---|
| 609 | {
 | 
|---|
| 610 |   for (int l=Force.ColumnCounter[MatrixNumber];l--;)
 | 
|---|
| 611 |     Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l] = 0.;
 | 
|---|
| 612 |   for (int l=0;l<Force.ColumnCounter[MatrixNumber];l++) {
 | 
|---|
| 613 |     for (int k=Force.RowCounter[MatrixNumber];k--;)
 | 
|---|
| 614 |       Force.Matrix[MatrixNumber][ Force.RowCounter[MatrixNumber] ][l] += Force.Matrix[MatrixNumber][k][l];
 | 
|---|
| 615 |   }
 | 
|---|
| 616 | };
 | 
|---|
| 617 | 
 | 
|---|
| 618 | /** Writes the standard pyxplot header info.
 | 
|---|
| 619 |  * \param keycolumns number of columns of the key
 | 
|---|
| 620 |  * \param *key position of key
 | 
|---|
| 621 |  * \param *logscale axis for logscale
 | 
|---|
| 622 |  * \param *extraline extra set lines if desired
 | 
|---|
| 623 |  * \param mxtics small tics at ...
 | 
|---|
| 624 |  * \param xtics large tics at ...
 | 
|---|
| 625 |  * \param *xlabel label for x axis
 | 
|---|
| 626 |  * \param *ylabel label for y axis
 | 
|---|
| 627 |  */
 | 
|---|
| 628 | void CreatePlotHeader(ofstream &output, const char *prefix, const int keycolumns, const char *key, const char *logscale, const char *extraline, const int mxtics, const int xtics, const char *xlabel, const char *ylabel)
 | 
|---|
| 629 | {
 | 
|---|
| 630 |   //output << "#!/home/heber/build/pyxplot/pyxplot" << endl << endl;
 | 
|---|
| 631 |   output << "reset" << endl;
 | 
|---|
| 632 |   output << "set keycolumns "<< keycolumns << endl;
 | 
|---|
| 633 |   output << "set key " << key << endl;
 | 
|---|
| 634 |   output << "set mxtics "<< mxtics << endl;
 | 
|---|
| 635 |   output << "set xtics "<< xtics << endl;
 | 
|---|
| 636 |   if (logscale != NULL)
 | 
|---|
| 637 |     output << "set logscale " << logscale << endl;
 | 
|---|
| 638 |   if (extraline != NULL)
 | 
|---|
| 639 |     output << extraline << endl;
 | 
|---|
| 640 |   output << "set xlabel '" << xlabel << "'" << endl;
 | 
|---|
| 641 |   output << "set ylabel '" << ylabel << "'" << endl;
 | 
|---|
| 642 |   output << "set terminal eps color" << endl;
 | 
|---|
| 643 |   output << "set output '"<< prefix << ".eps'" << endl;
 | 
|---|
| 644 | };
 | 
|---|
| 645 | 
 | 
|---|
| 646 | /** Creates the pyxplotfile for energy data.
 | 
|---|
| 647 |  * \param Matrix MatrixContainer with matrix values
 | 
|---|
| 648 |  * \param KeySets contains bond order
 | 
|---|
| 649 |  * \param *dir directory
 | 
|---|
| 650 |  * \param *prefix prefix for all filenames (without ending)
 | 
|---|
| 651 |  * \param keycolumns number of columns of the key
 | 
|---|
| 652 |  * \param *key position of key
 | 
|---|
| 653 |  * \param logscale axis for logscale
 | 
|---|
| 654 |  * \param mxtics small tics at ...
 | 
|---|
| 655 |  * \param xtics large tics at ...
 | 
|---|
| 656 |  * \param xlabel label for x axis
 | 
|---|
| 657 |  * \param xlabel label for x axis
 | 
|---|
| 658 |  * \param *xrange xrange
 | 
|---|
| 659 |  * \param *yrange yrange
 | 
|---|
| 660 |  * \param *xargument number of column to plot against (x axis)
 | 
|---|
| 661 |  * \param uses using string for plot command
 | 
|---|
| 662 |  * \param (*CreatePlotLines) function reference that writes a single plot line
 | 
|---|
| 663 |  * \return true if file was written successfully
 | 
|---|
| 664 |  */
 | 
|---|
| 665 | bool CreatePlotOrder(class MatrixContainer &Matrix, const class KeySetsContainer &KeySets, const char *dir, const char *prefix, const int keycolumns, const char *key, const char *logscale, const char *extraline, const int mxtics, const int xtics, const char *xlabel, const char *ylabel, const char *xrange, const char *yrange, const char *xargument, const char *uses, void (*CreatePlotLines)(ofstream &, class MatrixContainer &, const char *, const char *, const char *))
 | 
|---|
| 666 | {
 | 
|---|
| 667 |   stringstream filename;
 | 
|---|
| 668 |   ofstream output;
 | 
|---|
| 669 | 
 | 
|---|
| 670 |   filename << prefix << ".pyx";
 | 
|---|
| 671 |   if (!OpenOutputFile(output, dir, filename.str().c_str())) return false;
 | 
|---|
| 672 |   CreatePlotHeader(output, prefix, keycolumns, key, logscale, extraline, mxtics, xtics, xlabel, ylabel);
 | 
|---|
| 673 |   output << "plot " << xrange << " " << yrange << " \\" << endl;
 | 
|---|
| 674 |   CreatePlotLines(output, Matrix, prefix, xargument, uses);
 | 
|---|
| 675 |   output.close();
 | 
|---|
| 676 |   return true;
 | 
|---|
| 677 | };
 | 
|---|
| 678 | 
 | 
|---|
| 679 | /** Writes plot lines for absolute energies.
 | 
|---|
| 680 |  * \param output file handler
 | 
|---|
| 681 |  * \param Energy MatrixContainer with matrix values
 | 
|---|
| 682 |  * \param *prefix prefix of data file
 | 
|---|
| 683 |  * \param *xargument number of column to plot against (x axis)
 | 
|---|
| 684 |  * \param *uses uses command
 | 
|---|
| 685 |  */
 | 
|---|
| 686 | void AbsEnergyPlotLine(ofstream &output, class MatrixContainer &Energy, const char *prefix, const char *xargument, const char *uses)
 | 
|---|
| 687 | {
 | 
|---|
| 688 |   stringstream line(Energy.Header[ Energy.MatrixCounter ]);
 | 
|---|
| 689 |   string token;
 | 
|---|
| 690 | 
 | 
|---|
| 691 |   getline(line, token, '\t');
 | 
|---|
| 692 |   for (int i=2; i<= Energy.ColumnCounter[Energy.MatrixCounter];i++) {
 | 
|---|
| 693 |     getline(line, token, '\t');
 | 
|---|
| 694 |     while (token[0] == ' ') // remove leading white spaces
 | 
|---|
| 695 |       token.erase(0,1);
 | 
|---|
| 696 |     output << "'" << prefix << ".dat' title '" << token << "' using " << xargument << ":(abs($" << i+2 << ")) " << uses;
 | 
|---|
| 697 |     if (i != (Energy.ColumnCounter[Energy.MatrixCounter]))
 | 
|---|
| 698 |       output << ", \\";
 | 
|---|
| 699 |     output << endl;
 | 
|---|
| 700 |   }
 | 
|---|
| 701 | };
 | 
|---|
| 702 | 
 | 
|---|
| 703 | /** Writes plot lines for energies.
 | 
|---|
| 704 |  * \param output file handler
 | 
|---|
| 705 |  * \param Energy MatrixContainer with matrix values
 | 
|---|
| 706 |  * \param *prefix prefix of data file
 | 
|---|
| 707 |  * \param *xargument number of column to plot against (x axis)
 | 
|---|
| 708 |  * \param *uses uses command
 | 
|---|
| 709 |  */
 | 
|---|
| 710 | void EnergyPlotLine(ofstream &output, class MatrixContainer &Energy, const char *prefix, const char *xargument, const char *uses)
 | 
|---|
| 711 | {
 | 
|---|
| 712 |   stringstream line(Energy.Header[Energy.MatrixCounter]);
 | 
|---|
| 713 |   string token;
 | 
|---|
| 714 | 
 | 
|---|
| 715 |   getline(line, token, '\t');
 | 
|---|
| 716 |   for (int i=1; i<= Energy.ColumnCounter[Energy.MatrixCounter];i++) {
 | 
|---|
| 717 |     getline(line, token, '\t');
 | 
|---|
| 718 |     while (token[0] == ' ') // remove leading white spaces
 | 
|---|
| 719 |       token.erase(0,1);
 | 
|---|
| 720 |     output << "'" << prefix << ".dat' title '" << token << "' using " << xargument << ":" << i+2 << " " << uses;
 | 
|---|
| 721 |     if (i != (Energy.ColumnCounter[Energy.MatrixCounter]))
 | 
|---|
| 722 |       output << ", \\";
 | 
|---|
| 723 |     output << endl;
 | 
|---|
| 724 |   }
 | 
|---|
| 725 | };
 | 
|---|
| 726 | 
 | 
|---|
| 727 | /** Writes plot lines for absolute force magnitudes.
 | 
|---|
| 728 |  * \param output file handler
 | 
|---|
| 729 |  * \param Force MatrixContainer with matrix values
 | 
|---|
| 730 |  * \param *prefix prefix of data file
 | 
|---|
| 731 |  * \param *xargument number of column to plot against (x axis)
 | 
|---|
| 732 |  * \param *uses uses command
 | 
|---|
| 733 |  */
 | 
|---|
| 734 | void ForceMagnitudePlotLine(ofstream &output, class MatrixContainer &Force, const char *prefix, const char *xargument, const char *uses)
 | 
|---|
| 735 | {
 | 
|---|
| 736 |   stringstream line(Force.Header[Force.MatrixCounter]);
 | 
|---|
| 737 |   string token;
 | 
|---|
| 738 | 
 | 
|---|
| 739 |   getline(line, token, '\t');
 | 
|---|
| 740 |   getline(line, token, '\t');
 | 
|---|
| 741 |   getline(line, token, '\t');
 | 
|---|
| 742 |   getline(line, token, '\t');
 | 
|---|
| 743 |   getline(line, token, '\t');
 | 
|---|
| 744 |   for (int i=7; i< Force.ColumnCounter[Force.MatrixCounter];i+=NDIM) {
 | 
|---|
| 745 |     getline(line, token, '\t');
 | 
|---|
| 746 |     while (token[0] == ' ') // remove leading white spaces
 | 
|---|
| 747 |       token.erase(0,1);
 | 
|---|
| 748 |     token.erase(token.length(), 1);  // kill residual index char (the '0')
 | 
|---|
| 749 |     output << "'" << prefix << ".dat' title '" << token << "' using " << xargument << ":(sqrt($" << i+1 << "*$" << i+1 << "+$" << i+2 << "*$" << i+2 << "+$" << i+3 << "*$" << i+3 << ")) " << uses;
 | 
|---|
| 750 |     if (i != (Force.ColumnCounter[Force.MatrixCounter]-1))
 | 
|---|
| 751 |       output << ", \\";
 | 
|---|
| 752 |     output << endl;
 | 
|---|
| 753 |     getline(line, token, '\t');
 | 
|---|
| 754 |     getline(line, token, '\t');
 | 
|---|
| 755 |   }
 | 
|---|
| 756 | };
 | 
|---|
| 757 | 
 | 
|---|
| 758 | /** Writes plot lines for first component of force vector.
 | 
|---|
| 759 |  * \param output file handler
 | 
|---|
| 760 |  * \param Force MatrixContainer with matrix values
 | 
|---|
| 761 |  * \param *prefix prefix of data file
 | 
|---|
| 762 |  * \param *xargument number of column to plot against (x axis)
 | 
|---|
| 763 |  * \param *uses uses command
 | 
|---|
| 764 |  */
 | 
|---|
| 765 | void AbsFirstForceValuePlotLine(ofstream &output, class MatrixContainer &Force, const char *prefix, const char *xargument, const char *uses)
 | 
|---|
| 766 | {
 | 
|---|
| 767 |   stringstream line(Force.Header[Force.MatrixCounter]);
 | 
|---|
| 768 |   string token;
 | 
|---|
| 769 | 
 | 
|---|
| 770 |   getline(line, token, '\t');
 | 
|---|
| 771 |   getline(line, token, '\t');
 | 
|---|
| 772 |   getline(line, token, '\t');
 | 
|---|
| 773 |   getline(line, token, '\t');
 | 
|---|
| 774 |   getline(line, token, '\t');
 | 
|---|
| 775 |   for (int i=7; i< Force.ColumnCounter[Force.MatrixCounter];i+=NDIM) {
 | 
|---|
| 776 |     getline(line, token, '\t');
 | 
|---|
| 777 |     while (token[0] == ' ') // remove leading white spaces
 | 
|---|
| 778 |       token.erase(0,1);
 | 
|---|
| 779 |     token.erase(token.length(), 1);  // kill residual index char (the '0')
 | 
|---|
| 780 |     output << "'" << prefix << ".dat' title '" << token << "' using " << xargument << ":(abs($" << i+1 << ")) " << uses;
 | 
|---|
| 781 |     if (i != (Force.ColumnCounter[Force.MatrixCounter]-1))
 | 
|---|
| 782 |       output << ", \\";
 | 
|---|
| 783 |     output << endl;
 | 
|---|
| 784 |     getline(line, token, '\t');
 | 
|---|
| 785 |     getline(line, token, '\t');
 | 
|---|
| 786 |   }
 | 
|---|
| 787 | };
 | 
|---|
| 788 | 
 | 
|---|
| 789 | /** Writes plot lines for force vector as boxes with a fillcolor.
 | 
|---|
| 790 |  * \param output file handler
 | 
|---|
| 791 |  * \param Force MatrixContainer with matrix values
 | 
|---|
| 792 |  * \param *prefix prefix of data file
 | 
|---|
| 793 |  * \param *xargument number of column to plot against (x axis)
 | 
|---|
| 794 |  * \param *uses uses command
 | 
|---|
| 795 |  */
 | 
|---|
| 796 | void BoxesForcePlotLine(ofstream &output, class MatrixContainer &Force, const char *prefix, const char *xargument, const char *uses)
 | 
|---|
| 797 | {
 | 
|---|
| 798 |   stringstream line(Force.Header[Force.MatrixCounter]);
 | 
|---|
| 799 |   const char *fillcolor[5] = {"black", "red", "blue", "green", "cyan"};
 | 
|---|
| 800 |   string token;
 | 
|---|
| 801 | 
 | 
|---|
| 802 |   getline(line, token, '\t');
 | 
|---|
| 803 |   getline(line, token, '\t');
 | 
|---|
| 804 |   getline(line, token, '\t');
 | 
|---|
| 805 |   getline(line, token, '\t');
 | 
|---|
| 806 |   getline(line, token, '\t');
 | 
|---|
| 807 |   for (int i=7; i< Force.ColumnCounter[Force.MatrixCounter];i+=NDIM) {
 | 
|---|
| 808 |     getline(line, token, '\t');
 | 
|---|
| 809 |     while (token[0] == ' ') // remove leading white spaces
 | 
|---|
| 810 |       token.erase(0,1);
 | 
|---|
| 811 |     token.erase(token.length(), 1);  // kill residual index char (the '0')
 | 
|---|
| 812 |     output << "'" << prefix << ".dat' title '" << token << "' using ($" << xargument << "+" << fixed << setprecision(1) << (double)((i-7)/3)*0.2 << "):(sqrt($" << i+1 << "*$" << i+1 << "+$" << i+2 << "*$" << i+2 << "+$" << i+3 << "*$" << i+3 << ")) " << uses << " " << fillcolor[(i-7)/3];
 | 
|---|
| 813 |     if (i != (Force.ColumnCounter[Force.MatrixCounter]-1))
 | 
|---|
| 814 |       output << ", \\";
 | 
|---|
| 815 |     output << endl;
 | 
|---|
| 816 |     getline(line, token, '\t');
 | 
|---|
| 817 |     getline(line, token, '\t');
 | 
|---|
| 818 |   }
 | 
|---|
| 819 | };
 | 
|---|
| 820 | 
 | 
|---|
| 821 | /** Writes plot lines for first force vector component as boxes with a fillcolor.
 | 
|---|
| 822 |  * \param output file handler
 | 
|---|
| 823 |  * \param Force MatrixContainer with matrix values
 | 
|---|
| 824 |  * \param *prefix prefix of data file
 | 
|---|
| 825 |  * \param *xargument number of column to plot against (x axis)
 | 
|---|
| 826 |  * \param *uses uses command
 | 
|---|
| 827 |  */
 | 
|---|
| 828 | void BoxesFirstForceValuePlotLine(ofstream &output, class MatrixContainer &Force, const char *prefix, const char *xargument, const char *uses)
 | 
|---|
| 829 | {
 | 
|---|
| 830 |   stringstream line(Force.Header[Force.MatrixCounter]);
 | 
|---|
| 831 |   const char *fillcolor[5] = {"black", "red", "blue", "green", "cyan"};
 | 
|---|
| 832 |   string token;
 | 
|---|
| 833 | 
 | 
|---|
| 834 |   getline(line, token, '\t');
 | 
|---|
| 835 |   getline(line, token, '\t');
 | 
|---|
| 836 |   getline(line, token, '\t');
 | 
|---|
| 837 |   getline(line, token, '\t');
 | 
|---|
| 838 |   getline(line, token, '\t');
 | 
|---|
| 839 |   for (int i=7; i< Force.ColumnCounter[Force.MatrixCounter];i+=NDIM) {
 | 
|---|
| 840 |     getline(line, token, '\t');
 | 
|---|
| 841 |     while (token[0] == ' ') // remove leading white spaces
 | 
|---|
| 842 |       token.erase(0,1);
 | 
|---|
| 843 |     token.erase(token.length(), 1);  // kill residual index char (the '0')
 | 
|---|
| 844 |     output << "'" << prefix << ".dat' title '" << token << "' using ($" << xargument << "+" << fixed << setprecision(1) << (double)((i-7)/3)*0.2 << "):" << i+1 << " " << uses << " " << fillcolor[(i-7)/3];
 | 
|---|
| 845 |     if (i != (Force.ColumnCounter[Force.MatrixCounter]-1))
 | 
|---|
| 846 |       output << ", \\";
 | 
|---|
| 847 |     output << endl;
 | 
|---|
| 848 |     getline(line, token, '\t');
 | 
|---|
| 849 |     getline(line, token, '\t');
 | 
|---|
| 850 |   }
 | 
|---|
| 851 | };
 | 
|---|