source: src/builder.cpp@ f67b6e

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since f67b6e was f67b6e, checked in by Frederik Heber <heber@…>, 15 years ago

Multi-Candidate-Add included and incorporated class Info into boundary.cpp, tesselation.cpp and tesselationhelpers.cpp

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