source: src/atom.cpp@ f71baf

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 f71baf was 5309ba, checked in by Frederik Heber <heber@…>, 14 years ago

Renamed ParticleInfo_nr back to Nr.

  • Note that this mostly affected comments.
  • Property mode set to 100644
File size: 11.6 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010 University of Bonn. All rights reserved.
5 * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
6 */
7
8/** \file atom.cpp
9 *
10 * Function implementations for the class atom.
11 *
12 */
13
14// include config.h
15#ifdef HAVE_CONFIG_H
16#include <config.h>
17#endif
18
19#include "CodePatterns/MemDebug.hpp"
20
21#include "atom.hpp"
22#include "bond.hpp"
23#include "CodePatterns/Log.hpp"
24#include "config.hpp"
25#include "element.hpp"
26#include "parser.hpp"
27#include "LinearAlgebra/Vector.hpp"
28#include "World.hpp"
29#include "molecule.hpp"
30#include "Shapes/Shape.hpp"
31
32#include <iomanip>
33#include <iostream>
34
35/************************************* Functions for class atom *************************************/
36
37
38/** Constructor of class atom.
39 */
40atom::atom() :
41 father(this),
42 sort(&Nr),
43 mol(0)
44{};
45
46/** Constructor of class atom.
47 */
48atom::atom(atom *pointer) :
49 ParticleInfo(pointer),
50 father(pointer),
51 sort(&Nr),
52 mol(0)
53{
54 setType(pointer->getType()); // copy element of atom
55 AtomicPosition = pointer->AtomicPosition; // copy trajectory of coordination
56 AtomicVelocity = pointer->AtomicVelocity; // copy trajectory of velocity
57 AtomicForce = pointer->AtomicForce;
58 setFixedIon(pointer->getFixedIon());
59};
60
61atom *atom::clone(){
62 atom *res = new atom(this);
63 World::getInstance().registerAtom(res);
64 return res;
65}
66
67
68/** Destructor of class atom.
69 */
70atom::~atom()
71{
72 removeFromMolecule();
73};
74
75
76void atom::UpdateSteps()
77{
78 LOG(4,"atom::UpdateSteps() called.");
79 // append to position, velocity and force vector
80 AtomInfo::AppendTrajectoryStep();
81 // append to ListOfBonds vector
82 BondedParticleInfo::AppendTrajectoryStep();
83}
84
85/** Climbs up the father list until NULL, last is returned.
86 * \return true father, i.e. whose father points to itself, NULL if it could not be found or has none (added hydrogen)
87 */
88atom *atom::GetTrueFather()
89{
90 if(father == this){ // top most father is the one that points on itself
91 return this;
92 }
93 else if(!father) {
94 return 0;
95 }
96 else {
97 return father->GetTrueFather();
98 }
99};
100
101/** Sets father to itself or its father in case of copying a molecule.
102 */
103void atom::CorrectFather()
104{
105 if (father->father == father) // same atom in copy's father points to itself
106 father = this; // set father to itself (copy of a whole molecule)
107 else
108 father = father->father; // set father to original's father
109
110};
111
112/** Check whether father is equal to given atom.
113 * \param *ptr atom to compare father to
114 * \param **res return value (only set if atom::father is equal to \a *ptr)
115 */
116void atom::EqualsFather ( const atom *ptr, const atom **res ) const
117{
118 if ( ptr == father )
119 *res = this;
120};
121
122bool atom::isFather(const atom *ptr){
123 return ptr==father;
124}
125
126/** Checks whether atom is within the given box.
127 * \param offset offset to box origin
128 * \param *parallelepiped box matrix
129 * \return true - is inside, false - is not
130 */
131bool atom::IsInShape(const Shape& shape) const
132{
133 return shape.isInside(getPosition());
134};
135
136/** Output of a single atom with given numbering.
137 * \param ElementNo cardinal number of the element
138 * \param AtomNo cardinal number among these atoms of the same element
139 * \param *out stream to output to
140 * \param *comment commentary after '#' sign
141 * \return true - \a *out present, false - \a *out is NULL
142 */
143bool atom::OutputIndexed(ofstream * const out, const int ElementNo, const int AtomNo, const char *comment) const
144{
145 if (out != NULL) {
146 *out << "Ion_Type" << ElementNo << "_" << AtomNo << "\t" << fixed << setprecision(9) << showpoint;
147 *out << at(0) << "\t" << at(1) << "\t" << at(2);
148 *out << "\t" << (int)(getFixedIon());
149 if (getAtomicVelocity().Norm() > MYEPSILON)
150 *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
151 if (comment != NULL)
152 *out << " # " << comment << endl;
153 else
154 *out << " # molecule nr " << getNr() << endl;
155 return true;
156 } else
157 return false;
158};
159
160/** Output of a single atom with numbering from array according to atom::type.
161 * \param *ElementNo cardinal number of the element
162 * \param *AtomNo cardinal number among these atoms of the same element
163 * \param *out stream to output to
164 * \param *comment commentary after '#' sign
165 * \return true - \a *out present, false - \a *out is NULL
166 */
167bool atom::OutputArrayIndexed(ostream * const out,const enumeration<const element*> &elementLookup, int *AtomNo, const char *comment) const
168{
169 AtomNo[getType()->getAtomicNumber()]++; // increment number
170 if (out != NULL) {
171 const element *elemental = getType();
172 ASSERT(elementLookup.there.find(elemental)!=elementLookup.there.end(),"Type of this atom was not in the formula upon enumeration");
173 *out << "Ion_Type" << elementLookup.there.find(elemental)->second << "_" << AtomNo[elemental->getAtomicNumber()] << "\t" << fixed << setprecision(9) << showpoint;
174 *out << at(0) << "\t" << at(1) << "\t" << at(2);
175 *out << "\t" << getFixedIon();
176 if (getAtomicVelocity().Norm() > MYEPSILON)
177 *out << "\t" << scientific << setprecision(6) << getAtomicVelocity()[0] << "\t" << getAtomicVelocity()[1] << "\t" << getAtomicVelocity()[2] << "\t";
178 if (comment != NULL)
179 *out << " # " << comment << endl;
180 else
181 *out << " # molecule nr " << getNr() << endl;
182 return true;
183 } else
184 return false;
185};
186
187/** Output of a single atom as one line in xyz file.
188 * \param *out stream to output to
189 * \return true - \a *out present, false - \a *out is NULL
190 */
191bool atom::OutputXYZLine(ofstream *out) const
192{
193 if (out != NULL) {
194 *out << getType()->getSymbol() << "\t" << at(0) << "\t" << at(1) << "\t" << at(2) << "\t" << endl;
195 return true;
196 } else
197 return false;
198};
199
200/** Output of a single atom as one line in xyz file.
201 * \param *out stream to output to
202 * \param *ElementNo array with ion type number in the config file this atom's element shall have
203 * \param *AtomNo array with atom number in the config file this atom shall have, is increase by one automatically
204 * \param step Trajectory time step to output
205 * \return true - \a *out present, false - \a *out is NULL
206 */
207bool atom::OutputTrajectory(ofstream * const out, const enumeration<const element*> &elementLookup, int *AtomNo, const int step) const
208{
209 AtomNo[getType()->getAtomicNumber()]++;
210 if (out != NULL) {
211 const element *elemental = getType();
212 ASSERT(elementLookup.there.find(elemental)!=elementLookup.there.end(),"Type of this atom was not in the formula upon enumeration");
213 *out << "Ion_Type" << elementLookup.there.find(elemental)->second << "_" << AtomNo[getType()->getAtomicNumber()] << "\t" << fixed << setprecision(9) << showpoint;
214 *out << getPositionAtStep(step)[0] << "\t" << getPositionAtStep(step)[1] << "\t" << getPositionAtStep(step)[2];
215 *out << "\t" << (int)(getFixedIon());
216 if (getAtomicVelocityAtStep(step).Norm() > MYEPSILON)
217 *out << "\t" << scientific << setprecision(6) << getAtomicVelocityAtStep(step)[0] << "\t" << getAtomicVelocityAtStep(step)[1] << "\t" << getAtomicVelocityAtStep(step)[2] << "\t";
218 if (getAtomicForceAtStep(step).Norm() > MYEPSILON)
219 *out << "\t" << scientific << setprecision(6) << getAtomicForceAtStep(step)[0] << "\t" << getAtomicForceAtStep(step)[1] << "\t" << getAtomicForceAtStep(step)[2] << "\t";
220 *out << "\t# Number in molecule " << getNr() << endl;
221 return true;
222 } else
223 return false;
224};
225
226/** Output of a single atom as one lin in xyz file.
227 * \param *out stream to output to
228 * \param step Trajectory time step to output
229 * \return true - \a *out present, false - \a *out is NULL
230 */
231bool atom::OutputTrajectoryXYZ(ofstream * const out, const int step) const
232{
233 if (out != NULL) {
234 *out << getType()->getSymbol() << "\t";
235 *out << getPositionAtStep(step)[0] << "\t";
236 *out << getPositionAtStep(step)[1] << "\t";
237 *out << getPositionAtStep(step)[2] << endl;
238 return true;
239 } else
240 return false;
241};
242
243/** Outputs the MPQC configuration line for this atom.
244 * \param *out output stream
245 * \param *center center of molecule subtracted from position
246 * \param *AtomNo pointer to atom counter that is increased by one
247 */
248void atom::OutputMPQCLine(ostream * const out, const Vector *center) const
249{
250 Vector recentered(getPosition());
251 recentered -= *center;
252 *out << "\t\t" << getType()->getSymbol() << " [ " << recentered[0] << "\t" << recentered[1] << "\t" << recentered[2] << " ]" << endl;
253};
254
255/** Compares the indices of \a this atom with a given \a ptr.
256 * \param ptr atom to compare index against
257 * \return true - this one's is smaller, false - not
258 */
259bool atom::Compare(const atom &ptr) const
260{
261 if (getNr() < ptr.getNr())
262 return true;
263 else
264 return false;
265};
266
267/** Returns squared distance to a given vector.
268 * \param origin vector to calculate distance to
269 * \return distance squared
270 */
271double atom::DistanceSquaredToVector(const Vector &origin) const
272{
273 return DistanceSquared(origin);
274};
275
276/** Returns distance to a given vector.
277 * \param origin vector to calculate distance to
278 * \return distance
279 */
280double atom::DistanceToVector(const Vector &origin) const
281{
282 return distance(origin);
283};
284
285/** Initialises the component number array.
286 * Size is set to atom::ListOfBonds.size()+1 (last is th encode end by -1)
287 */
288void atom::InitComponentNr()
289{
290 if (ComponentNr != NULL)
291 delete[](ComponentNr);
292 const BondList& ListOfBonds = getListOfBonds();
293 ComponentNr = new int[ListOfBonds.size()+1];
294 for (int i=ListOfBonds.size()+1;i--;)
295 ComponentNr[i] = -1;
296};
297
298void atom::resetGraphNr(){
299 GraphNr=-1;
300}
301
302std::ostream & atom::operator << (std::ostream &ost) const
303{
304 ParticleInfo::operator<<(ost);
305 ost << "," << getPosition();
306 return ost;
307}
308
309std::ostream & operator << (std::ostream &ost, const atom &a)
310{
311 a.ParticleInfo::operator<<(ost);
312 ost << "," << a.getPosition();
313 return ost;
314}
315
316bool operator < (atom &a, atom &b)
317{
318 return a.Compare(b);
319};
320
321World *atom::getWorld(){
322 return world;
323}
324
325void atom::setWorld(World* _world){
326 world = _world;
327}
328
329bool atom::changeId(atomId_t newId){
330 // first we move ourselves in the world
331 // the world lets us know if that succeeded
332 if(world->changeAtomId(id,newId,this)){
333 id = newId;
334 return true;
335 }
336 else{
337 return false;
338 }
339}
340
341void atom::setId(atomId_t _id) {
342 id=_id;
343}
344
345atomId_t atom::getId() const {
346 return id;
347}
348
349/** Makes the atom be contained in the new molecule \a *_mol.
350 * Uses atom::removeFromMolecule() to delist from old molecule.
351 * \param *_mol pointer to new molecule
352 */
353void atom::setMolecule(molecule *_mol){
354 // take this atom from the old molecule
355 removeFromMolecule();
356 mol = _mol;
357 if(!mol->containsAtom(this)){
358 mol->insert(this);
359 }
360}
361
362/** Returns pointer to the molecule which atom belongs to.
363 * \return containing molecule
364 */
365molecule* atom::getMolecule() const {
366 return mol;
367}
368
369/** Erases the atom in atom::mol's list of atoms and sets it to zero.
370 */
371void atom::removeFromMolecule(){
372 if(mol){
373 if(mol->containsAtom(this)){
374 mol->erase(this);
375 }
376 mol=0;
377 }
378}
379
380int atom::getNr() const{
381 return ParticleInfo::getNr();
382}
383
384atom* NewAtom(atomId_t _id){
385 atom * res =new atom();
386 res->setId(_id);
387 return res;
388}
389
390void DeleteAtom(atom* atom){
391 delete atom;
392}
393
394bool compareAtomElements(atom* atom1,atom* atom2){
395 return atom1->getType()->getNumber() < atom2->getType()->getNumber();
396}
Note: See TracBrowser for help on using the repository browser.