| [14de469] | 1 | /** \file builder.cpp | 
|---|
| [a8bcea6] | 2 | * | 
|---|
| [14de469] | 3 | * By stating absolute positions or binding angles and distances atomic positions of a molecule can be constructed. | 
|---|
|  | 4 | * The output is the complete configuration file for PCP for direct use. | 
|---|
|  | 5 | * Features: | 
|---|
|  | 6 | * -# Atomic data is retrieved from a file, if not found requested and stored there for later re-use | 
|---|
|  | 7 | * -# step-by-step construction of the molecule beginning either at a centre of with a certain atom | 
|---|
| [a8bcea6] | 8 | * | 
|---|
| [14de469] | 9 | */ | 
|---|
|  | 10 |  | 
|---|
|  | 11 | /*! \mainpage Molecuilder - a molecular set builder | 
|---|
| [a8bcea6] | 12 | * | 
|---|
| [14de469] | 13 | * This introductory shall briefly make aquainted with the program, helping in installing and a first run. | 
|---|
| [a8bcea6] | 14 | * | 
|---|
| [14de469] | 15 | * \section about About the Program | 
|---|
| [a8bcea6] | 16 | * | 
|---|
| [6ac7ee] | 17 | *      Molecuilder is a short program, written in C++, that enables the construction of a coordinate set for the | 
|---|
|  | 18 | *      atoms making up an molecule by the successive statement of binding angles and distances and referencing to | 
|---|
|  | 19 | *      already constructed atoms. | 
|---|
| [a8bcea6] | 20 | * | 
|---|
| [6ac7ee] | 21 | *      A configuration file may be written that is compatible to the format used by PCP - a parallel Car-Parrinello | 
|---|
|  | 22 | *      molecular dynamics implementation. | 
|---|
| [a8bcea6] | 23 | * | 
|---|
| [14de469] | 24 | * \section install Installation | 
|---|
| [a8bcea6] | 25 | * | 
|---|
| [6ac7ee] | 26 | *      Installation should without problems succeed as follows: | 
|---|
|  | 27 | *      -# ./configure (or: mkdir build;mkdir run;cd build; ../configure --bindir=../run) | 
|---|
|  | 28 | *      -# make | 
|---|
|  | 29 | *      -# make install | 
|---|
| [a8bcea6] | 30 | * | 
|---|
| [6ac7ee] | 31 | *      Further useful commands are | 
|---|
|  | 32 | *      -# make clean uninstall: deletes .o-files and removes executable from the given binary directory\n | 
|---|
|  | 33 | *      -# make doxygen-doc: Creates these html pages out of the documented source | 
|---|
| [a8bcea6] | 34 | * | 
|---|
| [14de469] | 35 | * \section run Running | 
|---|
| [a8bcea6] | 36 | * | 
|---|
| [6ac7ee] | 37 | *      The program can be executed by running: ./molecuilder | 
|---|
| [a8bcea6] | 38 | * | 
|---|
| [6ac7ee] | 39 | *      Note, that it uses a database, called "elements.db", in the executable's directory. If the file is not found, | 
|---|
|  | 40 | *      it is created and any given data on elements of the periodic table will be stored therein and re-used on | 
|---|
|  | 41 | *      later re-execution. | 
|---|
| [a8bcea6] | 42 | * | 
|---|
| [14de469] | 43 | * \section ref References | 
|---|
| [a8bcea6] | 44 | * | 
|---|
| [6ac7ee] | 45 | *      For the special configuration file format, see the documentation of pcp. | 
|---|
| [a8bcea6] | 46 | * | 
|---|
| [14de469] | 47 | */ | 
|---|
|  | 48 |  | 
|---|
|  | 49 |  | 
|---|
|  | 50 | using namespace std; | 
|---|
|  | 51 |  | 
|---|
| [6ac7ee] | 52 | #include "boundary.hpp" | 
|---|
|  | 53 | #include "ellipsoid.hpp" | 
|---|
| [14de469] | 54 | #include "helpers.hpp" | 
|---|
|  | 55 | #include "molecules.hpp" | 
|---|
|  | 56 |  | 
|---|
| [1907a7] | 57 | /********************************************* Subsubmenu routine ************************************/ | 
|---|
| [14de469] | 58 |  | 
|---|
|  | 59 | /** Submenu for adding atoms to the molecule. | 
|---|
|  | 60 | * \param *periode periodentafel | 
|---|
| [1907a7] | 61 | * \param *molecule molecules with atoms | 
|---|
| [14de469] | 62 | */ | 
|---|
| [7f3b9d] | 63 | static void AddAtoms(periodentafel *periode, molecule *mol) | 
|---|
| [14de469] | 64 | { | 
|---|
| [6ac7ee] | 65 | atom *first, *second, *third, *fourth; | 
|---|
|  | 66 | Vector **atoms; | 
|---|
|  | 67 | Vector x,y,z,n; // coordinates for absolute point in cell volume | 
|---|
|  | 68 | double a,b,c; | 
|---|
|  | 69 | char choice;    // menu choice char | 
|---|
|  | 70 | bool valid; | 
|---|
|  | 71 |  | 
|---|
|  | 72 | cout << Verbose(0) << "===========ADD ATOM============================" << endl; | 
|---|
|  | 73 | cout << Verbose(0) << " a - state absolute coordinates of atom" << endl; | 
|---|
|  | 74 | cout << Verbose(0) << " b - state relative coordinates of atom wrt to reference point" << endl; | 
|---|
|  | 75 | cout << Verbose(0) << " c - state relative coordinates of atom wrt to already placed atom" << endl; | 
|---|
|  | 76 | cout << Verbose(0) << " d - state two atoms, two angles and a distance" << endl; | 
|---|
|  | 77 | cout << Verbose(0) << " e - least square distance position to a set of atoms" << endl; | 
|---|
|  | 78 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 79 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 80 | cout << Verbose(0) << "Note: Specifiy angles in degrees not multiples of Pi!" << endl; | 
|---|
|  | 81 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 82 | cin >> choice; | 
|---|
|  | 83 |  | 
|---|
|  | 84 | switch (choice) { | 
|---|
| [1907a7] | 85 | default: | 
|---|
|  | 86 | cout << Verbose(0) << "Not a valid choice." << endl; | 
|---|
|  | 87 | break; | 
|---|
| [6ac7ee] | 88 | case 'a': // absolute coordinates of atom | 
|---|
| [1907a7] | 89 | cout << Verbose(0) << "Enter absolute coordinates." << endl; | 
|---|
|  | 90 | first = new atom; | 
|---|
|  | 91 | first->x.AskPosition(mol->cell_size, false); | 
|---|
|  | 92 | first->type = periode->AskElement();    // give type | 
|---|
|  | 93 | mol->AddAtom(first);    // add to molecule | 
|---|
| [6ac7ee] | 94 | break; | 
|---|
|  | 95 |  | 
|---|
|  | 96 | case 'b': // relative coordinates of atom wrt to reference point | 
|---|
| [1907a7] | 97 | first = new atom; | 
|---|
|  | 98 | valid = true; | 
|---|
|  | 99 | do { | 
|---|
|  | 100 | if (!valid) cout << Verbose(0) << "Resulting position out of cell." << endl; | 
|---|
|  | 101 | cout << Verbose(0) << "Enter reference coordinates." << endl; | 
|---|
|  | 102 | x.AskPosition(mol->cell_size, true); | 
|---|
|  | 103 | cout << Verbose(0) << "Enter relative coordinates." << endl; | 
|---|
|  | 104 | first->x.AskPosition(mol->cell_size, false); | 
|---|
|  | 105 | first->x.AddVector((const Vector *)&x); | 
|---|
|  | 106 | cout << Verbose(0) << "\n"; | 
|---|
|  | 107 | } while (!(valid = mol->CheckBounds((const Vector *)&first->x))); | 
|---|
|  | 108 | first->type = periode->AskElement();    // give type | 
|---|
|  | 109 | mol->AddAtom(first);    // add to molecule | 
|---|
| [6ac7ee] | 110 | break; | 
|---|
|  | 111 |  | 
|---|
|  | 112 | case 'c': // relative coordinates of atom wrt to already placed atom | 
|---|
| [1907a7] | 113 | first = new atom; | 
|---|
|  | 114 | valid = true; | 
|---|
|  | 115 | do { | 
|---|
|  | 116 | if (!valid) cout << Verbose(0) << "Resulting position out of cell." << endl; | 
|---|
|  | 117 | second = mol->AskAtom("Enter atom number: "); | 
|---|
|  | 118 | cout << Verbose(0) << "Enter relative coordinates." << endl; | 
|---|
|  | 119 | first->x.AskPosition(mol->cell_size, false); | 
|---|
|  | 120 | for (int i=NDIM;i--;) { | 
|---|
|  | 121 | first->x.x[i] += second->x.x[i]; | 
|---|
|  | 122 | } | 
|---|
|  | 123 | } while (!(valid = mol->CheckBounds((const Vector *)&first->x))); | 
|---|
|  | 124 | first->type = periode->AskElement();    // give type | 
|---|
|  | 125 | mol->AddAtom(first);    // add to molecule | 
|---|
|  | 126 | break; | 
|---|
|  | 127 |  | 
|---|
|  | 128 | case 'd': // two atoms, two angles and a distance | 
|---|
|  | 129 | first = new atom; | 
|---|
|  | 130 | valid = true; | 
|---|
|  | 131 | do { | 
|---|
|  | 132 | if (!valid) { | 
|---|
|  | 133 | cout << Verbose(0) << "Resulting coordinates out of cell - "; | 
|---|
|  | 134 | first->x.Output((ofstream *)&cout); | 
|---|
|  | 135 | cout << Verbose(0) << endl; | 
|---|
|  | 136 | } | 
|---|
|  | 137 | cout << Verbose(0) << "First, we need two atoms, the first atom is the central, while the second is the outer one." << endl; | 
|---|
|  | 138 | second = mol->AskAtom("Enter central atom: "); | 
|---|
|  | 139 | third = mol->AskAtom("Enter second atom (specifying the axis for first angle): "); | 
|---|
|  | 140 | fourth = mol->AskAtom("Enter third atom (specifying a plane for second angle): "); | 
|---|
|  | 141 | a = ask_value("Enter distance between central (first) and new atom: "); | 
|---|
|  | 142 | b = ask_value("Enter angle between new, first and second atom (degrees): "); | 
|---|
|  | 143 | b *= M_PI/180.; | 
|---|
|  | 144 | bound(&b, 0., 2.*M_PI); | 
|---|
|  | 145 | c = ask_value("Enter second angle between new and normal vector of plane defined by first, second and third atom (degrees): "); | 
|---|
|  | 146 | c *= M_PI/180.; | 
|---|
|  | 147 | bound(&c, -M_PI, M_PI); | 
|---|
|  | 148 | cout << Verbose(0) << "radius: " << a << "\t phi: " << b*180./M_PI << "\t theta: " << c*180./M_PI << endl; | 
|---|
| [14de469] | 149 | /* | 
|---|
| [1907a7] | 150 | second->Output(1,1,(ofstream *)&cout); | 
|---|
|  | 151 | third->Output(1,2,(ofstream *)&cout); | 
|---|
|  | 152 | fourth->Output(1,3,(ofstream *)&cout); | 
|---|
|  | 153 | n.MakeNormalvector((const vector *)&second->x, (const vector *)&third->x, (const vector *)&fourth->x); | 
|---|
|  | 154 | x.Copyvector(&second->x); | 
|---|
|  | 155 | x.SubtractVector(&third->x); | 
|---|
|  | 156 | x.Copyvector(&fourth->x); | 
|---|
|  | 157 | x.SubtractVector(&third->x); | 
|---|
|  | 158 |  | 
|---|
|  | 159 | if (!z.SolveSystem(&x,&y,&n, b, c, a)) { | 
|---|
|  | 160 | cout << Verbose(0) << "Failure solving self-dependent linear system!" << endl; | 
|---|
|  | 161 | continue; | 
|---|
|  | 162 | } | 
|---|
|  | 163 | cout << Verbose(0) << "resulting relative coordinates: "; | 
|---|
|  | 164 | z.Output((ofstream *)&cout); | 
|---|
|  | 165 | cout << Verbose(0) << endl; | 
|---|
|  | 166 | */ | 
|---|
|  | 167 | // calc axis vector | 
|---|
|  | 168 | x.CopyVector(&second->x); | 
|---|
|  | 169 | x.SubtractVector(&third->x); | 
|---|
|  | 170 | x.Normalize(); | 
|---|
|  | 171 | cout << "x: ", | 
|---|
|  | 172 | x.Output((ofstream *)&cout); | 
|---|
|  | 173 | cout << endl; | 
|---|
|  | 174 | z.MakeNormalVector(&second->x,&third->x,&fourth->x); | 
|---|
|  | 175 | cout << "z: ", | 
|---|
|  | 176 | z.Output((ofstream *)&cout); | 
|---|
|  | 177 | cout << endl; | 
|---|
|  | 178 | y.MakeNormalVector(&x,&z); | 
|---|
|  | 179 | cout << "y: ", | 
|---|
|  | 180 | y.Output((ofstream *)&cout); | 
|---|
|  | 181 | cout << endl; | 
|---|
|  | 182 |  | 
|---|
|  | 183 | // rotate vector around first angle | 
|---|
|  | 184 | first->x.CopyVector(&x); | 
|---|
|  | 185 | first->x.RotateVector(&z,b - M_PI); | 
|---|
|  | 186 | cout << "Rotated vector: ", | 
|---|
|  | 187 | first->x.Output((ofstream *)&cout); | 
|---|
|  | 188 | cout << endl; | 
|---|
|  | 189 | // remove the projection onto the rotation plane of the second angle | 
|---|
|  | 190 | n.CopyVector(&y); | 
|---|
|  | 191 | n.Scale(first->x.Projection(&y)); | 
|---|
|  | 192 | cout << "N1: ", | 
|---|
|  | 193 | n.Output((ofstream *)&cout); | 
|---|
|  | 194 | cout << endl; | 
|---|
|  | 195 | first->x.SubtractVector(&n); | 
|---|
|  | 196 | cout << "Subtracted vector: ", | 
|---|
|  | 197 | first->x.Output((ofstream *)&cout); | 
|---|
|  | 198 | cout << endl; | 
|---|
|  | 199 | n.CopyVector(&z); | 
|---|
|  | 200 | n.Scale(first->x.Projection(&z)); | 
|---|
|  | 201 | cout << "N2: ", | 
|---|
|  | 202 | n.Output((ofstream *)&cout); | 
|---|
|  | 203 | cout << endl; | 
|---|
|  | 204 | first->x.SubtractVector(&n); | 
|---|
|  | 205 | cout << "2nd subtracted vector: ", | 
|---|
|  | 206 | first->x.Output((ofstream *)&cout); | 
|---|
|  | 207 | cout << endl; | 
|---|
|  | 208 |  | 
|---|
|  | 209 | // rotate another vector around second angle | 
|---|
|  | 210 | n.CopyVector(&y); | 
|---|
|  | 211 | n.RotateVector(&x,c - M_PI); | 
|---|
|  | 212 | cout << "2nd Rotated vector: ", | 
|---|
|  | 213 | n.Output((ofstream *)&cout); | 
|---|
|  | 214 | cout << endl; | 
|---|
|  | 215 |  | 
|---|
|  | 216 | // add the two linear independent vectors | 
|---|
|  | 217 | first->x.AddVector(&n); | 
|---|
|  | 218 | first->x.Normalize(); | 
|---|
|  | 219 | first->x.Scale(a); | 
|---|
|  | 220 | first->x.AddVector(&second->x); | 
|---|
|  | 221 |  | 
|---|
|  | 222 | cout << Verbose(0) << "resulting coordinates: "; | 
|---|
|  | 223 | first->x.Output((ofstream *)&cout); | 
|---|
|  | 224 | cout << Verbose(0) << endl; | 
|---|
|  | 225 | } while (!(valid = mol->CheckBounds((const Vector *)&first->x))); | 
|---|
|  | 226 | first->type = periode->AskElement();    // give type | 
|---|
|  | 227 | mol->AddAtom(first);    // add to molecule | 
|---|
| [6ac7ee] | 228 | break; | 
|---|
|  | 229 |  | 
|---|
|  | 230 | case 'e': // least square distance position to a set of atoms | 
|---|
| [1907a7] | 231 | first = new atom; | 
|---|
|  | 232 | atoms = new (Vector*[128]); | 
|---|
|  | 233 | valid = true; | 
|---|
|  | 234 | for(int i=128;i--;) | 
|---|
|  | 235 | atoms[i] = NULL; | 
|---|
|  | 236 | int i=0, j=0; | 
|---|
|  | 237 | cout << Verbose(0) << "Now we need at least three molecules.\n"; | 
|---|
|  | 238 | do { | 
|---|
|  | 239 | cout << Verbose(0) << "Enter " << i+1 << "th atom: "; | 
|---|
|  | 240 | cin >> j; | 
|---|
|  | 241 | if (j != -1) { | 
|---|
|  | 242 | second = mol->FindAtom(j); | 
|---|
|  | 243 | atoms[i++] = &(second->x); | 
|---|
|  | 244 | } | 
|---|
|  | 245 | } while ((j != -1) && (i<128)); | 
|---|
|  | 246 | if (i >= 2) { | 
|---|
|  | 247 | first->x.LSQdistance(atoms, i); | 
|---|
|  | 248 |  | 
|---|
|  | 249 | first->x.Output((ofstream *)&cout); | 
|---|
|  | 250 | first->type = periode->AskElement();  // give type | 
|---|
|  | 251 | mol->AddAtom(first);  // add to molecule | 
|---|
|  | 252 | } else { | 
|---|
|  | 253 | delete first; | 
|---|
|  | 254 | cout << Verbose(0) << "Please enter at least two vectors!\n"; | 
|---|
|  | 255 | } | 
|---|
| [6ac7ee] | 256 | break; | 
|---|
|  | 257 | }; | 
|---|
| [14de469] | 258 | }; | 
|---|
|  | 259 |  | 
|---|
|  | 260 | /** Submenu for centering the atoms in the molecule. | 
|---|
| [1907a7] | 261 | * \param *mol molecule with all the atoms | 
|---|
| [14de469] | 262 | */ | 
|---|
| [7f3b9d] | 263 | static void CenterAtoms(molecule *mol) | 
|---|
| [14de469] | 264 | { | 
|---|
| [6ac7ee] | 265 | Vector x, y, helper; | 
|---|
|  | 266 | char choice;    // menu choice char | 
|---|
|  | 267 |  | 
|---|
|  | 268 | cout << Verbose(0) << "===========CENTER ATOMS=========================" << endl; | 
|---|
|  | 269 | cout << Verbose(0) << " a - on origin" << endl; | 
|---|
|  | 270 | cout << Verbose(0) << " b - on center of gravity" << endl; | 
|---|
|  | 271 | cout << Verbose(0) << " c - within box with additional boundary" << endl; | 
|---|
|  | 272 | cout << Verbose(0) << " d - within given simulation box" << endl; | 
|---|
|  | 273 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 274 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 275 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 276 | cin >> choice; | 
|---|
|  | 277 |  | 
|---|
|  | 278 | switch (choice) { | 
|---|
|  | 279 | default: | 
|---|
|  | 280 | cout << Verbose(0) << "Not a valid choice." << endl; | 
|---|
|  | 281 | break; | 
|---|
|  | 282 | case 'a': | 
|---|
|  | 283 | cout << Verbose(0) << "Centering atoms in config file on origin." << endl; | 
|---|
|  | 284 | mol->CenterOrigin((ofstream *)&cout, &x); | 
|---|
|  | 285 | break; | 
|---|
|  | 286 | case 'b': | 
|---|
|  | 287 | cout << Verbose(0) << "Centering atoms in config file on center of gravity." << endl; | 
|---|
|  | 288 | mol->CenterGravity((ofstream *)&cout, &x); | 
|---|
|  | 289 | break; | 
|---|
|  | 290 | case 'c': | 
|---|
|  | 291 | cout << Verbose(0) << "Centering atoms in config file within given additional boundary." << endl; | 
|---|
|  | 292 | for (int i=0;i<NDIM;i++) { | 
|---|
|  | 293 | cout << Verbose(0) << "Enter axis " << i << " boundary: "; | 
|---|
|  | 294 | cin >> y.x[i]; | 
|---|
|  | 295 | } | 
|---|
|  | 296 | mol->CenterEdge((ofstream *)&cout, &x); // make every coordinate positive | 
|---|
|  | 297 | mol->Translate(&y); // translate by boundary | 
|---|
|  | 298 | helper.CopyVector(&y); | 
|---|
|  | 299 | helper.Scale(2.); | 
|---|
|  | 300 | helper.AddVector(&x); | 
|---|
|  | 301 | mol->SetBoxDimension(&helper);  // update Box of atoms by boundary | 
|---|
|  | 302 | break; | 
|---|
|  | 303 | case 'd': | 
|---|
|  | 304 | cout << Verbose(1) << "Centering atoms in config file within given simulation box." << endl; | 
|---|
|  | 305 | for (int i=0;i<NDIM;i++) { | 
|---|
|  | 306 | cout << Verbose(0) << "Enter axis " << i << " boundary: "; | 
|---|
|  | 307 | cin >> x.x[i]; | 
|---|
|  | 308 | } | 
|---|
|  | 309 | // center | 
|---|
| [21c017] | 310 | mol->CenterInBox((ofstream *)&cout); | 
|---|
| [6ac7ee] | 311 | // update Box of atoms by boundary | 
|---|
|  | 312 | mol->SetBoxDimension(&x); | 
|---|
|  | 313 | break; | 
|---|
|  | 314 | } | 
|---|
| [14de469] | 315 | }; | 
|---|
|  | 316 |  | 
|---|
|  | 317 | /** Submenu for aligning the atoms in the molecule. | 
|---|
|  | 318 | * \param *periode periodentafel | 
|---|
| [1907a7] | 319 | * \param *mol molecule with all the atoms | 
|---|
| [14de469] | 320 | */ | 
|---|
| [7f3b9d] | 321 | static void AlignAtoms(periodentafel *periode, molecule *mol) | 
|---|
| [14de469] | 322 | { | 
|---|
| [6ac7ee] | 323 | atom *first, *second, *third; | 
|---|
|  | 324 | Vector x,n; | 
|---|
|  | 325 | char choice;    // menu choice char | 
|---|
|  | 326 |  | 
|---|
|  | 327 | cout << Verbose(0) << "===========ALIGN ATOMS=========================" << endl; | 
|---|
|  | 328 | cout << Verbose(0) << " a - state three atoms defining align plane" << endl; | 
|---|
|  | 329 | cout << Verbose(0) << " b - state alignment vector" << endl; | 
|---|
|  | 330 | cout << Verbose(0) << " c - state two atoms in alignment direction" << endl; | 
|---|
|  | 331 | cout << Verbose(0) << " d - align automatically by least square fit" << endl; | 
|---|
|  | 332 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 333 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 334 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 335 | cin >> choice; | 
|---|
|  | 336 |  | 
|---|
|  | 337 | switch (choice) { | 
|---|
|  | 338 | default: | 
|---|
|  | 339 | case 'a': // three atoms defining mirror plane | 
|---|
|  | 340 | first = mol->AskAtom("Enter first atom: "); | 
|---|
|  | 341 | second = mol->AskAtom("Enter second atom: "); | 
|---|
|  | 342 | third = mol->AskAtom("Enter third atom: "); | 
|---|
|  | 343 |  | 
|---|
|  | 344 | n.MakeNormalVector((const Vector *)&first->x,(const Vector *)&second->x,(const Vector *)&third->x); | 
|---|
|  | 345 | break; | 
|---|
|  | 346 | case 'b': // normal vector of mirror plane | 
|---|
|  | 347 | cout << Verbose(0) << "Enter normal vector of mirror plane." << endl; | 
|---|
|  | 348 | n.AskPosition(mol->cell_size,0); | 
|---|
|  | 349 | n.Normalize(); | 
|---|
|  | 350 | break; | 
|---|
|  | 351 | case 'c': // three atoms defining mirror plane | 
|---|
|  | 352 | first = mol->AskAtom("Enter first atom: "); | 
|---|
|  | 353 | second = mol->AskAtom("Enter second atom: "); | 
|---|
|  | 354 |  | 
|---|
|  | 355 | n.CopyVector((const Vector *)&first->x); | 
|---|
|  | 356 | n.SubtractVector((const Vector *)&second->x); | 
|---|
|  | 357 | n.Normalize(); | 
|---|
|  | 358 | break; | 
|---|
|  | 359 | case 'd': | 
|---|
|  | 360 | char shorthand[4]; | 
|---|
|  | 361 | Vector a; | 
|---|
|  | 362 | struct lsq_params param; | 
|---|
|  | 363 | do { | 
|---|
|  | 364 | fprintf(stdout, "Enter the element of atoms to be chosen: "); | 
|---|
|  | 365 | fscanf(stdin, "%3s", shorthand); | 
|---|
|  | 366 | } while ((param.type = periode->FindElement(shorthand)) == NULL); | 
|---|
|  | 367 | cout << Verbose(0) << "Element is " << param.type->name << endl; | 
|---|
|  | 368 | mol->GetAlignvector(¶m); | 
|---|
|  | 369 | for (int i=NDIM;i--;) { | 
|---|
|  | 370 | x.x[i] = gsl_vector_get(param.x,i); | 
|---|
|  | 371 | n.x[i] = gsl_vector_get(param.x,i+NDIM); | 
|---|
|  | 372 | } | 
|---|
|  | 373 | gsl_vector_free(param.x); | 
|---|
|  | 374 | cout << Verbose(0) << "Offset vector: "; | 
|---|
|  | 375 | x.Output((ofstream *)&cout); | 
|---|
|  | 376 | cout << Verbose(0) << endl; | 
|---|
|  | 377 | n.Normalize(); | 
|---|
|  | 378 | break; | 
|---|
|  | 379 | }; | 
|---|
|  | 380 | cout << Verbose(0) << "Alignment vector: "; | 
|---|
|  | 381 | n.Output((ofstream *)&cout); | 
|---|
|  | 382 | cout << Verbose(0) << endl; | 
|---|
|  | 383 | mol->Align(&n); | 
|---|
| [14de469] | 384 | }; | 
|---|
|  | 385 |  | 
|---|
|  | 386 | /** Submenu for mirroring the atoms in the molecule. | 
|---|
| [1907a7] | 387 | * \param *mol molecule with all the atoms | 
|---|
| [14de469] | 388 | */ | 
|---|
| [7f3b9d] | 389 | static void MirrorAtoms(molecule *mol) | 
|---|
| [14de469] | 390 | { | 
|---|
| [6ac7ee] | 391 | atom *first, *second, *third; | 
|---|
|  | 392 | Vector n; | 
|---|
|  | 393 | char choice;    // menu choice char | 
|---|
|  | 394 |  | 
|---|
|  | 395 | cout << Verbose(0) << "===========MIRROR ATOMS=========================" << endl; | 
|---|
|  | 396 | cout << Verbose(0) << " a - state three atoms defining mirror plane" << endl; | 
|---|
|  | 397 | cout << Verbose(0) << " b - state normal vector of mirror plane" << endl; | 
|---|
|  | 398 | cout << Verbose(0) << " c - state two atoms in normal direction" << endl; | 
|---|
|  | 399 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 400 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 401 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 402 | cin >> choice; | 
|---|
|  | 403 |  | 
|---|
|  | 404 | switch (choice) { | 
|---|
|  | 405 | default: | 
|---|
|  | 406 | case 'a': // three atoms defining mirror plane | 
|---|
|  | 407 | first = mol->AskAtom("Enter first atom: "); | 
|---|
|  | 408 | second = mol->AskAtom("Enter second atom: "); | 
|---|
|  | 409 | third = mol->AskAtom("Enter third atom: "); | 
|---|
|  | 410 |  | 
|---|
|  | 411 | n.MakeNormalVector((const Vector *)&first->x,(const Vector *)&second->x,(const Vector *)&third->x); | 
|---|
|  | 412 | break; | 
|---|
|  | 413 | case 'b': // normal vector of mirror plane | 
|---|
|  | 414 | cout << Verbose(0) << "Enter normal vector of mirror plane." << endl; | 
|---|
|  | 415 | n.AskPosition(mol->cell_size,0); | 
|---|
|  | 416 | n.Normalize(); | 
|---|
|  | 417 | break; | 
|---|
|  | 418 | case 'c': // three atoms defining mirror plane | 
|---|
|  | 419 | first = mol->AskAtom("Enter first atom: "); | 
|---|
|  | 420 | second = mol->AskAtom("Enter second atom: "); | 
|---|
|  | 421 |  | 
|---|
|  | 422 | n.CopyVector((const Vector *)&first->x); | 
|---|
|  | 423 | n.SubtractVector((const Vector *)&second->x); | 
|---|
|  | 424 | n.Normalize(); | 
|---|
|  | 425 | break; | 
|---|
|  | 426 | }; | 
|---|
|  | 427 | cout << Verbose(0) << "Normal vector: "; | 
|---|
|  | 428 | n.Output((ofstream *)&cout); | 
|---|
|  | 429 | cout << Verbose(0) << endl; | 
|---|
|  | 430 | mol->Mirror((const Vector *)&n); | 
|---|
| [14de469] | 431 | }; | 
|---|
|  | 432 |  | 
|---|
|  | 433 | /** Submenu for removing the atoms from the molecule. | 
|---|
| [1907a7] | 434 | * \param *mol molecule with all the atoms | 
|---|
| [14de469] | 435 | */ | 
|---|
| [7f3b9d] | 436 | static void RemoveAtoms(molecule *mol) | 
|---|
| [14de469] | 437 | { | 
|---|
| [6ac7ee] | 438 | atom *first, *second; | 
|---|
|  | 439 | int axis; | 
|---|
|  | 440 | double tmp1, tmp2; | 
|---|
|  | 441 | char choice;    // menu choice char | 
|---|
|  | 442 |  | 
|---|
|  | 443 | cout << Verbose(0) << "===========REMOVE ATOMS=========================" << endl; | 
|---|
|  | 444 | cout << Verbose(0) << " a - state atom for removal by number" << endl; | 
|---|
|  | 445 | cout << Verbose(0) << " b - keep only in radius around atom" << endl; | 
|---|
|  | 446 | cout << Verbose(0) << " c - remove this with one axis greater value" << endl; | 
|---|
|  | 447 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 448 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 449 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 450 | cin >> choice; | 
|---|
|  | 451 |  | 
|---|
|  | 452 | switch (choice) { | 
|---|
|  | 453 | default: | 
|---|
|  | 454 | case 'a': | 
|---|
|  | 455 | if (mol->RemoveAtom(mol->AskAtom("Enter number of atom within molecule: "))) | 
|---|
|  | 456 | cout << Verbose(1) << "Atom removed." << endl; | 
|---|
|  | 457 | else | 
|---|
|  | 458 | cout << Verbose(1) << "Atom not found." << endl; | 
|---|
|  | 459 | break; | 
|---|
|  | 460 | case 'b': | 
|---|
|  | 461 | second = mol->AskAtom("Enter number of atom as reference point: "); | 
|---|
|  | 462 | cout << Verbose(0) << "Enter radius: "; | 
|---|
|  | 463 | cin >> tmp1; | 
|---|
|  | 464 | first = mol->start; | 
|---|
|  | 465 | while(first->next != mol->end) { | 
|---|
|  | 466 | first = first->next; | 
|---|
|  | 467 | if (first->x.DistanceSquared((const Vector *)&second->x) > tmp1*tmp1) // distance to first above radius ... | 
|---|
|  | 468 | mol->RemoveAtom(first); | 
|---|
|  | 469 | } | 
|---|
|  | 470 | break; | 
|---|
|  | 471 | case 'c': | 
|---|
|  | 472 | cout << Verbose(0) << "Which axis is it: "; | 
|---|
|  | 473 | cin >> axis; | 
|---|
|  | 474 | cout << Verbose(0) << "Left inward boundary: "; | 
|---|
|  | 475 | cin >> tmp1; | 
|---|
|  | 476 | cout << Verbose(0) << "Right inward boundary: "; | 
|---|
|  | 477 | cin >> tmp2; | 
|---|
|  | 478 | first = mol->start; | 
|---|
|  | 479 | while(first->next != mol->end) { | 
|---|
|  | 480 | first = first->next; | 
|---|
|  | 481 | if ((first->x.x[axis] > tmp2) || (first->x.x[axis] < tmp1)) // out of boundary ... | 
|---|
|  | 482 | mol->RemoveAtom(first); | 
|---|
|  | 483 | } | 
|---|
|  | 484 | break; | 
|---|
|  | 485 | }; | 
|---|
|  | 486 | //mol->Output((ofstream *)&cout); | 
|---|
|  | 487 | choice = 'r'; | 
|---|
| [14de469] | 488 | }; | 
|---|
|  | 489 |  | 
|---|
|  | 490 | /** Submenu for measuring out the atoms in the molecule. | 
|---|
|  | 491 | * \param *periode periodentafel | 
|---|
| [1907a7] | 492 | * \param *mol molecule with all the atoms | 
|---|
| [14de469] | 493 | */ | 
|---|
| [d52ea1b] | 494 | static void MeasureAtoms(periodentafel *periode, molecule *mol, config *configuration) | 
|---|
| [14de469] | 495 | { | 
|---|
| [6ac7ee] | 496 | atom *first, *second, *third; | 
|---|
|  | 497 | Vector x,y; | 
|---|
|  | 498 | double min[256], tmp1, tmp2, tmp3; | 
|---|
|  | 499 | int Z; | 
|---|
|  | 500 | char choice;    // menu choice char | 
|---|
|  | 501 |  | 
|---|
|  | 502 | cout << Verbose(0) << "===========MEASURE ATOMS=========================" << endl; | 
|---|
|  | 503 | cout << Verbose(0) << " a - calculate bond length between one atom and all others" << endl; | 
|---|
|  | 504 | cout << Verbose(0) << " b - calculate bond length between two atoms" << endl; | 
|---|
|  | 505 | cout << Verbose(0) << " c - calculate bond angle" << endl; | 
|---|
|  | 506 | cout << Verbose(0) << " d - calculate principal axis of the system" << endl; | 
|---|
|  | 507 | cout << Verbose(0) << " e - calculate volume of the convex envelope" << endl; | 
|---|
|  | 508 | cout << Verbose(0) << " f - calculate temperature from current velocity" << endl; | 
|---|
|  | 509 | cout << Verbose(0) << " g - output all temperatures per step from velocities" << endl; | 
|---|
|  | 510 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 511 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 512 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 513 | cin >> choice; | 
|---|
|  | 514 |  | 
|---|
|  | 515 | switch(choice) { | 
|---|
|  | 516 | default: | 
|---|
|  | 517 | cout << Verbose(1) << "Not a valid choice." << endl; | 
|---|
|  | 518 | break; | 
|---|
|  | 519 | case 'a': | 
|---|
|  | 520 | first = mol->AskAtom("Enter first atom: "); | 
|---|
|  | 521 | for (int i=MAX_ELEMENTS;i--;) | 
|---|
|  | 522 | min[i] = 0.; | 
|---|
|  | 523 |  | 
|---|
|  | 524 | second = mol->start; | 
|---|
|  | 525 | while ((second->next != mol->end)) { | 
|---|
|  | 526 | second = second->next; // advance | 
|---|
|  | 527 | Z = second->type->Z; | 
|---|
|  | 528 | tmp1 = 0.; | 
|---|
|  | 529 | if (first != second) { | 
|---|
|  | 530 | x.CopyVector((const Vector *)&first->x); | 
|---|
|  | 531 | x.SubtractVector((const Vector *)&second->x); | 
|---|
|  | 532 | tmp1 = x.Norm(); | 
|---|
|  | 533 | } | 
|---|
|  | 534 | if ((tmp1 != 0.) && ((min[Z] == 0.) || (tmp1 < min[Z]))) min[Z] = tmp1; | 
|---|
|  | 535 | //cout << Verbose(0) << "Bond length between Atom " << first->nr << " and " << second->nr << ": " << tmp1 << " a.u." << endl; | 
|---|
|  | 536 | } | 
|---|
|  | 537 | for (int i=MAX_ELEMENTS;i--;) | 
|---|
|  | 538 | if (min[i] != 0.) cout << Verbose(0) << "Minimum Bond length between " << first->type->name << " Atom " << first->nr << " and next Ion of type " << (periode->FindElement(i))->name << ": " << min[i] << " a.u." << endl; | 
|---|
|  | 539 | break; | 
|---|
|  | 540 |  | 
|---|
|  | 541 | case 'b': | 
|---|
|  | 542 | first = mol->AskAtom("Enter first atom: "); | 
|---|
|  | 543 | second = mol->AskAtom("Enter second atom: "); | 
|---|
|  | 544 | for (int i=NDIM;i--;) | 
|---|
|  | 545 | min[i] = 0.; | 
|---|
|  | 546 | x.CopyVector((const Vector *)&first->x); | 
|---|
|  | 547 | x.SubtractVector((const Vector *)&second->x); | 
|---|
|  | 548 | tmp1 = x.Norm(); | 
|---|
|  | 549 | cout << Verbose(1) << "Distance vector is "; | 
|---|
|  | 550 | x.Output((ofstream *)&cout); | 
|---|
|  | 551 | cout << "." << endl << "Norm of distance is " << tmp1 << "." << endl; | 
|---|
|  | 552 | break; | 
|---|
|  | 553 |  | 
|---|
|  | 554 | case 'c': | 
|---|
|  | 555 | cout << Verbose(0) << "Evaluating bond angle between three - first, central, last - atoms." << endl; | 
|---|
|  | 556 | first = mol->AskAtom("Enter first atom: "); | 
|---|
|  | 557 | second = mol->AskAtom("Enter central atom: "); | 
|---|
|  | 558 | third   = mol->AskAtom("Enter last atom: "); | 
|---|
|  | 559 | tmp1 = tmp2 = tmp3 = 0.; | 
|---|
|  | 560 | x.CopyVector((const Vector *)&first->x); | 
|---|
|  | 561 | x.SubtractVector((const Vector *)&second->x); | 
|---|
|  | 562 | y.CopyVector((const Vector *)&third->x); | 
|---|
|  | 563 | y.SubtractVector((const Vector *)&second->x); | 
|---|
|  | 564 | cout << Verbose(0) << "Bond angle between first atom Nr." << first->nr << ", central atom Nr." << second->nr << " and last atom Nr." << third->nr << ": "; | 
|---|
|  | 565 | cout << Verbose(0) << (acos(x.ScalarProduct((const Vector *)&y)/(y.Norm()*x.Norm()))/M_PI*180.) << " degrees" << endl; | 
|---|
|  | 566 | break; | 
|---|
|  | 567 | case 'd': | 
|---|
|  | 568 | cout << Verbose(0) << "Evaluating prinicipal axis." << endl; | 
|---|
|  | 569 | cout << Verbose(0) << "Shall we rotate? [0/1]: "; | 
|---|
|  | 570 | cin >> Z; | 
|---|
|  | 571 | if ((Z >=0) && (Z <=1)) | 
|---|
|  | 572 | mol->PrincipalAxisSystem((ofstream *)&cout, (bool)Z); | 
|---|
|  | 573 | else | 
|---|
|  | 574 | mol->PrincipalAxisSystem((ofstream *)&cout, false); | 
|---|
|  | 575 | break; | 
|---|
|  | 576 | case 'e': | 
|---|
|  | 577 | cout << Verbose(0) << "Evaluating volume of the convex envelope."; | 
|---|
|  | 578 | VolumeOfConvexEnvelope((ofstream *)&cout, NULL, configuration, NULL, mol); | 
|---|
|  | 579 | break; | 
|---|
|  | 580 | case 'f': | 
|---|
|  | 581 | mol->OutputTemperatureFromTrajectories((ofstream *)&cout, mol->MDSteps-1, mol->MDSteps, (ofstream *)&cout); | 
|---|
|  | 582 | break; | 
|---|
|  | 583 | case 'g': | 
|---|
|  | 584 | { | 
|---|
|  | 585 | char filename[255]; | 
|---|
|  | 586 | cout << "Please enter filename: " << endl; | 
|---|
|  | 587 | cin >> filename; | 
|---|
|  | 588 | cout << Verbose(1) << "Storing temperatures in " << filename << "." << endl; | 
|---|
|  | 589 | ofstream *output = new ofstream(filename, ios::trunc); | 
|---|
|  | 590 | if (!mol->OutputTemperatureFromTrajectories((ofstream *)&cout, 0, mol->MDSteps, output)) | 
|---|
|  | 591 | cout << Verbose(2) << "File could not be written." << endl; | 
|---|
|  | 592 | else | 
|---|
|  | 593 | cout << Verbose(2) << "File stored." << endl; | 
|---|
|  | 594 | output->close(); | 
|---|
|  | 595 | delete(output); | 
|---|
|  | 596 | } | 
|---|
|  | 597 | break; | 
|---|
|  | 598 | } | 
|---|
| [14de469] | 599 | }; | 
|---|
|  | 600 |  | 
|---|
|  | 601 | /** Submenu for measuring out the atoms in the molecule. | 
|---|
| [1907a7] | 602 | * \param *mol molecule with all the atoms | 
|---|
| [14de469] | 603 | * \param *configuration configuration structure for the to be written config files of all fragments | 
|---|
|  | 604 | */ | 
|---|
| [7f3b9d] | 605 | static void FragmentAtoms(molecule *mol, config *configuration) | 
|---|
| [14de469] | 606 | { | 
|---|
| [6ac7ee] | 607 | int Order1; | 
|---|
|  | 608 | clock_t start, end; | 
|---|
|  | 609 |  | 
|---|
|  | 610 | cout << Verbose(0) << "Fragmenting molecule with current connection matrix ..." << endl; | 
|---|
|  | 611 | cout << Verbose(0) << "What's the desired bond order: "; | 
|---|
|  | 612 | cin >> Order1; | 
|---|
|  | 613 | if (mol->first->next != mol->last) {    // there are bonds | 
|---|
|  | 614 | start = clock(); | 
|---|
|  | 615 | mol->FragmentMolecule((ofstream *)&cout, Order1, configuration); | 
|---|
|  | 616 | end = clock(); | 
|---|
|  | 617 | cout << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl; | 
|---|
|  | 618 | } else | 
|---|
|  | 619 | cout << Verbose(0) << "Connection matrix has not yet been generated!" << endl; | 
|---|
| [14de469] | 620 | }; | 
|---|
|  | 621 |  | 
|---|
| [1907a7] | 622 | /********************************************** Submenu routine **************************************/ | 
|---|
|  | 623 |  | 
|---|
|  | 624 | /** Submenu for manipulating atoms. | 
|---|
|  | 625 | * \param *periode periodentafel | 
|---|
|  | 626 | * \param *molecules list of molecules whose atoms are to be manipulated | 
|---|
|  | 627 | */ | 
|---|
|  | 628 | static void ManipulateAtoms(periodentafel *periode, MoleculeListClass *molecules, config *configuration) | 
|---|
|  | 629 | { | 
|---|
| [4777e9] | 630 | atom *first, *second; | 
|---|
| [1907a7] | 631 | molecule *mol = NULL; | 
|---|
|  | 632 | Vector x,y,z,n; // coordinates for absolute point in cell volume | 
|---|
|  | 633 | double *factor; // unit factor if desired | 
|---|
|  | 634 | double bond, min_bond; | 
|---|
|  | 635 | char choice;  // menu choice char | 
|---|
|  | 636 | bool valid; | 
|---|
|  | 637 |  | 
|---|
|  | 638 | cout << Verbose(0) << "=========MANIPULATE ATOMS======================" << endl; | 
|---|
|  | 639 | cout << Verbose(0) << "a - add an atom" << endl; | 
|---|
|  | 640 | cout << Verbose(0) << "r - remove an atom" << endl; | 
|---|
|  | 641 | cout << Verbose(0) << "b - scale a bond between atoms" << endl; | 
|---|
|  | 642 | cout << Verbose(0) << "u - change an atoms element" << endl; | 
|---|
|  | 643 | cout << Verbose(0) << "l - measure lengths, angles, ... for an atom" << endl; | 
|---|
|  | 644 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 645 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 646 | if (molecules->NumberOfActiveMolecules() > 0) | 
|---|
|  | 647 | cout << Verbose(0) << "WARNING: There is more than one molecule active! Atoms will be added to each." << endl; | 
|---|
|  | 648 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 649 | cin >> choice; | 
|---|
|  | 650 |  | 
|---|
|  | 651 | switch (choice) { | 
|---|
|  | 652 | default: | 
|---|
|  | 653 | cout << Verbose(0) << "Not a valid choice." << endl; | 
|---|
|  | 654 | break; | 
|---|
|  | 655 |  | 
|---|
|  | 656 | case 'a': // add atom | 
|---|
|  | 657 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 658 | mol = *ListRunner; | 
|---|
|  | 659 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 660 | AddAtoms(periode, mol); | 
|---|
|  | 661 | } | 
|---|
|  | 662 | break; | 
|---|
|  | 663 |  | 
|---|
|  | 664 | case 'b': // scale a bond | 
|---|
|  | 665 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 666 | mol = *ListRunner; | 
|---|
|  | 667 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 668 | cout << Verbose(0) << "Scaling bond length between two atoms." << endl; | 
|---|
|  | 669 | first = mol->AskAtom("Enter first (fixed) atom: "); | 
|---|
|  | 670 | second = mol->AskAtom("Enter second (shifting) atom: "); | 
|---|
|  | 671 | min_bond = 0.; | 
|---|
|  | 672 | for (int i=NDIM;i--;) | 
|---|
|  | 673 | min_bond += (first->x.x[i]-second->x.x[i])*(first->x.x[i] - second->x.x[i]); | 
|---|
|  | 674 | min_bond = sqrt(min_bond); | 
|---|
|  | 675 | cout << Verbose(0) << "Current Bond length between " << first->type->name << " Atom " << first->nr << " and " << second->type->name << " Atom " << second->nr << ": " << min_bond << " a.u." << endl; | 
|---|
|  | 676 | cout << Verbose(0) << "Enter new bond length [a.u.]: "; | 
|---|
|  | 677 | cin >> bond; | 
|---|
|  | 678 | for (int i=NDIM;i--;) { | 
|---|
|  | 679 | second->x.x[i] -= (second->x.x[i]-first->x.x[i])/min_bond*(min_bond-bond); | 
|---|
|  | 680 | } | 
|---|
|  | 681 | //cout << Verbose(0) << "New coordinates of Atom " << second->nr << " are: "; | 
|---|
|  | 682 | //second->Output(second->type->No, 1, (ofstream *)&cout); | 
|---|
|  | 683 | } | 
|---|
|  | 684 | break; | 
|---|
|  | 685 |  | 
|---|
|  | 686 | case 'c': // unit scaling of the metric | 
|---|
|  | 687 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 688 | mol = *ListRunner; | 
|---|
|  | 689 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 690 | cout << Verbose(0) << "Angstroem -> Bohrradius: 1.8897261\t\tBohrradius -> Angstroem: 0.52917721" << endl; | 
|---|
|  | 691 | cout << Verbose(0) << "Enter three factors: "; | 
|---|
|  | 692 | factor = new double[NDIM]; | 
|---|
|  | 693 | cin >> factor[0]; | 
|---|
|  | 694 | cin >> factor[1]; | 
|---|
|  | 695 | cin >> factor[2]; | 
|---|
|  | 696 | valid = true; | 
|---|
|  | 697 | mol->Scale(&factor); | 
|---|
|  | 698 | delete[](factor); | 
|---|
|  | 699 | } | 
|---|
|  | 700 | break; | 
|---|
|  | 701 |  | 
|---|
|  | 702 | case 'l': // measure distances or angles | 
|---|
|  | 703 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 704 | mol = *ListRunner; | 
|---|
|  | 705 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 706 | MeasureAtoms(periode, mol, configuration); | 
|---|
|  | 707 | } | 
|---|
|  | 708 | break; | 
|---|
|  | 709 |  | 
|---|
|  | 710 | case 'r': // remove atom | 
|---|
|  | 711 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 712 | mol = *ListRunner; | 
|---|
|  | 713 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 714 | RemoveAtoms(mol); | 
|---|
|  | 715 | } | 
|---|
|  | 716 | break; | 
|---|
|  | 717 |  | 
|---|
|  | 718 | case 'u': // change an atom's element | 
|---|
|  | 719 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 720 | int Z; | 
|---|
|  | 721 | mol = *ListRunner; | 
|---|
|  | 722 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 723 | first = NULL; | 
|---|
|  | 724 | do { | 
|---|
|  | 725 | cout << Verbose(0) << "Change the element of which atom: "; | 
|---|
|  | 726 | cin >> Z; | 
|---|
|  | 727 | } while ((first = mol->FindAtom(Z)) == NULL); | 
|---|
|  | 728 | cout << Verbose(0) << "New element by atomic number Z: "; | 
|---|
|  | 729 | cin >> Z; | 
|---|
|  | 730 | first->type = periode->FindElement(Z); | 
|---|
|  | 731 | cout << Verbose(0) << "Atom " << first->nr << "'s element is " << first->type->name << "." << endl; | 
|---|
|  | 732 | } | 
|---|
|  | 733 | break; | 
|---|
|  | 734 | } | 
|---|
|  | 735 | }; | 
|---|
|  | 736 |  | 
|---|
|  | 737 | /** Submenu for manipulating molecules. | 
|---|
|  | 738 | * \param *periode periodentafel | 
|---|
|  | 739 | * \param *molecules list of molecule to manipulate | 
|---|
|  | 740 | */ | 
|---|
|  | 741 | static void ManipulateMolecules(periodentafel *periode, MoleculeListClass *molecules, config *configuration) | 
|---|
|  | 742 | { | 
|---|
| [4777e9] | 743 | atom *first = NULL; | 
|---|
| [1907a7] | 744 | Vector x,y,z,n; // coordinates for absolute point in cell volume | 
|---|
|  | 745 | int j, axis, count, faktor; | 
|---|
|  | 746 | char choice;  // menu choice char | 
|---|
|  | 747 | molecule *mol = NULL; | 
|---|
|  | 748 | element **Elements; | 
|---|
|  | 749 | Vector **vectors; | 
|---|
|  | 750 | MoleculeLeafClass *Subgraphs = NULL; | 
|---|
|  | 751 |  | 
|---|
|  | 752 | cout << Verbose(0) << "=========MANIPULATE GLOBALLY===================" << endl; | 
|---|
|  | 753 | cout << Verbose(0) << "c - scale by unit transformation" << endl; | 
|---|
|  | 754 | cout << Verbose(0) << "d - duplicate molecule/periodic cell" << endl; | 
|---|
|  | 755 | cout << Verbose(0) << "f - fragment molecule many-body bond order style" << endl; | 
|---|
|  | 756 | cout << Verbose(0) << "g - center atoms in box" << endl; | 
|---|
|  | 757 | cout << Verbose(0) << "i - realign molecule" << endl; | 
|---|
|  | 758 | cout << Verbose(0) << "m - mirror all molecules" << endl; | 
|---|
|  | 759 | cout << Verbose(0) << "o - create connection matrix" << endl; | 
|---|
|  | 760 | cout << Verbose(0) << "t - translate molecule by vector" << endl; | 
|---|
|  | 761 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 762 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 763 | if (molecules->NumberOfActiveMolecules() > 0) | 
|---|
|  | 764 | cout << Verbose(0) << "WARNING: There is more than one molecule active! Atoms will be added to each." << endl; | 
|---|
|  | 765 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 766 | cin >> choice; | 
|---|
|  | 767 |  | 
|---|
|  | 768 | switch (choice) { | 
|---|
|  | 769 | default: | 
|---|
|  | 770 | cout << Verbose(0) << "Not a valid choice." << endl; | 
|---|
|  | 771 | break; | 
|---|
|  | 772 |  | 
|---|
|  | 773 | case 'd': // duplicate the periodic cell along a given axis, given times | 
|---|
|  | 774 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 775 | mol = *ListRunner; | 
|---|
|  | 776 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 777 | cout << Verbose(0) << "State the axis [(+-)123]: "; | 
|---|
|  | 778 | cin >> axis; | 
|---|
|  | 779 | cout << Verbose(0) << "State the factor: "; | 
|---|
|  | 780 | cin >> faktor; | 
|---|
|  | 781 |  | 
|---|
|  | 782 | mol->CountAtoms((ofstream *)&cout); // recount atoms | 
|---|
|  | 783 | if (mol->AtomCount != 0) {  // if there is more than none | 
|---|
|  | 784 | count = mol->AtomCount;  // is changed becausing of adding, thus has to be stored away beforehand | 
|---|
|  | 785 | Elements = new element *[count]; | 
|---|
|  | 786 | vectors = new Vector *[count]; | 
|---|
|  | 787 | j = 0; | 
|---|
|  | 788 | first = mol->start; | 
|---|
|  | 789 | while (first->next != mol->end) { // make a list of all atoms with coordinates and element | 
|---|
|  | 790 | first = first->next; | 
|---|
|  | 791 | Elements[j] = first->type; | 
|---|
|  | 792 | vectors[j] = &first->x; | 
|---|
|  | 793 | j++; | 
|---|
|  | 794 | } | 
|---|
|  | 795 | if (count != j) | 
|---|
|  | 796 | cout << Verbose(0) << "ERROR: AtomCount " << count << " is not equal to number of atoms in molecule " << j << "!" << endl; | 
|---|
|  | 797 | x.Zero(); | 
|---|
|  | 798 | y.Zero(); | 
|---|
|  | 799 | y.x[abs(axis)-1] = mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] * abs(axis)/axis; // last term is for sign, first is for magnitude | 
|---|
|  | 800 | for (int i=1;i<faktor;i++) {  // then add this list with respective translation factor times | 
|---|
|  | 801 | x.AddVector(&y); // per factor one cell width further | 
|---|
|  | 802 | for (int k=count;k--;) { // go through every atom of the original cell | 
|---|
|  | 803 | first = new atom(); // create a new body | 
|---|
|  | 804 | first->x.CopyVector(vectors[k]);  // use coordinate of original atom | 
|---|
|  | 805 | first->x.AddVector(&x);     // translate the coordinates | 
|---|
|  | 806 | first->type = Elements[k];  // insert original element | 
|---|
|  | 807 | mol->AddAtom(first);        // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...) | 
|---|
|  | 808 | } | 
|---|
|  | 809 | } | 
|---|
|  | 810 | if (mol->first->next != mol->last) // if connect matrix is present already, redo it | 
|---|
|  | 811 | mol->CreateAdjacencyList((ofstream *)&cout, mol->BondDistance, configuration->GetIsAngstroem()); | 
|---|
|  | 812 | // free memory | 
|---|
|  | 813 | delete[](Elements); | 
|---|
|  | 814 | delete[](vectors); | 
|---|
|  | 815 | // correct cell size | 
|---|
|  | 816 | if (axis < 0) { // if sign was negative, we have to translate everything | 
|---|
|  | 817 | x.Zero(); | 
|---|
|  | 818 | x.AddVector(&y); | 
|---|
|  | 819 | x.Scale(-(faktor-1)); | 
|---|
|  | 820 | mol->Translate(&x); | 
|---|
|  | 821 | } | 
|---|
|  | 822 | mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] *= faktor; | 
|---|
|  | 823 | } | 
|---|
|  | 824 | } | 
|---|
|  | 825 | break; | 
|---|
|  | 826 |  | 
|---|
|  | 827 | case 'f': | 
|---|
|  | 828 | FragmentAtoms(mol, configuration); | 
|---|
|  | 829 | break; | 
|---|
|  | 830 |  | 
|---|
|  | 831 | case 'g': // center the atoms | 
|---|
|  | 832 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 833 | mol = *ListRunner; | 
|---|
|  | 834 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 835 | CenterAtoms(mol); | 
|---|
|  | 836 | } | 
|---|
|  | 837 | break; | 
|---|
|  | 838 |  | 
|---|
|  | 839 | case 'i': // align all atoms | 
|---|
|  | 840 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 841 | mol = *ListRunner; | 
|---|
|  | 842 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 843 | AlignAtoms(periode, mol); | 
|---|
|  | 844 | } | 
|---|
|  | 845 | break; | 
|---|
|  | 846 |  | 
|---|
|  | 847 | case 'm': // mirror atoms along a given axis | 
|---|
|  | 848 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 849 | mol = *ListRunner; | 
|---|
|  | 850 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 851 | MirrorAtoms(mol); | 
|---|
|  | 852 | } | 
|---|
|  | 853 | break; | 
|---|
|  | 854 |  | 
|---|
|  | 855 | case 'o': // create the connection matrix | 
|---|
|  | 856 | { | 
|---|
|  | 857 | double bonddistance; | 
|---|
|  | 858 | clock_t start,end; | 
|---|
|  | 859 | cout << Verbose(0) << "What's the maximum bond distance: "; | 
|---|
|  | 860 | cin >> bonddistance; | 
|---|
|  | 861 | start = clock(); | 
|---|
|  | 862 | mol->CreateAdjacencyList((ofstream *)&cout, bonddistance, configuration->GetIsAngstroem()); | 
|---|
|  | 863 | mol->CreateListOfBondsPerAtom((ofstream *)&cout); | 
|---|
|  | 864 | end = clock(); | 
|---|
|  | 865 | cout << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl; | 
|---|
|  | 866 | } | 
|---|
|  | 867 | break; | 
|---|
|  | 868 |  | 
|---|
|  | 869 | case 't': // translate all atoms | 
|---|
|  | 870 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) { | 
|---|
|  | 871 | mol = *ListRunner; | 
|---|
|  | 872 | cout << Verbose(0) << "Current molecule is: " << mol->IndexNr << "\t" << mol->name << endl; | 
|---|
|  | 873 | cout << Verbose(0) << "Enter translation vector." << endl; | 
|---|
|  | 874 | x.AskPosition(mol->cell_size,0); | 
|---|
|  | 875 | mol->Translate((const Vector *)&x); | 
|---|
|  | 876 | } | 
|---|
|  | 877 | break; | 
|---|
|  | 878 | } | 
|---|
|  | 879 | // Free all | 
|---|
|  | 880 | if (Subgraphs != NULL) {  // free disconnected subgraph list of DFS analysis was performed | 
|---|
|  | 881 | while (Subgraphs->next != NULL) { | 
|---|
|  | 882 | Subgraphs = Subgraphs->next; | 
|---|
|  | 883 | delete(Subgraphs->previous); | 
|---|
|  | 884 | } | 
|---|
|  | 885 | delete(Subgraphs); | 
|---|
|  | 886 | } | 
|---|
|  | 887 | }; | 
|---|
|  | 888 |  | 
|---|
|  | 889 |  | 
|---|
|  | 890 | /** Submenu for creating new molecules. | 
|---|
|  | 891 | * \param *periode periodentafel | 
|---|
|  | 892 | * \param *molecules list of molecules to add to | 
|---|
|  | 893 | */ | 
|---|
|  | 894 | static void EditMolecules(periodentafel *periode, MoleculeListClass *molecules) | 
|---|
|  | 895 | { | 
|---|
|  | 896 | char choice;  // menu choice char | 
|---|
|  | 897 | Vector Center; | 
|---|
|  | 898 | int nr, count; | 
|---|
|  | 899 | molecule *mol = NULL; | 
|---|
|  | 900 | char filename[MAXSTRINGSIZE]; | 
|---|
|  | 901 |  | 
|---|
|  | 902 | cout << Verbose(0) << "==========Edit MOLECULES=====================" << endl; | 
|---|
|  | 903 | cout << Verbose(0) << "c - create new molecule" << endl; | 
|---|
|  | 904 | cout << Verbose(0) << "l - load molecule from xyz file" << endl; | 
|---|
|  | 905 | cout << Verbose(0) << "n - change molecule's name" << endl; | 
|---|
|  | 906 | cout << Verbose(0) << "N - give molecules filename" << endl; | 
|---|
|  | 907 | cout << Verbose(0) << "p - parse xyz file into molecule" << endl; | 
|---|
|  | 908 | cout << Verbose(0) << "r - remove a molecule" << endl; | 
|---|
|  | 909 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 910 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 911 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 912 | cin >> choice; | 
|---|
|  | 913 |  | 
|---|
|  | 914 | switch (choice) { | 
|---|
|  | 915 | default: | 
|---|
|  | 916 | cout << Verbose(0) << "Not a valid choice." << endl; | 
|---|
|  | 917 | break; | 
|---|
|  | 918 | case 'c': | 
|---|
|  | 919 | mol = new molecule(periode); | 
|---|
|  | 920 | molecules->insert(mol); | 
|---|
|  | 921 | break; | 
|---|
|  | 922 |  | 
|---|
|  | 923 | case 'l': // laod from XYZ file | 
|---|
|  | 924 | cout << Verbose(0) << "Format should be XYZ with: ShorthandOfElement\tX\tY\tZ" << endl; | 
|---|
|  | 925 | mol = new molecule(periode); | 
|---|
|  | 926 | do { | 
|---|
|  | 927 | cout << Verbose(0) << "Enter file name: "; | 
|---|
|  | 928 | cin >> filename; | 
|---|
|  | 929 | } while (!mol->AddXYZFile(filename)); | 
|---|
|  | 930 | mol->SetNameFromFilename(filename); | 
|---|
|  | 931 | // center at set box dimensions | 
|---|
|  | 932 | mol->CenterEdge((ofstream *)&cout, &Center); | 
|---|
|  | 933 | mol->cell_size[0] = Center.x[0]; | 
|---|
|  | 934 | mol->cell_size[1] = 0; | 
|---|
|  | 935 | mol->cell_size[2] = Center.x[1]; | 
|---|
|  | 936 | mol->cell_size[3] = 0; | 
|---|
|  | 937 | mol->cell_size[4] = 0; | 
|---|
|  | 938 | mol->cell_size[5] = Center.x[2]; | 
|---|
|  | 939 | molecules->insert(mol); | 
|---|
|  | 940 | break; | 
|---|
|  | 941 |  | 
|---|
|  | 942 | case 'n': | 
|---|
|  | 943 | do { | 
|---|
|  | 944 | cout << Verbose(0) << "Enter index of molecule: "; | 
|---|
|  | 945 | cin >> nr; | 
|---|
|  | 946 | mol = molecules->ReturnIndex(nr); | 
|---|
|  | 947 | } while (mol != NULL); | 
|---|
|  | 948 | cout << Verbose(0) << "Enter name: "; | 
|---|
|  | 949 | cin >> filename; | 
|---|
|  | 950 | strcpy(mol->name, filename); | 
|---|
|  | 951 | break; | 
|---|
|  | 952 |  | 
|---|
|  | 953 | case 'N': | 
|---|
|  | 954 | do { | 
|---|
|  | 955 | cout << Verbose(0) << "Enter index of molecule: "; | 
|---|
|  | 956 | cin >> nr; | 
|---|
|  | 957 | mol = molecules->ReturnIndex(nr); | 
|---|
|  | 958 | } while (mol != NULL); | 
|---|
|  | 959 | cout << Verbose(0) << "Enter name: "; | 
|---|
|  | 960 | cin >> filename; | 
|---|
|  | 961 | mol->SetNameFromFilename(filename); | 
|---|
|  | 962 | break; | 
|---|
|  | 963 |  | 
|---|
|  | 964 | case 'p': // parse XYZ file | 
|---|
|  | 965 | mol = NULL; | 
|---|
|  | 966 | do { | 
|---|
|  | 967 | cout << Verbose(0) << "Enter index of molecule: "; | 
|---|
|  | 968 | cin >> nr; | 
|---|
|  | 969 | mol = molecules->ReturnIndex(nr); | 
|---|
|  | 970 | } while (mol == NULL); | 
|---|
|  | 971 | cout << Verbose(0) << "Format should be XYZ with: ShorthandOfElement\tX\tY\tZ" << endl; | 
|---|
|  | 972 | do { | 
|---|
|  | 973 | cout << Verbose(0) << "Enter file name: "; | 
|---|
|  | 974 | cin >> filename; | 
|---|
|  | 975 | } while (!mol->AddXYZFile(filename)); | 
|---|
|  | 976 | mol->SetNameFromFilename(filename); | 
|---|
|  | 977 | break; | 
|---|
|  | 978 |  | 
|---|
|  | 979 | case 'r': | 
|---|
|  | 980 | cout << Verbose(0) << "Enter index of molecule: "; | 
|---|
|  | 981 | cin >> nr; | 
|---|
|  | 982 | count = 1; | 
|---|
|  | 983 | MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); | 
|---|
|  | 984 | for(; ((ListRunner != molecules->ListOfMolecules.end()) && (count < nr)); ListRunner++); | 
|---|
|  | 985 | mol = *ListRunner; | 
|---|
|  | 986 | if (count == nr) { | 
|---|
|  | 987 | molecules->ListOfMolecules.erase(ListRunner); | 
|---|
|  | 988 | delete(mol); | 
|---|
|  | 989 | } | 
|---|
|  | 990 | break; | 
|---|
|  | 991 | } | 
|---|
|  | 992 | }; | 
|---|
|  | 993 |  | 
|---|
|  | 994 |  | 
|---|
|  | 995 | /** Submenu for merging molecules. | 
|---|
|  | 996 | * \param *periode periodentafel | 
|---|
|  | 997 | * \param *molecules list of molecules to add to | 
|---|
|  | 998 | */ | 
|---|
|  | 999 | static void MergeMolecules(periodentafel *periode, MoleculeListClass *molecules) | 
|---|
|  | 1000 | { | 
|---|
|  | 1001 | char choice;  // menu choice char | 
|---|
|  | 1002 |  | 
|---|
|  | 1003 | cout << Verbose(0) << "===========MERGE MOLECULES=====================" << endl; | 
|---|
|  | 1004 | cout << Verbose(0) << "e - embedding merge of two molecules" << endl; | 
|---|
|  | 1005 | cout << Verbose(0) << "m - multi-merge of all molecules" << endl; | 
|---|
|  | 1006 | cout << Verbose(0) << "s - scatter merge of two molecules" << endl; | 
|---|
|  | 1007 | cout << Verbose(0) << "t - simple merge of two molecules" << endl; | 
|---|
|  | 1008 | cout << Verbose(0) << "all else - go back" << endl; | 
|---|
|  | 1009 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 1010 | cout << Verbose(0) << "INPUT: "; | 
|---|
|  | 1011 | cin >> choice; | 
|---|
|  | 1012 |  | 
|---|
|  | 1013 | switch (choice) { | 
|---|
|  | 1014 | default: | 
|---|
|  | 1015 | cout << Verbose(0) << "Not a valid choice." << endl; | 
|---|
|  | 1016 | break; | 
|---|
|  | 1017 |  | 
|---|
|  | 1018 | case 'e': | 
|---|
|  | 1019 | break; | 
|---|
|  | 1020 |  | 
|---|
|  | 1021 | case 'm': | 
|---|
|  | 1022 | break; | 
|---|
|  | 1023 |  | 
|---|
|  | 1024 | case 's': | 
|---|
|  | 1025 | break; | 
|---|
|  | 1026 |  | 
|---|
|  | 1027 | case 't': | 
|---|
|  | 1028 | break; | 
|---|
|  | 1029 | } | 
|---|
|  | 1030 | }; | 
|---|
|  | 1031 |  | 
|---|
|  | 1032 |  | 
|---|
| [14de469] | 1033 | /********************************************** Test routine **************************************/ | 
|---|
|  | 1034 |  | 
|---|
|  | 1035 | /** Is called always as option 'T' in the menu. | 
|---|
| [1907a7] | 1036 | * \param *molecules list of molecules | 
|---|
| [14de469] | 1037 | */ | 
|---|
| [1907a7] | 1038 | static void testroutine(MoleculeListClass *molecules) | 
|---|
| [14de469] | 1039 | { | 
|---|
| [6ac7ee] | 1040 | // the current test routine checks the functionality of the KeySet&Graph concept: | 
|---|
|  | 1041 | // We want to have a multiindex (the KeySet) describing a unique subgraph | 
|---|
| [1907a7] | 1042 | int i, comp, counter=0; | 
|---|
|  | 1043 |  | 
|---|
|  | 1044 | // create a clone | 
|---|
|  | 1045 | molecule *mol = NULL; | 
|---|
|  | 1046 | if (molecules->ListOfMolecules.size() != 0) // clone | 
|---|
|  | 1047 | mol = (molecules->ListOfMolecules.front())->CopyMolecule(); | 
|---|
|  | 1048 | else { | 
|---|
|  | 1049 | cerr << "I don't have anything to test on ... "; | 
|---|
|  | 1050 | return; | 
|---|
|  | 1051 | } | 
|---|
|  | 1052 | atom *Walker = mol->start; | 
|---|
| [6ac7ee] | 1053 |  | 
|---|
|  | 1054 | // generate some KeySets | 
|---|
|  | 1055 | cout << "Generating KeySets." << endl; | 
|---|
|  | 1056 | KeySet TestSets[mol->AtomCount+1]; | 
|---|
|  | 1057 | i=1; | 
|---|
|  | 1058 | while (Walker->next != mol->end) { | 
|---|
|  | 1059 | Walker = Walker->next; | 
|---|
|  | 1060 | for (int j=0;j<i;j++) { | 
|---|
|  | 1061 | TestSets[j].insert(Walker->nr); | 
|---|
|  | 1062 | } | 
|---|
|  | 1063 | i++; | 
|---|
|  | 1064 | } | 
|---|
|  | 1065 | cout << "Testing insertion of already present item in KeySets." << endl; | 
|---|
|  | 1066 | KeySetTestPair test; | 
|---|
|  | 1067 | test = TestSets[mol->AtomCount-1].insert(Walker->nr); | 
|---|
|  | 1068 | if (test.second) { | 
|---|
|  | 1069 | cout << Verbose(1) << "Insertion worked?!" << endl; | 
|---|
|  | 1070 | } else { | 
|---|
|  | 1071 | cout << Verbose(1) << "Insertion rejected: Present object is " << (*test.first) << "." << endl; | 
|---|
|  | 1072 | } | 
|---|
|  | 1073 | TestSets[mol->AtomCount].insert(mol->end->previous->nr); | 
|---|
|  | 1074 | TestSets[mol->AtomCount].insert(mol->end->previous->previous->previous->nr); | 
|---|
|  | 1075 |  | 
|---|
|  | 1076 | // constructing Graph structure | 
|---|
|  | 1077 | cout << "Generating Subgraph class." << endl; | 
|---|
|  | 1078 | Graph Subgraphs; | 
|---|
|  | 1079 |  | 
|---|
|  | 1080 | // insert KeySets into Subgraphs | 
|---|
|  | 1081 | cout << "Inserting KeySets into Subgraph class." << endl; | 
|---|
|  | 1082 | for (int j=0;j<mol->AtomCount;j++) { | 
|---|
|  | 1083 | Subgraphs.insert(GraphPair (TestSets[j],pair<int, double>(counter++, 1.))); | 
|---|
|  | 1084 | } | 
|---|
|  | 1085 | cout << "Testing insertion of already present item in Subgraph." << endl; | 
|---|
|  | 1086 | GraphTestPair test2; | 
|---|
|  | 1087 | test2 = Subgraphs.insert(GraphPair (TestSets[mol->AtomCount],pair<int, double>(counter++, 1.))); | 
|---|
|  | 1088 | if (test2.second) { | 
|---|
|  | 1089 | cout << Verbose(1) << "Insertion worked?!" << endl; | 
|---|
|  | 1090 | } else { | 
|---|
|  | 1091 | cout << Verbose(1) << "Insertion rejected: Present object is " << (*(test2.first)).second.first << "." << endl; | 
|---|
|  | 1092 | } | 
|---|
|  | 1093 |  | 
|---|
|  | 1094 | // show graphs | 
|---|
|  | 1095 | cout << "Showing Subgraph's contents, checking that it's sorted." << endl; | 
|---|
|  | 1096 | Graph::iterator A = Subgraphs.begin(); | 
|---|
|  | 1097 | while (A !=     Subgraphs.end()) { | 
|---|
|  | 1098 | cout << (*A).second.first << ": "; | 
|---|
|  | 1099 | KeySet::iterator key = (*A).first.begin(); | 
|---|
|  | 1100 | comp = -1; | 
|---|
|  | 1101 | while (key != (*A).first.end()) { | 
|---|
|  | 1102 | if ((*key) > comp) | 
|---|
|  | 1103 | cout << (*key) << " "; | 
|---|
|  | 1104 | else | 
|---|
|  | 1105 | cout << (*key) << "! "; | 
|---|
|  | 1106 | comp = (*key); | 
|---|
|  | 1107 | key++; | 
|---|
|  | 1108 | } | 
|---|
|  | 1109 | cout << endl; | 
|---|
|  | 1110 | A++; | 
|---|
|  | 1111 | } | 
|---|
| [1907a7] | 1112 | delete(mol); | 
|---|
| [14de469] | 1113 | }; | 
|---|
|  | 1114 |  | 
|---|
| [dbe929] | 1115 | /** Tries given filename or standard on saving the config file. | 
|---|
|  | 1116 | * \param *ConfigFileName name of file | 
|---|
|  | 1117 | * \param *configuration pointer to configuration structure with all the values | 
|---|
|  | 1118 | * \param *periode pointer to periodentafel structure with all the elements | 
|---|
| [1907a7] | 1119 | * \param *molecules list of molecules structure with all the atoms and coordinates | 
|---|
| [dbe929] | 1120 | */ | 
|---|
| [1907a7] | 1121 | static void SaveConfig(char *ConfigFileName, config *configuration, periodentafel *periode, MoleculeListClass *molecules) | 
|---|
| [dbe929] | 1122 | { | 
|---|
| [6ac7ee] | 1123 | char filename[MAXSTRINGSIZE]; | 
|---|
|  | 1124 | ofstream output; | 
|---|
| [1907a7] | 1125 | molecule *mol = new molecule(periode); | 
|---|
|  | 1126 |  | 
|---|
|  | 1127 | // merge all molecules in MoleculeListClass into this molecule | 
|---|
|  | 1128 | int N = molecules->ListOfMolecules.size(); | 
|---|
|  | 1129 | int *src = new int(N); | 
|---|
|  | 1130 | N=0; | 
|---|
|  | 1131 | for (MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); ListRunner != molecules->ListOfMolecules.end(); ListRunner++) | 
|---|
|  | 1132 | src[N++] = (*ListRunner)->IndexNr; | 
|---|
|  | 1133 | molecules->SimpleMultiAdd(mol, src, N); | 
|---|
| [6ac7ee] | 1134 |  | 
|---|
|  | 1135 | cout << Verbose(0) << "Storing configuration ... " << endl; | 
|---|
|  | 1136 | // get correct valence orbitals | 
|---|
|  | 1137 | mol->CalculateOrbitals(*configuration); | 
|---|
|  | 1138 | configuration->InitMaxMinStopStep = configuration->MaxMinStopStep = configuration->MaxPsiDouble; | 
|---|
|  | 1139 | strcpy(filename, ConfigFileName); | 
|---|
|  | 1140 | if (ConfigFileName != NULL) { // test the file name | 
|---|
|  | 1141 | output.open(ConfigFileName, ios::trunc); | 
|---|
|  | 1142 | } else if (strlen(configuration->configname) != 0) { | 
|---|
|  | 1143 | strcpy(filename, configuration->configname); | 
|---|
|  | 1144 | output.open(configuration->configname, ios::trunc); | 
|---|
|  | 1145 | } else { | 
|---|
|  | 1146 | strcpy(filename, DEFAULTCONFIG); | 
|---|
|  | 1147 | output.open(DEFAULTCONFIG, ios::trunc); | 
|---|
|  | 1148 | } | 
|---|
|  | 1149 | output.close(); | 
|---|
|  | 1150 | output.clear(); | 
|---|
|  | 1151 | cout << Verbose(0) << "Saving of config file "; | 
|---|
|  | 1152 | if (configuration->Save(filename, periode, mol)) | 
|---|
|  | 1153 | cout << "successful." << endl; | 
|---|
|  | 1154 | else | 
|---|
|  | 1155 | cout << "failed." << endl; | 
|---|
|  | 1156 |  | 
|---|
|  | 1157 | // and save to xyz file | 
|---|
|  | 1158 | if (ConfigFileName != NULL) { | 
|---|
|  | 1159 | strcpy(filename, ConfigFileName); | 
|---|
|  | 1160 | strcat(filename, ".xyz"); | 
|---|
|  | 1161 | output.open(filename, ios::trunc); | 
|---|
|  | 1162 | } | 
|---|
|  | 1163 | if (output == NULL) { | 
|---|
|  | 1164 | strcpy(filename,"main_pcp_linux"); | 
|---|
|  | 1165 | strcat(filename, ".xyz"); | 
|---|
|  | 1166 | output.open(filename, ios::trunc); | 
|---|
|  | 1167 | } | 
|---|
|  | 1168 | cout << Verbose(0) << "Saving of XYZ file "; | 
|---|
|  | 1169 | if (mol->MDSteps <= 1) { | 
|---|
|  | 1170 | if (mol->OutputXYZ(&output)) | 
|---|
|  | 1171 | cout << "successful." << endl; | 
|---|
|  | 1172 | else | 
|---|
|  | 1173 | cout << "failed." << endl; | 
|---|
|  | 1174 | } else { | 
|---|
|  | 1175 | if (mol->OutputTrajectoriesXYZ(&output)) | 
|---|
|  | 1176 | cout << "successful." << endl; | 
|---|
|  | 1177 | else | 
|---|
|  | 1178 | cout << "failed." << endl; | 
|---|
|  | 1179 | } | 
|---|
|  | 1180 | output.close(); | 
|---|
|  | 1181 | output.clear(); | 
|---|
|  | 1182 |  | 
|---|
|  | 1183 | // and save as MPQC configuration | 
|---|
|  | 1184 | if (ConfigFileName != NULL) | 
|---|
|  | 1185 | strcpy(filename, ConfigFileName); | 
|---|
|  | 1186 | if (output == NULL) | 
|---|
|  | 1187 | strcpy(filename,"main_pcp_linux"); | 
|---|
|  | 1188 | cout << Verbose(0) << "Saving as mpqc input "; | 
|---|
|  | 1189 | if (configuration->SaveMPQC(filename, mol)) | 
|---|
|  | 1190 | cout << "done." << endl; | 
|---|
|  | 1191 | else | 
|---|
|  | 1192 | cout << "failed." << endl; | 
|---|
|  | 1193 |  | 
|---|
|  | 1194 | if (!strcmp(configuration->configpath, configuration->GetDefaultPath())) { | 
|---|
|  | 1195 | cerr << "WARNING: config is found under different path then stated in config file::defaultpath!" << endl; | 
|---|
|  | 1196 | } | 
|---|
| [1907a7] | 1197 | delete(mol); | 
|---|
| [dbe929] | 1198 | }; | 
|---|
|  | 1199 |  | 
|---|
| [ca2b83] | 1200 | /** Parses the command line options. | 
|---|
|  | 1201 | * \param argc argument count | 
|---|
|  | 1202 | * \param **argv arguments array | 
|---|
| [1907a7] | 1203 | * \param *molecules list of molecules structure | 
|---|
| [ca2b83] | 1204 | * \param *periode elements structure | 
|---|
|  | 1205 | * \param configuration config file structure | 
|---|
|  | 1206 | * \param *ConfigFileName pointer to config file name in **argv | 
|---|
| [d7d29c] | 1207 | * \param *PathToDatabases pointer to db's path in **argv | 
|---|
| [ca2b83] | 1208 | * \return exit code (0 - successful, all else - something's wrong) | 
|---|
|  | 1209 | */ | 
|---|
| [989bf6] | 1210 | static int ParseCommandLineOptions(int argc, char **argv, MoleculeListClass *&molecules, periodentafel *&periode, config& configuration, char *&ConfigFileName) | 
|---|
| [14de469] | 1211 | { | 
|---|
| [6ac7ee] | 1212 | Vector x,y,z,n; // coordinates for absolute point in cell volume | 
|---|
|  | 1213 | double *factor; // unit factor if desired | 
|---|
|  | 1214 | ifstream test; | 
|---|
|  | 1215 | ofstream output; | 
|---|
|  | 1216 | string line; | 
|---|
|  | 1217 | atom *first; | 
|---|
|  | 1218 | bool SaveFlag = false; | 
|---|
|  | 1219 | int ExitFlag = 0; | 
|---|
|  | 1220 | int j; | 
|---|
|  | 1221 | double volume = 0.; | 
|---|
|  | 1222 | enum ConfigStatus config_present = absent; | 
|---|
|  | 1223 | clock_t start,end; | 
|---|
|  | 1224 | int argptr; | 
|---|
| [989bf6] | 1225 | strncpy(configuration.databasepath, LocalPath, MAXSTRINGSIZE-1); | 
|---|
| [6ac7ee] | 1226 |  | 
|---|
| [1907a7] | 1227 | // simply create a new molecule, wherein the config file is loaded and the manipulation takes place | 
|---|
|  | 1228 | molecule *mol = new molecule(periode); | 
|---|
|  | 1229 | molecules->insert(mol); | 
|---|
|  | 1230 |  | 
|---|
| [6ac7ee] | 1231 | if (argc > 1) { // config file specified as option | 
|---|
|  | 1232 | // 1. : Parse options that just set variables or print help | 
|---|
|  | 1233 | argptr = 1; | 
|---|
|  | 1234 | do { | 
|---|
|  | 1235 | if (argv[argptr][0] == '-') { | 
|---|
|  | 1236 | cout << Verbose(0) << "Recognized command line argument: " << argv[argptr][1] << ".\n"; | 
|---|
|  | 1237 | argptr++; | 
|---|
|  | 1238 | switch(argv[argptr-1][1]) { | 
|---|
|  | 1239 | case 'h': | 
|---|
|  | 1240 | case 'H': | 
|---|
|  | 1241 | case '?': | 
|---|
|  | 1242 | cout << "MoleCuilder suite" << endl << "==================" << endl << endl; | 
|---|
|  | 1243 | cout << "Usage: " << argv[0] << "[config file] [-{acefpsthH?vfrp}] [further arguments]" << endl; | 
|---|
|  | 1244 | cout << "or simply " << argv[0] << " without arguments for interactive session." << endl; | 
|---|
|  | 1245 | cout << "\t-a Z x1 x2 x3\tAdd new atom of element Z at coordinates (x1,x2,x3)." << endl; | 
|---|
|  | 1246 | cout << "\t-A <source>\tCreate adjacency list from bonds parsed from 'dbond'-style file." <<endl; | 
|---|
| [21c017] | 1247 | cout << "\t-b xx xy xz yy yz zz\tCenter atoms in domain with given symmetric matrix of (xx,xy,xz,yy,yz,zz)." << endl; | 
|---|
| [d8b94a] | 1248 | cout << "\t-B <basis>\tSetting basis to store to MPQC config files." << endl; | 
|---|
| [6ac7ee] | 1249 | cout << "\t-c x1 x2 x3\tCenter atoms in domain with a minimum distance to boundary of (x1,x2,x3)." << endl; | 
|---|
|  | 1250 | cout << "\t-D <bond distance>\tDepth-First-Search Analysis of the molecule, giving cycles and tree/back edges." << endl; | 
|---|
|  | 1251 | cout << "\t-O\tCenter atoms in origin." << endl; | 
|---|
|  | 1252 | cout << "\t-d x1 x2 x3\tDuplicate cell along each axis by given factor." << endl; | 
|---|
|  | 1253 | cout << "\t-e <file>\tSets the databases path to be parsed (default: ./)." << endl; | 
|---|
|  | 1254 | cout << "\t-E <id> <Z>\tChange atom <id>'s element to <Z>, <id> begins at 0." << endl; | 
|---|
|  | 1255 | cout << "\t-f/F <dist> <order>\tFragments the molecule in BOSSANOVA manner (with/out rings compressed) and stores config files in same dir as config (return code 0 - fragmented, 2 - no fragmentation necessary)." << endl; | 
|---|
|  | 1256 | cout << "\t-h/-H/-?\tGive this help screen." << endl; | 
|---|
|  | 1257 | cout << "\t-m <0/1>\tCalculate (0)/ Align in(1) PAS with greatest EV along z axis." << endl; | 
|---|
|  | 1258 | cout << "\t-n\tFast parsing (i.e. no trajectories are looked for)." << endl; | 
|---|
|  | 1259 | cout << "\t-N\tGet non-convex-envelope." << endl; | 
|---|
|  | 1260 | cout << "\t-o <out>\tGet volume of the convex envelope (and store to tecplot file)." << endl; | 
|---|
|  | 1261 | cout << "\t-p <file>\tParse given xyz file and create raw config file from it." << endl; | 
|---|
|  | 1262 | cout << "\t-P <file>\tParse given forces file and append as an MD step to config file via Verlet." << endl; | 
|---|
|  | 1263 | cout << "\t-r\t\tConvert file from an old pcp syntax." << endl; | 
|---|
|  | 1264 | cout << "\t-t x1 x2 x3\tTranslate all atoms by this vector (x1,x2,x3)." << endl; | 
|---|
| [21c017] | 1265 | cout << "\t-T x1 x2 x3\tTranslate periodically all atoms by this vector (x1,x2,x3)." << endl; | 
|---|
|  | 1266 | cout << "\t-S <file> Store temperatures from the config file in <file>." << endl; | 
|---|
| [6ac7ee] | 1267 | cout << "\t-s x1 x2 x3\tScale all atom coordinates by this vector (x1,x2,x3)." << endl; | 
|---|
|  | 1268 | cout << "\t-u rho\tsuspend in water solution and output necessary cell lengths, average density rho and repetition." << endl; | 
|---|
|  | 1269 | cout << "\t-v/-V\t\tGives version information." << endl; | 
|---|
|  | 1270 | cout << "Note: config files must not begin with '-' !" << endl; | 
|---|
|  | 1271 | delete(mol); | 
|---|
|  | 1272 | delete(periode); | 
|---|
|  | 1273 | return (1); | 
|---|
|  | 1274 | break; | 
|---|
|  | 1275 | case 'v': | 
|---|
|  | 1276 | case 'V': | 
|---|
|  | 1277 | cout << argv[0] << " " << VERSIONSTRING << endl; | 
|---|
|  | 1278 | cout << "Build your own molecule position set." << endl; | 
|---|
|  | 1279 | delete(mol); | 
|---|
|  | 1280 | delete(periode); | 
|---|
|  | 1281 | return (1); | 
|---|
|  | 1282 | break; | 
|---|
|  | 1283 | case 'e': | 
|---|
|  | 1284 | if ((argptr >= argc) || (argv[argptr][0] == '-')) { | 
|---|
|  | 1285 | cerr << "Not enough or invalid arguments for specifying element db: -e <db file>" << endl; | 
|---|
|  | 1286 | } else { | 
|---|
|  | 1287 | cout << "Using " << argv[argptr] << " as elements database." << endl; | 
|---|
| [989bf6] | 1288 | strncpy (configuration.databasepath, argv[argptr], MAXSTRINGSIZE-1); | 
|---|
| [6ac7ee] | 1289 | argptr+=1; | 
|---|
|  | 1290 | } | 
|---|
|  | 1291 | break; | 
|---|
|  | 1292 | case 'n': | 
|---|
|  | 1293 | cout << "I won't parse trajectories." << endl; | 
|---|
|  | 1294 | configuration.FastParsing = true; | 
|---|
|  | 1295 | break; | 
|---|
|  | 1296 | default:         // no match? Step on | 
|---|
|  | 1297 | argptr++; | 
|---|
|  | 1298 | break; | 
|---|
|  | 1299 | } | 
|---|
|  | 1300 | } else | 
|---|
|  | 1301 | argptr++; | 
|---|
|  | 1302 | } while (argptr < argc); | 
|---|
|  | 1303 |  | 
|---|
|  | 1304 | // 2. Parse the element database | 
|---|
| [989bf6] | 1305 | if (periode->LoadPeriodentafel(configuration.databasepath)) { | 
|---|
| [6ac7ee] | 1306 | cout << Verbose(0) << "Element list loaded successfully." << endl; | 
|---|
|  | 1307 | //periode->Output((ofstream *)&cout); | 
|---|
|  | 1308 | } else { | 
|---|
|  | 1309 | cout << Verbose(0) << "Element list loading failed." << endl; | 
|---|
|  | 1310 | return 1; | 
|---|
|  | 1311 | } | 
|---|
|  | 1312 | // 3. Find config file name and parse if possible | 
|---|
|  | 1313 | if (argv[1][0] != '-') { | 
|---|
|  | 1314 | cout << Verbose(0) << "Config file given." << endl; | 
|---|
|  | 1315 | test.open(argv[1], ios::in); | 
|---|
|  | 1316 | if (test == NULL) { | 
|---|
|  | 1317 | //return (1); | 
|---|
|  | 1318 | output.open(argv[1], ios::out); | 
|---|
|  | 1319 | if (output == NULL) { | 
|---|
|  | 1320 | cout << Verbose(1) << "Specified config file " << argv[1] << " not found." << endl; | 
|---|
|  | 1321 | config_present = absent; | 
|---|
|  | 1322 | } else { | 
|---|
|  | 1323 | cout << "Empty configuration file." << endl; | 
|---|
|  | 1324 | ConfigFileName = argv[1]; | 
|---|
|  | 1325 | config_present = empty; | 
|---|
|  | 1326 | output.close(); | 
|---|
|  | 1327 | } | 
|---|
|  | 1328 | } else { | 
|---|
|  | 1329 | test.close(); | 
|---|
|  | 1330 | ConfigFileName = argv[1]; | 
|---|
|  | 1331 | cout << Verbose(1) << "Specified config file found, parsing ... "; | 
|---|
|  | 1332 | switch (configuration.TestSyntax(ConfigFileName, periode, mol)) { | 
|---|
|  | 1333 | case 1: | 
|---|
|  | 1334 | cout << "new syntax." << endl; | 
|---|
|  | 1335 | configuration.Load(ConfigFileName, periode, mol); | 
|---|
|  | 1336 | config_present = present; | 
|---|
|  | 1337 | break; | 
|---|
|  | 1338 | case 0: | 
|---|
|  | 1339 | cout << "old syntax." << endl; | 
|---|
|  | 1340 | configuration.LoadOld(ConfigFileName, periode, mol); | 
|---|
|  | 1341 | config_present = present; | 
|---|
|  | 1342 | break; | 
|---|
|  | 1343 | default: | 
|---|
|  | 1344 | cout << "Unknown syntax or empty, yet present file." << endl; | 
|---|
|  | 1345 | config_present = empty; | 
|---|
|  | 1346 | } | 
|---|
|  | 1347 | } | 
|---|
|  | 1348 | } else | 
|---|
|  | 1349 | config_present = absent; | 
|---|
|  | 1350 | // 4. parse again through options, now for those depending on elements db and config presence | 
|---|
|  | 1351 | argptr = 1; | 
|---|
|  | 1352 | do { | 
|---|
|  | 1353 | cout << "Current Command line argument: " << argv[argptr] << "." << endl; | 
|---|
|  | 1354 | if (argv[argptr][0] == '-') { | 
|---|
|  | 1355 | argptr++; | 
|---|
|  | 1356 | if ((config_present == present) || (config_present == empty)) { | 
|---|
|  | 1357 | switch(argv[argptr-1][1]) { | 
|---|
|  | 1358 | case 'p': | 
|---|
|  | 1359 | ExitFlag = 1; | 
|---|
|  | 1360 | if ((argptr >= argc) || (argv[argptr][0] == '-')) { | 
|---|
|  | 1361 | ExitFlag = 255; | 
|---|
|  | 1362 | cerr << "Not enough arguments for parsing: -p <xyz file>" << endl; | 
|---|
|  | 1363 | } else { | 
|---|
|  | 1364 | SaveFlag = true; | 
|---|
|  | 1365 | cout << Verbose(1) << "Parsing xyz file for new atoms." << endl; | 
|---|
|  | 1366 | if (!mol->AddXYZFile(argv[argptr])) | 
|---|
|  | 1367 | cout << Verbose(2) << "File not found." << endl; | 
|---|
|  | 1368 | else { | 
|---|
|  | 1369 | cout << Verbose(2) << "File found and parsed." << endl; | 
|---|
|  | 1370 | config_present = present; | 
|---|
|  | 1371 | } | 
|---|
|  | 1372 | } | 
|---|
|  | 1373 | break; | 
|---|
|  | 1374 | case 'a': | 
|---|
|  | 1375 | ExitFlag = 1; | 
|---|
|  | 1376 | if ((argptr >= argc) || (argv[argptr][0] == '-') || (!IsValidNumber(argv[argptr+1]))) { | 
|---|
|  | 1377 | ExitFlag = 255; | 
|---|
|  | 1378 | cerr << "Not enough or invalid arguments for adding atom: -a <element> <x> <y> <z>" << endl; | 
|---|
|  | 1379 | } else { | 
|---|
|  | 1380 | SaveFlag = true; | 
|---|
|  | 1381 | cout << Verbose(1) << "Adding new atom with element " << argv[argptr] << " at (" << argv[argptr+1] << "," << argv[argptr+2] << "," << argv[argptr+3] << "), "; | 
|---|
|  | 1382 | first = new atom; | 
|---|
|  | 1383 | first->type = periode->FindElement(atoi(argv[argptr])); | 
|---|
|  | 1384 | if (first->type != NULL) | 
|---|
|  | 1385 | cout << Verbose(2) << "found element " << first->type->name << endl; | 
|---|
|  | 1386 | for (int i=NDIM;i--;) | 
|---|
|  | 1387 | first->x.x[i] = atof(argv[argptr+1+i]); | 
|---|
|  | 1388 | if (first->type != NULL) { | 
|---|
|  | 1389 | mol->AddAtom(first);    // add to molecule | 
|---|
|  | 1390 | if ((config_present == empty) && (mol->AtomCount != 0)) | 
|---|
|  | 1391 | config_present = present; | 
|---|
|  | 1392 | } else | 
|---|
|  | 1393 | cerr << Verbose(1) << "Could not find the specified element." << endl; | 
|---|
|  | 1394 | argptr+=4; | 
|---|
|  | 1395 | } | 
|---|
|  | 1396 | break; | 
|---|
|  | 1397 | default:         // no match? Don't step on (this is done in next switch's default) | 
|---|
|  | 1398 | break; | 
|---|
|  | 1399 | } | 
|---|
|  | 1400 | } | 
|---|
|  | 1401 | if (config_present == present) { | 
|---|
|  | 1402 | switch(argv[argptr-1][1]) { | 
|---|
| [d8b94a] | 1403 | case 'B': | 
|---|
|  | 1404 | if ((argptr >= argc) || (argv[argptr][0] == '-')) { | 
|---|
|  | 1405 | ExitFlag = 255; | 
|---|
|  | 1406 | cerr << "Not enough or invalid arguments given for setting MPQC basis: -B <basis name>" << endl; | 
|---|
|  | 1407 | } else { | 
|---|
|  | 1408 | configuration.basis = argv[argptr]; | 
|---|
|  | 1409 | cout << Verbose(1) << "Setting MPQC basis to " << configuration.basis << "." << endl; | 
|---|
|  | 1410 | argptr+=1; | 
|---|
|  | 1411 | } | 
|---|
|  | 1412 | break; | 
|---|
| [6ac7ee] | 1413 | case 'D': | 
|---|
|  | 1414 | ExitFlag = 1; | 
|---|
|  | 1415 | { | 
|---|
|  | 1416 | cout << Verbose(1) << "Depth-First-Search Analysis." << endl; | 
|---|
|  | 1417 | MoleculeLeafClass *Subgraphs = NULL;                    // list of subgraphs from DFS analysis | 
|---|
|  | 1418 | int *MinimumRingSize = new int[mol->AtomCount]; | 
|---|
|  | 1419 | atom ***ListOfLocalAtoms = NULL; | 
|---|
|  | 1420 | int FragmentCounter = 0; | 
|---|
|  | 1421 | class StackClass<bond *> *BackEdgeStack = NULL; | 
|---|
|  | 1422 | class StackClass<bond *> *LocalBackEdgeStack = NULL; | 
|---|
|  | 1423 | mol->CreateAdjacencyList((ofstream *)&cout, atof(argv[argptr]), configuration.GetIsAngstroem()); | 
|---|
|  | 1424 | mol->CreateListOfBondsPerAtom((ofstream *)&cout); | 
|---|
|  | 1425 | Subgraphs = mol->DepthFirstSearchAnalysis((ofstream *)&cout, BackEdgeStack); | 
|---|
|  | 1426 | if (Subgraphs != NULL) { | 
|---|
|  | 1427 | Subgraphs->next->FillBondStructureFromReference((ofstream *)&cout, mol, (FragmentCounter = 0), ListOfLocalAtoms, false);        // we want to keep the created ListOfLocalAtoms | 
|---|
|  | 1428 | while (Subgraphs->next != NULL) { | 
|---|
|  | 1429 | Subgraphs = Subgraphs->next; | 
|---|
|  | 1430 | LocalBackEdgeStack = new StackClass<bond *> (Subgraphs->Leaf->BondCount); | 
|---|
|  | 1431 | Subgraphs->Leaf->PickLocalBackEdges((ofstream *)&cout, ListOfLocalAtoms[FragmentCounter++], BackEdgeStack, LocalBackEdgeStack); | 
|---|
|  | 1432 | Subgraphs->Leaf->CyclicStructureAnalysis((ofstream *)&cout, BackEdgeStack, MinimumRingSize); | 
|---|
|  | 1433 | delete(LocalBackEdgeStack); | 
|---|
|  | 1434 | delete(Subgraphs->previous); | 
|---|
|  | 1435 | } | 
|---|
|  | 1436 | delete(Subgraphs); | 
|---|
|  | 1437 | for (int i=0;i<FragmentCounter;i++) | 
|---|
|  | 1438 | Free((void **)&ListOfLocalAtoms[FragmentCounter], "ParseCommandLineOptions: **ListOfLocalAtoms[]"); | 
|---|
|  | 1439 | Free((void **)&ListOfLocalAtoms, "ParseCommandLineOptions: ***ListOfLocalAtoms"); | 
|---|
|  | 1440 | } | 
|---|
|  | 1441 | delete(BackEdgeStack); | 
|---|
|  | 1442 | delete[](MinimumRingSize); | 
|---|
|  | 1443 | } | 
|---|
|  | 1444 | //argptr+=1; | 
|---|
|  | 1445 | break; | 
|---|
|  | 1446 | case 'E': | 
|---|
|  | 1447 | ExitFlag = 1; | 
|---|
|  | 1448 | if ((argptr+1 >= argc) || (!IsValidNumber(argv[argptr])) || (argv[argptr+1][0] == '-')) { | 
|---|
|  | 1449 | ExitFlag = 255; | 
|---|
|  | 1450 | cerr << "Not enough or invalid arguments given for changing element: -E <atom nr.> <element>" << endl; | 
|---|
|  | 1451 | } else { | 
|---|
|  | 1452 | SaveFlag = true; | 
|---|
|  | 1453 | cout << Verbose(1) << "Changing atom " << argv[argptr] << " to element " << argv[argptr+1] << "." << endl; | 
|---|
|  | 1454 | first = mol->FindAtom(atoi(argv[argptr])); | 
|---|
|  | 1455 | first->type = periode->FindElement(atoi(argv[argptr+1])); | 
|---|
|  | 1456 | argptr+=2; | 
|---|
|  | 1457 | } | 
|---|
|  | 1458 | break; | 
|---|
|  | 1459 | case 'A': | 
|---|
|  | 1460 | ExitFlag = 1; | 
|---|
|  | 1461 | if ((argptr >= argc) || (argv[argptr][0] == '-')) { | 
|---|
|  | 1462 | ExitFlag =255; | 
|---|
|  | 1463 | cerr << "Missing source file for bonds in molecule: -A <bond sourcefile>" << endl; | 
|---|
|  | 1464 | } else { | 
|---|
|  | 1465 | cout << "Parsing bonds from " << argv[argptr] << "." << endl; | 
|---|
|  | 1466 | ifstream *input = new ifstream(argv[argptr]); | 
|---|
|  | 1467 | mol->CreateAdjacencyList2((ofstream *)&cout, input); | 
|---|
|  | 1468 | input->close(); | 
|---|
|  | 1469 | argptr+=1; | 
|---|
|  | 1470 | } | 
|---|
|  | 1471 | break; | 
|---|
|  | 1472 | case 'N': | 
|---|
|  | 1473 | ExitFlag = 1; | 
|---|
|  | 1474 | if ((argptr+1 >= argc) || (argv[argptr+1][0] == '-')){ | 
|---|
|  | 1475 | ExitFlag = 255; | 
|---|
|  | 1476 | cerr << "Not enough or invalid arguments given for non-convex envelope: -o <radius> <tecplot output file>" << endl; | 
|---|
|  | 1477 | } else { | 
|---|
|  | 1478 | class Tesselation T; | 
|---|
|  | 1479 | string filename(argv[argptr+1]); | 
|---|
|  | 1480 | filename.append(".csv"); | 
|---|
|  | 1481 | cout << Verbose(0) << "Evaluating non-convex envelope."; | 
|---|
|  | 1482 | cout << Verbose(1) << "Using rolling ball of radius " << atof(argv[argptr]) << " and storing tecplot data in " << argv[argptr+1] << "." << endl; | 
|---|
| [ce4d22] | 1483 | LinkedCell LCList(mol, atof(argv[argptr])*2.); | 
|---|
| [6ac7ee] | 1484 | Find_non_convex_border((ofstream *)&cout, mol, &T, &LCList, argv[argptr+1], atof(argv[argptr])); | 
|---|
| [260b2f] | 1485 | //FindDistributionOfEllipsoids((ofstream *)&cout, &T, &LCList, N, number, filename.c_str()); | 
|---|
| [6ac7ee] | 1486 | argptr+=2; | 
|---|
|  | 1487 | } | 
|---|
|  | 1488 | break; | 
|---|
| [21c017] | 1489 | case 'S': | 
|---|
| [6ac7ee] | 1490 | ExitFlag = 1; | 
|---|
|  | 1491 | if ((argptr >= argc) || (argv[argptr][0] == '-')) { | 
|---|
|  | 1492 | ExitFlag = 255; | 
|---|
| [21c017] | 1493 | cerr << "Not enough or invalid arguments given for storing tempature: -S <temperature file>" << endl; | 
|---|
| [6ac7ee] | 1494 | } else { | 
|---|
|  | 1495 | cout << Verbose(1) << "Storing temperatures in " << argv[argptr] << "." << endl; | 
|---|
|  | 1496 | ofstream *output = new ofstream(argv[argptr], ios::trunc); | 
|---|
|  | 1497 | if (!mol->OutputTemperatureFromTrajectories((ofstream *)&cout, 0, mol->MDSteps, output)) | 
|---|
|  | 1498 | cout << Verbose(2) << "File could not be written." << endl; | 
|---|
|  | 1499 | else | 
|---|
|  | 1500 | cout << Verbose(2) << "File stored." << endl; | 
|---|
|  | 1501 | output->close(); | 
|---|
|  | 1502 | delete(output); | 
|---|
|  | 1503 | argptr+=1; | 
|---|
|  | 1504 | } | 
|---|
|  | 1505 | break; | 
|---|
|  | 1506 | case 'P': | 
|---|
|  | 1507 | ExitFlag = 1; | 
|---|
|  | 1508 | if ((argptr >= argc) || (argv[argptr][0] == '-')) { | 
|---|
|  | 1509 | ExitFlag = 255; | 
|---|
|  | 1510 | cerr << "Not enough or invalid arguments given for parsing and integrating forces: -P <forces file>" << endl; | 
|---|
|  | 1511 | } else { | 
|---|
|  | 1512 | SaveFlag = true; | 
|---|
|  | 1513 | cout << Verbose(1) << "Parsing forces file and Verlet integrating." << endl; | 
|---|
|  | 1514 | if (!mol->VerletForceIntegration(argv[argptr], configuration.Deltat, configuration.GetIsAngstroem())) | 
|---|
|  | 1515 | cout << Verbose(2) << "File not found." << endl; | 
|---|
|  | 1516 | else | 
|---|
|  | 1517 | cout << Verbose(2) << "File found and parsed." << endl; | 
|---|
|  | 1518 | argptr+=1; | 
|---|
|  | 1519 | } | 
|---|
|  | 1520 | break; | 
|---|
|  | 1521 | case 't': | 
|---|
|  | 1522 | ExitFlag = 1; | 
|---|
|  | 1523 | if ((argptr+2 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) { | 
|---|
|  | 1524 | ExitFlag = 255; | 
|---|
|  | 1525 | cerr << "Not enough or invalid arguments given for translation: -t <x> <y> <z>" << endl; | 
|---|
|  | 1526 | } else { | 
|---|
|  | 1527 | ExitFlag = 1; | 
|---|
|  | 1528 | SaveFlag = true; | 
|---|
|  | 1529 | cout << Verbose(1) << "Translating all ions to new origin." << endl; | 
|---|
|  | 1530 | for (int i=NDIM;i--;) | 
|---|
|  | 1531 | x.x[i] = atof(argv[argptr+i]); | 
|---|
|  | 1532 | mol->Translate((const Vector *)&x); | 
|---|
|  | 1533 | argptr+=3; | 
|---|
|  | 1534 | } | 
|---|
|  | 1535 | break; | 
|---|
| [21c017] | 1536 | case 'T': | 
|---|
|  | 1537 | ExitFlag = 1; | 
|---|
|  | 1538 | if ((argptr+2 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) { | 
|---|
|  | 1539 | ExitFlag = 255; | 
|---|
|  | 1540 | cerr << "Not enough or invalid arguments given for periodic translation: -T <x> <y> <z>" << endl; | 
|---|
|  | 1541 | } else { | 
|---|
|  | 1542 | ExitFlag = 1; | 
|---|
|  | 1543 | SaveFlag = true; | 
|---|
|  | 1544 | cout << Verbose(1) << "Translating all ions periodically to new origin." << endl; | 
|---|
|  | 1545 | for (int i=NDIM;i--;) | 
|---|
|  | 1546 | x.x[i] = atof(argv[argptr+i]); | 
|---|
|  | 1547 | mol->TranslatePeriodically((const Vector *)&x); | 
|---|
|  | 1548 | argptr+=3; | 
|---|
|  | 1549 | } | 
|---|
|  | 1550 | break; | 
|---|
| [6ac7ee] | 1551 | case 's': | 
|---|
|  | 1552 | ExitFlag = 1; | 
|---|
|  | 1553 | if ((argptr >= argc) || (!IsValidNumber(argv[argptr])) ) { | 
|---|
|  | 1554 | ExitFlag = 255; | 
|---|
|  | 1555 | cerr << "Not enough or invalid arguments given for scaling: -s <factor/[factor_x]> [factor_y] [factor_z]" << endl; | 
|---|
|  | 1556 | } else { | 
|---|
|  | 1557 | SaveFlag = true; | 
|---|
|  | 1558 | j = -1; | 
|---|
|  | 1559 | cout << Verbose(1) << "Scaling all ion positions by factor." << endl; | 
|---|
|  | 1560 | factor = new double[NDIM]; | 
|---|
|  | 1561 | factor[0] = atof(argv[argptr]); | 
|---|
|  | 1562 | if ((argptr < argc) && (IsValidNumber(argv[argptr]))) | 
|---|
|  | 1563 | argptr++; | 
|---|
|  | 1564 | factor[1] = atof(argv[argptr]); | 
|---|
|  | 1565 | if ((argptr < argc) && (IsValidNumber(argv[argptr]))) | 
|---|
|  | 1566 | argptr++; | 
|---|
|  | 1567 | factor[2] = atof(argv[argptr]); | 
|---|
|  | 1568 | mol->Scale(&factor); | 
|---|
|  | 1569 | for (int i=0;i<NDIM;i++) { | 
|---|
|  | 1570 | j += i+1; | 
|---|
|  | 1571 | x.x[i] = atof(argv[NDIM+i]); | 
|---|
|  | 1572 | mol->cell_size[j]*=factor[i]; | 
|---|
|  | 1573 | } | 
|---|
|  | 1574 | delete[](factor); | 
|---|
|  | 1575 | argptr+=1; | 
|---|
|  | 1576 | } | 
|---|
|  | 1577 | break; | 
|---|
|  | 1578 | case 'b': | 
|---|
|  | 1579 | ExitFlag = 1; | 
|---|
| [21c017] | 1580 | if ((argptr+5 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) || (!IsValidNumber(argv[argptr+3])) || (!IsValidNumber(argv[argptr+4])) || (!IsValidNumber(argv[argptr+5])) ) { | 
|---|
| [6ac7ee] | 1581 | ExitFlag = 255; | 
|---|
| [21c017] | 1582 | cerr << "Not enough or invalid arguments given for centering in box: -b <xx> <xy> <xz> <yy> <yz> <zz>" << endl; | 
|---|
| [6ac7ee] | 1583 | } else { | 
|---|
|  | 1584 | SaveFlag = true; | 
|---|
|  | 1585 | cout << Verbose(1) << "Centering atoms in config file within given simulation box." << endl; | 
|---|
| [21c017] | 1586 | for (int i=0;i<6;i++) { | 
|---|
|  | 1587 | mol->cell_size[i] = atof(argv[argptr+i]); | 
|---|
| [6ac7ee] | 1588 | } | 
|---|
|  | 1589 | // center | 
|---|
| [21c017] | 1590 | mol->CenterInBox((ofstream *)&cout); | 
|---|
|  | 1591 | argptr+=6; | 
|---|
| [6ac7ee] | 1592 | } | 
|---|
|  | 1593 | break; | 
|---|
|  | 1594 | case 'c': | 
|---|
|  | 1595 | ExitFlag = 1; | 
|---|
|  | 1596 | if ((argptr+2 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) { | 
|---|
|  | 1597 | ExitFlag = 255; | 
|---|
|  | 1598 | cerr << "Not enough or invalid arguments given for centering with boundary: -c <boundary_x> <boundary_y> <boundary_z>" << endl; | 
|---|
|  | 1599 | } else { | 
|---|
|  | 1600 | SaveFlag = true; | 
|---|
|  | 1601 | j = -1; | 
|---|
|  | 1602 | cout << Verbose(1) << "Centering atoms in config file within given additional boundary." << endl; | 
|---|
|  | 1603 | // make every coordinate positive | 
|---|
|  | 1604 | mol->CenterEdge((ofstream *)&cout, &x); | 
|---|
|  | 1605 | // update Box of atoms by boundary | 
|---|
|  | 1606 | mol->SetBoxDimension(&x); | 
|---|
|  | 1607 | // translate each coordinate by boundary | 
|---|
|  | 1608 | j=-1; | 
|---|
|  | 1609 | for (int i=0;i<NDIM;i++) { | 
|---|
|  | 1610 | j += i+1; | 
|---|
|  | 1611 | x.x[i] = atof(argv[argptr++]); | 
|---|
|  | 1612 | mol->cell_size[j] += x.x[i]*2.; | 
|---|
|  | 1613 | } | 
|---|
|  | 1614 | mol->Translate((const Vector *)&x); | 
|---|
| [21c017] | 1615 | argptr+=3; | 
|---|
| [6ac7ee] | 1616 | } | 
|---|
|  | 1617 | break; | 
|---|
|  | 1618 | case 'O': | 
|---|
|  | 1619 | ExitFlag = 1; | 
|---|
|  | 1620 | SaveFlag = true; | 
|---|
|  | 1621 | cout << Verbose(1) << "Centering atoms in origin." << endl; | 
|---|
|  | 1622 | mol->CenterOrigin((ofstream *)&cout, &x); | 
|---|
|  | 1623 | mol->SetBoxDimension(&x); | 
|---|
| [21c017] | 1624 | argptr+=0; | 
|---|
| [6ac7ee] | 1625 | break; | 
|---|
|  | 1626 | case 'r': | 
|---|
|  | 1627 | ExitFlag = 1; | 
|---|
|  | 1628 | SaveFlag = true; | 
|---|
|  | 1629 | cout << Verbose(1) << "Converting config file from supposed old to new syntax." << endl; | 
|---|
|  | 1630 | break; | 
|---|
|  | 1631 | case 'F': | 
|---|
|  | 1632 | case 'f': | 
|---|
|  | 1633 | ExitFlag = 1; | 
|---|
|  | 1634 | if ((argptr+1 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1]))) { | 
|---|
|  | 1635 | ExitFlag = 255; | 
|---|
|  | 1636 | cerr << "Not enough or invalid arguments for fragmentation: -f <max. bond distance> <bond order>" << endl; | 
|---|
|  | 1637 | } else { | 
|---|
|  | 1638 | cout << "Fragmenting molecule with bond distance " << argv[argptr] << " angstroem, order of " << argv[argptr+1] << "." << endl; | 
|---|
|  | 1639 | cout << Verbose(0) << "Creating connection matrix..." << endl; | 
|---|
|  | 1640 | start = clock(); | 
|---|
|  | 1641 | mol->CreateAdjacencyList((ofstream *)&cout, atof(argv[argptr++]), configuration.GetIsAngstroem()); | 
|---|
|  | 1642 | cout << Verbose(0) << "Fragmenting molecule with current connection matrix ..." << endl; | 
|---|
|  | 1643 | if (mol->first->next != mol->last) { | 
|---|
|  | 1644 | ExitFlag = mol->FragmentMolecule((ofstream *)&cout, atoi(argv[argptr]), &configuration); | 
|---|
|  | 1645 | } | 
|---|
|  | 1646 | end = clock(); | 
|---|
|  | 1647 | cout << Verbose(0) << "Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s." << endl; | 
|---|
|  | 1648 | argptr+=2; | 
|---|
|  | 1649 | } | 
|---|
|  | 1650 | break; | 
|---|
|  | 1651 | case 'm': | 
|---|
|  | 1652 | ExitFlag = 1; | 
|---|
|  | 1653 | j = atoi(argv[argptr++]); | 
|---|
|  | 1654 | if ((j<0) || (j>1)) { | 
|---|
|  | 1655 | cerr << Verbose(1) << "ERROR: Argument of '-m' should be either 0 for no-rotate or 1 for rotate." << endl; | 
|---|
|  | 1656 | j = 0; | 
|---|
|  | 1657 | } | 
|---|
|  | 1658 | if (j) { | 
|---|
|  | 1659 | SaveFlag = true; | 
|---|
|  | 1660 | cout << Verbose(0) << "Converting to prinicipal axis system." << endl; | 
|---|
|  | 1661 | } else | 
|---|
|  | 1662 | cout << Verbose(0) << "Evaluating prinicipal axis." << endl; | 
|---|
|  | 1663 | mol->PrincipalAxisSystem((ofstream *)&cout, (bool)j); | 
|---|
|  | 1664 | break; | 
|---|
|  | 1665 | case 'o': | 
|---|
|  | 1666 | ExitFlag = 1; | 
|---|
|  | 1667 | if ((argptr >= argc) || (argv[argptr][0] == '-')){ | 
|---|
|  | 1668 | ExitFlag = 255; | 
|---|
|  | 1669 | cerr << "Not enough or invalid arguments given for convex envelope: -o <tecplot output file>" << endl; | 
|---|
|  | 1670 | } else { | 
|---|
|  | 1671 | cout << Verbose(0) << "Evaluating volume of the convex envelope."; | 
|---|
|  | 1672 | cout << Verbose(1) << "Storing tecplot data in " << argv[argptr] << "." << endl; | 
|---|
|  | 1673 | VolumeOfConvexEnvelope((ofstream *)&cout, argv[argptr], &configuration, NULL, mol); | 
|---|
|  | 1674 | argptr+=1; | 
|---|
|  | 1675 | } | 
|---|
|  | 1676 | break; | 
|---|
|  | 1677 | case 'U': | 
|---|
|  | 1678 | ExitFlag = 1; | 
|---|
|  | 1679 | if ((argptr+1 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) ) { | 
|---|
|  | 1680 | ExitFlag = 255; | 
|---|
|  | 1681 | cerr << "Not enough or invalid arguments given for suspension with specified volume: -U <volume> <density>" << endl; | 
|---|
|  | 1682 | volume = -1; // for case 'u': don't print error again | 
|---|
|  | 1683 | } else { | 
|---|
|  | 1684 | volume = atof(argv[argptr++]); | 
|---|
|  | 1685 | cout << Verbose(0) << "Using " << volume << " angstrom^3 as the volume instead of convex envelope one's." << endl; | 
|---|
|  | 1686 | } | 
|---|
|  | 1687 | case 'u': | 
|---|
|  | 1688 | ExitFlag = 1; | 
|---|
|  | 1689 | if ((argptr >= argc) || (!IsValidNumber(argv[argptr])) ) { | 
|---|
|  | 1690 | if (volume != -1) | 
|---|
|  | 1691 | ExitFlag = 255; | 
|---|
|  | 1692 | cerr << "Not enough arguments given for suspension: -u <density>" << endl; | 
|---|
|  | 1693 | } else { | 
|---|
|  | 1694 | double density; | 
|---|
|  | 1695 | SaveFlag = true; | 
|---|
|  | 1696 | cout << Verbose(0) << "Evaluating necessary cell volume for a cluster suspended in water."; | 
|---|
|  | 1697 | density = atof(argv[argptr++]); | 
|---|
|  | 1698 | if (density < 1.0) { | 
|---|
|  | 1699 | cerr << Verbose(0) << "Density must be greater than 1.0g/cm^3 !" << endl; | 
|---|
|  | 1700 | density = 1.3; | 
|---|
|  | 1701 | } | 
|---|
|  | 1702 | //                                                              for(int i=0;i<NDIM;i++) { | 
|---|
|  | 1703 | //                                                                      repetition[i] = atoi(argv[argptr++]); | 
|---|
|  | 1704 | //                                                                      if (repetition[i] < 1) | 
|---|
|  | 1705 | //                                                                              cerr << Verbose(0) << "ERROR: repetition value must be greater 1!" << endl; | 
|---|
|  | 1706 | //                                                                      repetition[i] = 1; | 
|---|
|  | 1707 | //                                                              } | 
|---|
|  | 1708 | PrepareClustersinWater((ofstream *)&cout, &configuration, mol, volume, density);        // if volume == 0, will calculate from ConvexEnvelope | 
|---|
|  | 1709 | } | 
|---|
|  | 1710 | break; | 
|---|
|  | 1711 | case 'd': | 
|---|
|  | 1712 | ExitFlag = 1; | 
|---|
|  | 1713 | if ((argptr+2 >= argc) || (!IsValidNumber(argv[argptr])) || (!IsValidNumber(argv[argptr+1])) || (!IsValidNumber(argv[argptr+2])) ) { | 
|---|
|  | 1714 | ExitFlag = 255; | 
|---|
|  | 1715 | cerr << "Not enough or invalid arguments given for repeating cells: -d <repeat_x> <repeat_y> <repeat_z>" << endl; | 
|---|
|  | 1716 | } else { | 
|---|
|  | 1717 | SaveFlag = true; | 
|---|
|  | 1718 | for (int axis = 1; axis <= NDIM; axis++) { | 
|---|
|  | 1719 | int faktor = atoi(argv[argptr++]); | 
|---|
|  | 1720 | int count; | 
|---|
|  | 1721 | element ** Elements; | 
|---|
|  | 1722 | Vector ** vectors; | 
|---|
|  | 1723 | if (faktor < 1) { | 
|---|
|  | 1724 | cerr << Verbose(0) << "ERROR: Repetition faktor mus be greater than 1!" << endl; | 
|---|
|  | 1725 | faktor = 1; | 
|---|
|  | 1726 | } | 
|---|
|  | 1727 | mol->CountAtoms((ofstream *)&cout);     // recount atoms | 
|---|
|  | 1728 | if (mol->AtomCount != 0) {      // if there is more than none | 
|---|
|  | 1729 | count = mol->AtomCount;  // is changed becausing of adding, thus has to be stored away beforehand | 
|---|
|  | 1730 | Elements = new element *[count]; | 
|---|
|  | 1731 | vectors = new Vector *[count]; | 
|---|
|  | 1732 | j = 0; | 
|---|
|  | 1733 | first = mol->start; | 
|---|
|  | 1734 | while (first->next != mol->end) {       // make a list of all atoms with coordinates and element | 
|---|
|  | 1735 | first = first->next; | 
|---|
|  | 1736 | Elements[j] = first->type; | 
|---|
|  | 1737 | vectors[j] = &first->x; | 
|---|
|  | 1738 | j++; | 
|---|
|  | 1739 | } | 
|---|
|  | 1740 | if (count != j) | 
|---|
|  | 1741 | cout << Verbose(0) << "ERROR: AtomCount " << count << " is not equal to number of atoms in molecule " << j << "!" << endl; | 
|---|
|  | 1742 | x.Zero(); | 
|---|
|  | 1743 | y.Zero(); | 
|---|
|  | 1744 | y.x[abs(axis)-1] = mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] * abs(axis)/axis; // last term is for sign, first is for magnitude | 
|---|
|  | 1745 | for (int i=1;i<faktor;i++) {    // then add this list with respective translation factor times | 
|---|
|  | 1746 | x.AddVector(&y); // per factor one cell width further | 
|---|
|  | 1747 | for (int k=count;k--;) { // go through every atom of the original cell | 
|---|
|  | 1748 | first = new atom(); // create a new body | 
|---|
|  | 1749 | first->x.CopyVector(vectors[k]);        // use coordinate of original atom | 
|---|
|  | 1750 | first->x.AddVector(&x);                 // translate the coordinates | 
|---|
|  | 1751 | first->type = Elements[k];      // insert original element | 
|---|
|  | 1752 | mol->AddAtom(first);                            // and add to the molecule (which increments ElementsInMolecule, AtomCount, ...) | 
|---|
|  | 1753 | } | 
|---|
|  | 1754 | } | 
|---|
|  | 1755 | // free memory | 
|---|
|  | 1756 | delete[](Elements); | 
|---|
|  | 1757 | delete[](vectors); | 
|---|
|  | 1758 | // correct cell size | 
|---|
|  | 1759 | if (axis < 0) { // if sign was negative, we have to translate everything | 
|---|
|  | 1760 | x.Zero(); | 
|---|
|  | 1761 | x.AddVector(&y); | 
|---|
|  | 1762 | x.Scale(-(faktor-1)); | 
|---|
|  | 1763 | mol->Translate(&x); | 
|---|
|  | 1764 | } | 
|---|
|  | 1765 | mol->cell_size[(abs(axis) == 2) ? 2 : ((abs(axis) == 3) ? 5 : 0)] *= faktor; | 
|---|
|  | 1766 | } | 
|---|
|  | 1767 | } | 
|---|
|  | 1768 | } | 
|---|
|  | 1769 | break; | 
|---|
|  | 1770 | default:         // no match? Step on | 
|---|
|  | 1771 | if ((argptr < argc) && (argv[argptr][0] != '-')) // if it started with a '-' we've already made a step! | 
|---|
|  | 1772 | argptr++; | 
|---|
|  | 1773 | break; | 
|---|
|  | 1774 | } | 
|---|
|  | 1775 | } | 
|---|
|  | 1776 | } else argptr++; | 
|---|
|  | 1777 | } while (argptr < argc); | 
|---|
|  | 1778 | if (SaveFlag) | 
|---|
| [1907a7] | 1779 | SaveConfig(ConfigFileName, &configuration, periode, molecules); | 
|---|
| [6ac7ee] | 1780 | } else {        // no arguments, hence scan the elements db | 
|---|
| [989bf6] | 1781 | if (periode->LoadPeriodentafel(configuration.databasepath)) | 
|---|
| [6ac7ee] | 1782 | cout << Verbose(0) << "Element list loaded successfully." << endl; | 
|---|
|  | 1783 | else | 
|---|
|  | 1784 | cout << Verbose(0) << "Element list loading failed." << endl; | 
|---|
|  | 1785 | configuration.RetrieveConfigPathAndName("main_pcp_linux"); | 
|---|
|  | 1786 | } | 
|---|
| [e72001] | 1787 | return(ExitFlag); | 
|---|
| [ca2b83] | 1788 | }; | 
|---|
|  | 1789 |  | 
|---|
|  | 1790 | /********************************************** Main routine **************************************/ | 
|---|
| [14de469] | 1791 |  | 
|---|
| [ca2b83] | 1792 | int main(int argc, char **argv) | 
|---|
|  | 1793 | { | 
|---|
| [6ac7ee] | 1794 | periodentafel *periode = new periodentafel; // and a period table of all elements | 
|---|
| [1907a7] | 1795 | MoleculeListClass *molecules = new MoleculeListClass;  // list of all molecules | 
|---|
|  | 1796 | molecule *mol = NULL; | 
|---|
| [6ac7ee] | 1797 | config configuration; | 
|---|
|  | 1798 | char choice;    // menu choice char | 
|---|
|  | 1799 | Vector x,y,z,n; // coordinates for absolute point in cell volume | 
|---|
|  | 1800 | ifstream test; | 
|---|
|  | 1801 | ofstream output; | 
|---|
|  | 1802 | string line; | 
|---|
|  | 1803 | char *ConfigFileName = NULL; | 
|---|
| [4777e9] | 1804 | int j, count; | 
|---|
| [6ac7ee] | 1805 |  | 
|---|
|  | 1806 | // =========================== PARSE COMMAND LINE OPTIONS ==================================== | 
|---|
| [989bf6] | 1807 | j = ParseCommandLineOptions(argc, argv, molecules, periode, configuration, ConfigFileName); | 
|---|
| [e72001] | 1808 | switch(j) { | 
|---|
|  | 1809 | case 0:  // something went wrong | 
|---|
|  | 1810 | delete(molecules); // also free's all molecules contained | 
|---|
|  | 1811 | delete(periode); | 
|---|
|  | 1812 | return j; | 
|---|
|  | 1813 | break; | 
|---|
|  | 1814 | case 1:  // just for -v and -h options | 
|---|
|  | 1815 | delete(molecules); // also free's all molecules contained | 
|---|
|  | 1816 | delete(periode); | 
|---|
|  | 1817 | return 0; | 
|---|
|  | 1818 | break; | 
|---|
|  | 1819 | default: | 
|---|
|  | 1820 | break; | 
|---|
|  | 1821 | } | 
|---|
| [6ac7ee] | 1822 |  | 
|---|
|  | 1823 | // General stuff | 
|---|
| [1907a7] | 1824 | if (molecules->ListOfMolecules.size() == 0) { | 
|---|
|  | 1825 | mol = new molecule(periode); | 
|---|
|  | 1826 | if (mol->cell_size[0] == 0.) { | 
|---|
|  | 1827 | cout << Verbose(0) << "enter lower tridiagonal form of basis matrix" << endl << endl; | 
|---|
|  | 1828 | for (int i=0;i<6;i++) { | 
|---|
|  | 1829 | cout << Verbose(1) << "Cell size" << i << ": "; | 
|---|
|  | 1830 | cin >> mol->cell_size[i]; | 
|---|
|  | 1831 | } | 
|---|
|  | 1832 | } | 
|---|
|  | 1833 | molecules->insert(mol); | 
|---|
| [6ac7ee] | 1834 | } | 
|---|
|  | 1835 |  | 
|---|
|  | 1836 | // =========================== START INTERACTIVE SESSION ==================================== | 
|---|
|  | 1837 |  | 
|---|
|  | 1838 | // now the main construction loop | 
|---|
|  | 1839 | cout << Verbose(0) << endl << "Now comes the real construction..." << endl; | 
|---|
|  | 1840 | do { | 
|---|
|  | 1841 | cout << Verbose(0) << endl << endl; | 
|---|
| [1907a7] | 1842 | cout << Verbose(0) << "============Molecule list=======================" << endl; | 
|---|
|  | 1843 | molecules->Enumerate((ofstream *)&cout); | 
|---|
| [6ac7ee] | 1844 | cout << Verbose(0) << "============Menu===============================" << endl; | 
|---|
| [1907a7] | 1845 | cout << Verbose(0) << "a - set molecule (in)active" << endl; | 
|---|
|  | 1846 | cout << Verbose(0) << "e - edit new molecules" << endl; | 
|---|
|  | 1847 | cout << Verbose(0) << "g - globally manipulate atoms in molecule" << endl; | 
|---|
|  | 1848 | cout << Verbose(0) << "M - Merge molecules" << endl; | 
|---|
|  | 1849 | cout << Verbose(0) << "m - manipulate atoms" << endl; | 
|---|
|  | 1850 | cout << Verbose(0) << "-----------------------------------------------" << endl; | 
|---|
|  | 1851 | cout << Verbose(0) << "c - edit the current configuration" << endl; | 
|---|
|  | 1852 | cout << Verbose(0) << "-----------------------------------------------" << endl; | 
|---|
|  | 1853 | cout << Verbose(0) << "s - save current setup to config file" << endl; | 
|---|
|  | 1854 | cout << Verbose(0) << "T - call the current test routine" << endl; | 
|---|
|  | 1855 | cout << Verbose(0) << "q - quit" << endl; | 
|---|
|  | 1856 | cout << Verbose(0) << "===============================================" << endl; | 
|---|
|  | 1857 | cout << Verbose(0) << "Input: "; | 
|---|
|  | 1858 | cin >> choice; | 
|---|
| [6ac7ee] | 1859 |  | 
|---|
|  | 1860 | switch (choice) { | 
|---|
| [1907a7] | 1861 | case 'a':  // (in)activate molecule | 
|---|
|  | 1862 | { | 
|---|
|  | 1863 | cout << "Enter index of molecule: "; | 
|---|
|  | 1864 | cin >> j; | 
|---|
|  | 1865 | count = 1; | 
|---|
|  | 1866 | MoleculeList::iterator ListRunner = molecules->ListOfMolecules.begin(); | 
|---|
|  | 1867 | for(; ((ListRunner != molecules->ListOfMolecules.end()) && (count < j)); ListRunner++); | 
|---|
|  | 1868 | if (count == j) | 
|---|
|  | 1869 | (*ListRunner)->ActiveFlag = !(*ListRunner)->ActiveFlag; | 
|---|
|  | 1870 | } | 
|---|
|  | 1871 | break; | 
|---|
|  | 1872 |  | 
|---|
|  | 1873 | case 'c': // edit each field of the configuration | 
|---|
|  | 1874 | configuration.Edit(); | 
|---|
| [6ac7ee] | 1875 | break; | 
|---|
|  | 1876 |  | 
|---|
| [ca3ccc] | 1877 | case 'e': // create molecule | 
|---|
|  | 1878 | EditMolecules(periode, molecules); | 
|---|
|  | 1879 | break; | 
|---|
|  | 1880 |  | 
|---|
| [1907a7] | 1881 | case 'g': // manipulate molecules | 
|---|
|  | 1882 | ManipulateMolecules(periode, molecules, &configuration); | 
|---|
|  | 1883 | break; | 
|---|
| [6ac7ee] | 1884 |  | 
|---|
| [1907a7] | 1885 | case 'M':  // merge molecules | 
|---|
|  | 1886 | MergeMolecules(periode, molecules); | 
|---|
|  | 1887 | break; | 
|---|
| [6ac7ee] | 1888 |  | 
|---|
| [1907a7] | 1889 | case 'm': // manipulate atoms | 
|---|
|  | 1890 | ManipulateAtoms(periode, molecules, &configuration); | 
|---|
|  | 1891 | break; | 
|---|
| [6ac7ee] | 1892 |  | 
|---|
|  | 1893 | case 'q': // quit | 
|---|
|  | 1894 | break; | 
|---|
|  | 1895 |  | 
|---|
|  | 1896 | case 's': // save to config file | 
|---|
| [1907a7] | 1897 | SaveConfig(ConfigFileName, &configuration, periode, molecules); | 
|---|
| [6ac7ee] | 1898 | break; | 
|---|
|  | 1899 |  | 
|---|
|  | 1900 | case 'T': | 
|---|
| [1907a7] | 1901 | testroutine(molecules); | 
|---|
| [6ac7ee] | 1902 | break; | 
|---|
|  | 1903 |  | 
|---|
| [1907a7] | 1904 | default: | 
|---|
|  | 1905 | break; | 
|---|
| [6ac7ee] | 1906 | }; | 
|---|
|  | 1907 | } while (choice != 'q'); | 
|---|
|  | 1908 |  | 
|---|
|  | 1909 | // save element data base | 
|---|
| [989bf6] | 1910 | if (periode->StorePeriodentafel(configuration.databasepath)) //ElementsFileName | 
|---|
| [6ac7ee] | 1911 | cout << Verbose(0) << "Saving of elements.db successful." << endl; | 
|---|
|  | 1912 | else | 
|---|
|  | 1913 | cout << Verbose(0) << "Saving of elements.db failed." << endl; | 
|---|
|  | 1914 |  | 
|---|
| [e72001] | 1915 | delete(molecules); // also free's all molecules contained | 
|---|
| [6ac7ee] | 1916 | delete(periode); | 
|---|
|  | 1917 | return (0); | 
|---|
| [14de469] | 1918 | } | 
|---|
|  | 1919 |  | 
|---|
|  | 1920 | /********************************************** E N D **************************************************/ | 
|---|