| [bcf653] | 1 | /*
 | 
|---|
 | 2 |  * Project: MoleCuilder
 | 
|---|
 | 3 |  * Description: creates and alters molecular systems
 | 
|---|
| [0aa122] | 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| [94d5ac6] | 5 |  * 
 | 
|---|
 | 6 |  *
 | 
|---|
 | 7 |  *   This file is part of MoleCuilder.
 | 
|---|
 | 8 |  *
 | 
|---|
 | 9 |  *    MoleCuilder is free software: you can redistribute it and/or modify
 | 
|---|
 | 10 |  *    it under the terms of the GNU General Public License as published by
 | 
|---|
 | 11 |  *    the Free Software Foundation, either version 2 of the License, or
 | 
|---|
 | 12 |  *    (at your option) any later version.
 | 
|---|
 | 13 |  *
 | 
|---|
 | 14 |  *    MoleCuilder is distributed in the hope that it will be useful,
 | 
|---|
 | 15 |  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
 | 16 |  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
 | 17 |  *    GNU General Public License for more details.
 | 
|---|
 | 18 |  *
 | 
|---|
 | 19 |  *    You should have received a copy of the GNU General Public License
 | 
|---|
 | 20 |  *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>.
 | 
|---|
| [bcf653] | 21 |  */
 | 
|---|
 | 22 | 
 | 
|---|
| [ab4b55] | 23 | /*
 | 
|---|
| [9e4fd1] | 24 |  * ParserPcpUnitTest.cpp
 | 
|---|
| [ab4b55] | 25 |  *
 | 
|---|
 | 26 |  *  Created on: Mar 3, 2010
 | 
|---|
 | 27 |  *      Author: metzler
 | 
|---|
 | 28 |  */
 | 
|---|
 | 29 | 
 | 
|---|
| [bf3817] | 30 | // include config.h
 | 
|---|
 | 31 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 32 | #include <config.h>
 | 
|---|
 | 33 | #endif
 | 
|---|
 | 34 | 
 | 
|---|
| [9e4fd1] | 35 | #include "ParserPcpUnitTest.hpp"
 | 
|---|
| [ab4b55] | 36 | 
 | 
|---|
 | 37 | #include <cppunit/CompilerOutputter.h>
 | 
|---|
 | 38 | #include <cppunit/extensions/TestFactoryRegistry.h>
 | 
|---|
 | 39 | #include <cppunit/ui/text/TestRunner.h>
 | 
|---|
 | 40 | 
 | 
|---|
| [6f0841] | 41 | #include "Atom/atom.hpp"
 | 
|---|
| [006e1e] | 42 | #include "Atom/AtomObserver.hpp"
 | 
|---|
| [255829] | 43 | #include "CodePatterns/Log.hpp"
 | 
|---|
| [b8d4a3] | 44 | #include "Descriptors/AtomTypeDescriptor.hpp"
 | 
|---|
| [006e1e] | 45 | #include "Element/element.hpp"
 | 
|---|
 | 46 | #include "Element/periodentafel.hpp"
 | 
|---|
| [765f16] | 47 | #include "Parser/ChangeTracker.hpp"
 | 
|---|
 | 48 | #include "Parser/PcpParser.hpp"
 | 
|---|
| [006e1e] | 49 | #include "World.hpp"
 | 
|---|
| [ab4b55] | 50 | 
 | 
|---|
 | 51 | #ifdef HAVE_TESTRUNNER
 | 
|---|
 | 52 | #include "UnitTestMain.hpp"
 | 
|---|
 | 53 | #endif /*HAVE_TESTRUNNER*/
 | 
|---|
 | 54 | 
 | 
|---|
 | 55 | using namespace std;
 | 
|---|
 | 56 | 
 | 
|---|
 | 57 | // Registers the fixture into the 'registry'
 | 
|---|
| [9e4fd1] | 58 | CPPUNIT_TEST_SUITE_REGISTRATION( ParserPcpUnitTest );
 | 
|---|
| [ab4b55] | 59 | 
 | 
|---|
| [1b2d30] | 60 | static string waterPcp = "# ParallelCarParinello - main configuration file - created with molecuilder\n\
 | 
|---|
 | 61 | \n\
 | 
|---|
 | 62 | mainname\tpcp\t# programm name (for runtime files)\n\
 | 
|---|
 | 63 | defaultpath\not specified\t# where to put files during runtime\n\
 | 
|---|
 | 64 | pseudopotpath\not specified\t# where to find pseudopotentials\n\
 | 
|---|
 | 65 | \n\
 | 
|---|
 | 66 | ProcPEGamma\t8\t# for parallel computing: share constants\n\
 | 
|---|
 | 67 | ProcPEPsi\t1\t# for parallel computing: share wave functions\n\
 | 
|---|
 | 68 | DoOutVis\t0\t# Output data for OpenDX\n\
 | 
|---|
 | 69 | DoOutMes\t1\t# Output data for measurements\n\
 | 
|---|
 | 70 | DoOutOrbitals\t0\t# Output all Orbitals\n\
 | 
|---|
 | 71 | DoOutCurr\t0\t# Ouput current density for OpenDx\n\
 | 
|---|
 | 72 | DoOutNICS\t0\t# Output Nucleus independent current shieldings\n\
 | 
|---|
 | 73 | DoPerturbation\t0\t# Do perturbation calculate and determine susceptibility and shielding\n\
 | 
|---|
 | 74 | DoFullCurrent\t0\t# Do full perturbation\n\
 | 
|---|
 | 75 | DoConstrainedMD\t0\t# Do perform a constrained (>0, relating to current MD step) instead of unconstrained (0) MD\n\
 | 
|---|
 | 76 | Thermostat\tBerendsen\t2.5\t# Which Thermostat and its parameters to use in MD case.\n\
 | 
|---|
| [9e4fd1] | 77 | PcpWannier\t0\t# Put virtual centers at indivual orbits, all common, merged by variance, to grid point, to cell center\n\
 | 
|---|
| [1b2d30] | 78 | SawtoothStart\t0.01\t# Absolute value for smooth transition at cell border \n\
 | 
|---|
 | 79 | VectorPlane\t0\t# Cut plane axis (x, y or z: 0,1,2) for two-dim current vector plot\n\
 | 
|---|
 | 80 | VectorCut\t0\t# Cut plane axis value\n\
 | 
|---|
 | 81 | AddGramSch\t1\t# Additional GramSchmidtOrtogonalization to be safe\n\
 | 
|---|
 | 82 | Seed\t1\t# initial value for random seed for Psi coefficients\n\
 | 
|---|
 | 83 | \n\
 | 
|---|
 | 84 | MaxOuterStep\t0\t# number of MolecularDynamics/Structure optimization steps\n\
 | 
|---|
 | 85 | Deltat\t0.01\t# time per MD step\n\
 | 
|---|
 | 86 | OutVisStep\t10\t# Output visual data every ...th step\n\
 | 
|---|
 | 87 | OutSrcStep\t5\t# Output \"restart\" data every ..th step\n\
 | 
|---|
 | 88 | TargetTemp\t0.000950045\t# Target temperature\n\
 | 
|---|
 | 89 | MaxPsiStep\t3\t# number of Minimisation steps per state (0 - default)\n\
 | 
|---|
 | 90 | EpsWannier\t1e-07\t# tolerance value for spread minimisation of orbitals\n\
 | 
|---|
 | 91 | # Values specifying when to stop\n\
 | 
|---|
 | 92 | MaxMinStep\t100\t# Maximum number of steps\n\
 | 
|---|
 | 93 | RelEpsTotalE\t1e-07\t# relative change in total energy\n\
 | 
|---|
 | 94 | RelEpsKineticE\t1e-05\t# relative change in kinetic energy\n\
 | 
|---|
| [2fd80b5] | 95 | MaxMinStopStep\t2\t# check every ..th steps\n\
 | 
|---|
| [1b2d30] | 96 | MaxMinGapStopStep\t1\t# check every ..th steps\n\
 | 
|---|
 | 97 | \n\
 | 
|---|
 | 98 | # Values specifying when to stop for INIT, otherwise same as above\n\
 | 
|---|
 | 99 | MaxInitMinStep\t100\t# Maximum number of steps\n\
 | 
|---|
 | 100 | InitRelEpsTotalE\t1e-05\t# relative change in total energy\n\
 | 
|---|
 | 101 | InitRelEpsKineticE\t0.0001\t# relative change in kinetic energy\n\
 | 
|---|
| [2fd80b5] | 102 | InitMaxMinStopStep\t2\t# check every ..th steps\n\
 | 
|---|
| [1b2d30] | 103 | InitMaxMinGapStopStep\t1\t# check every ..th steps\n\
 | 
|---|
 | 104 | \n\
 | 
|---|
 | 105 | BoxLength\t# (Length of a unit cell)\n\
 | 
|---|
 | 106 | 20\n\
 | 
|---|
 | 107 | 0\t20\n\
 | 
|---|
 | 108 | 0\t0\t20\n\
 | 
|---|
 | 109 | \n\
 | 
|---|
 | 110 | ECut\t128\t# energy cutoff for discretization in Hartrees\n\
 | 
|---|
 | 111 | MaxLevel\t5\t# number of different levels in the code, >=2\n\
 | 
|---|
 | 112 | Level0Factor\t2\t# factor by which node number increases from S to 0 level\n\
 | 
|---|
 | 113 | RiemannTensor\t0\t# (Use metric)\n\
 | 
|---|
 | 114 | PsiType\t0\t# 0 - doubly occupied, 1 - SpinUp,SpinDown\n\
 | 
|---|
| [2fd80b5] | 115 | MaxPsiDouble\t2\t# here: specifying both maximum number of SpinUp- and -Down-states\n\
 | 
|---|
 | 116 | PsiMaxNoUp\t2\t# here: specifying maximum number of SpinUp-states\n\
 | 
|---|
 | 117 | PsiMaxNoDown\t2\t# here: specifying maximum number of SpinDown-states\n\
 | 
|---|
| [1b2d30] | 118 | AddPsis\t0\t# Additional unoccupied Psis for bandgap determination\n\
 | 
|---|
 | 119 | \n\
 | 
|---|
 | 120 | RCut\t20\t# R-cut for the ewald summation\n\
 | 
|---|
 | 121 | StructOpt\t0\t# Do structure optimization beforehand\n\
 | 
|---|
 | 122 | IsAngstroem\t1\t# 0 - Bohr, 1 - Angstroem\n\
 | 
|---|
 | 123 | RelativeCoord\t0\t# whether ion coordinates are relative (1) or absolute (0)\n\
 | 
|---|
 | 124 | MaxTypes\t2\t# maximum number of different ion types\n\
 | 
|---|
 | 125 | \n\
 | 
|---|
 | 126 | # Ion type data (PP = PseudoPotential, Z = atomic number)\n\
 | 
|---|
 | 127 | #Ion_TypeNr.\tAmount\tZ\tRGauss\tL_Max(PP)L_Loc(PP)IonMass\t# chemical name, symbol\n\
 | 
|---|
 | 128 | Ion_Type1\t2\t1\t1.0\t3\t3\t1.008\tHydrogen\tH\n\
 | 
|---|
 | 129 | Ion_Type2\t1\t8\t1.0\t3\t3\t15.999\tOxygen\tO\n\
 | 
|---|
 | 130 | #Ion_TypeNr._Nr.R[0]\tR[1]\tR[2]\tMoveType (0 MoveIon, 1 FixedIon)\n\
 | 
|---|
| [6a465e] | 131 | Ion_Type2_1\t1.000000000\t0.000000000\t0.000000000\t0 # molecule nr 0\n\
 | 
|---|
| [1b2d30] | 132 | Ion_Type1_1\t0.758602\t0.000000000\t0.504284\t0 # molecule nr 1\n\
 | 
|---|
 | 133 | Ion_Type1_2\t0.758602\t0.000000000\t-0.504284\t0 # molecule nr 2\n";
 | 
|---|
| [4fbca9c] | 134 | 
 | 
|---|
| [9e4fd1] | 135 | void ParserPcpUnitTest::setUp() {
 | 
|---|
| [4eb4fe] | 136 |   World::getInstance();
 | 
|---|
| [1b2d30] | 137 | 
 | 
|---|
| [765f16] | 138 |   parser = new FormatParser<pcp>();
 | 
|---|
 | 139 | 
 | 
|---|
| [4fbca9c] | 140 |   setVerbosity(2);
 | 
|---|
 | 141 | 
 | 
|---|
| [1b2d30] | 142 |   // we need hydrogens and oxygens in the following tests
 | 
|---|
 | 143 |   CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(1) != NULL);
 | 
|---|
 | 144 |   CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(8) != NULL);
 | 
|---|
| [ab4b55] | 145 | }
 | 
|---|
 | 146 | 
 | 
|---|
| [765f16] | 147 | void ParserPcpUnitTest::tearDown() 
 | 
|---|
 | 148 | {
 | 
|---|
 | 149 |   delete parser;
 | 
|---|
| [2f40c0e] | 150 |   ChangeTracker::purgeInstance();
 | 
|---|
| [006e1e] | 151 |   AtomObserver::purgeInstance();
 | 
|---|
| [b8d4a3] | 152 |   World::purgeInstance();
 | 
|---|
| [ab4b55] | 153 | }
 | 
|---|
 | 154 | 
 | 
|---|
 | 155 | /************************************ tests ***********************************/
 | 
|---|
 | 156 | 
 | 
|---|
| [9e4fd1] | 157 | void ParserPcpUnitTest::readwritePcpTest() {
 | 
|---|
| [4fbca9c] | 158 |   stringstream input(waterPcp);
 | 
|---|
| [765f16] | 159 |   parser->load(&input);
 | 
|---|
| [b8d4a3] | 160 |   input.clear();
 | 
|---|
 | 161 | 
 | 
|---|
 | 162 |   CPPUNIT_ASSERT_EQUAL(3, World::getInstance().numAtoms());
 | 
|---|
 | 163 | 
 | 
|---|
| [4fbca9c] | 164 |   // check that equality function is ok
 | 
|---|
| [765f16] | 165 |   CPPUNIT_ASSERT(*parser == *parser);
 | 
|---|
| [b8d4a3] | 166 | 
 | 
|---|
| [4fbca9c] | 167 |   stringstream output;
 | 
|---|
| [73916f] | 168 |   std::vector<atom *> atoms = World::getInstance().getAllAtoms();
 | 
|---|
| [765f16] | 169 |   parser->save(&output, atoms);
 | 
|---|
| [b8d4a3] | 170 | 
 | 
|---|
| [4fbca9c] | 171 |   input << output.str();
 | 
|---|
| [765f16] | 172 |   FormatParser<pcp>* parser2 = new FormatParser<pcp>();
 | 
|---|
 | 173 |   parser2->load(&input);
 | 
|---|
| [b8d4a3] | 174 | 
 | 
|---|
| [4fbca9c] | 175 |   CPPUNIT_ASSERT_EQUAL(6, World::getInstance().numAtoms());
 | 
|---|
| [4415da] | 176 | 
 | 
|---|
| [765f16] | 177 |   CPPUNIT_ASSERT(*parser == *parser2);
 | 
|---|
 | 178 | 
 | 
|---|
 | 179 |   delete parser2;
 | 
|---|
| [9131f3] | 180 | }
 | 
|---|