source: src/Element/element.cpp@ ff4fff9

CombiningParticlePotentialParsing
Last change on this file since ff4fff9 was c85c2e, checked in by Frederik Heber <heber@…>, 9 years ago

FIX: Element's HBondDistance and HBondAngle were not initialized as -1.

  • this causes faulty behavior with saturate-atoms (e.g. Li) which showed the bug.
  • TESTFIX: ElementUnitTest adapted to new default behavior.
  • Property mode set to 100755
File size: 5.3 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
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/>.
21 */
22
23/** \file element.cpp
24 *
25 * Function implementations for the class element.
26 *
27 */
28
29// include config.h
30#ifdef HAVE_CONFIG_H
31#include <config.h>
32#endif
33
34#include "CodePatterns/MemDebug.hpp"
35
36#include <iomanip>
37#include <fstream>
38
39#include "CodePatterns/Assert.hpp"
40#include "CodePatterns/Log.hpp"
41#include "element.hpp"
42
43using namespace std;
44
45/************************************* Functions for class element **********************************/
46
47/** Constructor of class element.
48 */
49element::element() :
50 mass(0),
51 CovalentRadius(0),
52 Electronegativity(0.),
53 VanDerWaalsRadius(0),
54 Z(0),
55 period(""),
56 group(""),
57 block(""),
58 Valence(0),
59 NoValenceOrbitals(0),
60 name(""),
61 symbol("")
62{
63 for (size_t i =0; i<3;++i)
64 color[i] = (unsigned char)0;
65 for (size_t i =0; i<3;++i)
66 HBondDistance[i] = -1.;
67 for (size_t i =0; i<3;++i)
68 HBondAngle[i] = -1.;
69};
70
71element::element(const element &src) :
72 mass(src.mass),
73 CovalentRadius(src.CovalentRadius),
74 Electronegativity(src.Electronegativity),
75 VanDerWaalsRadius(src.VanDerWaalsRadius),
76 Z(src.Z),
77 period(src.period),
78 group(src.group),
79 block(src.block),
80 Valence(src.Valence),
81 NoValenceOrbitals(src.NoValenceOrbitals),
82 name(src.name),
83 symbol(src.symbol)
84{
85 for (size_t i =0; i<3;++i)
86 color[i] = src.color[i];
87 for (size_t i =0; i<3;++i)
88 HBondDistance[i] = src.HBondDistance[i];
89 for (size_t i =0; i<3;++i)
90 HBondAngle[i] = src.HBondAngle[i];
91}
92
93/** Destructor of class element.
94 */
95element::~element() {};
96
97element &element::operator=(const element &src){
98 if(this!=&src){
99 mass=src.mass;
100 CovalentRadius=src.CovalentRadius;
101 Electronegativity=src.Electronegativity;
102 VanDerWaalsRadius=src.VanDerWaalsRadius;
103 Z=src.Z;
104 period = src.period;
105 group = src.group;
106 block = src.block;
107 Valence=src.Valence;
108 NoValenceOrbitals=src.NoValenceOrbitals;
109 for (size_t i =0; i<3;++i)
110 color[i] = src.color[i];
111 for (size_t i =0; i<3;++i)
112 HBondDistance[i] = src.HBondDistance[i];
113 for (size_t i =0; i<3;++i)
114 HBondAngle[i] = src.HBondAngle[i];
115 name=src.name;
116 symbol=src.symbol;
117 }
118 return *this;
119}
120
121double element::getMass() const
122{
123 return mass;
124}
125
126double element::getCovalentRadius() const
127{
128 return CovalentRadius;
129}
130
131const unsigned char * element::getColor() const
132{
133 return color;
134}
135
136double element::getElectronegativity() const
137{
138 return Electronegativity;
139}
140
141double element::getVanDerWaalsRadius() const
142{
143 return VanDerWaalsRadius;
144}
145
146atomicNumber_t element::getAtomicNumber() const
147{
148 return Z;
149}
150
151double element::getValence() const
152{
153 return Valence;
154}
155
156int element::getNoValenceOrbitals() const
157{
158 return NoValenceOrbitals;
159}
160
161double element::getHBondDistance(const size_t i) const
162{
163 ASSERT((i<3), "Access to element::HBondDistance out of bounds.");
164 return HBondDistance[i];
165}
166
167double element::getHBondAngle(const size_t i) const
168{
169 ASSERT((i<3), "Access to element::HBondAngle out of bounds.");
170 return HBondAngle[i];
171}
172
173const string &element::getSymbol() const{
174 return symbol;
175}
176
177void element::setSymbol(const std::string &temp)
178{
179 symbol = temp;
180}
181
182const std::string &element::getName() const{
183 return name;
184}
185
186void element::setName(const std::string &temp)
187{
188 name = temp;
189}
190
191/** Comparison operator for stub of Element.
192 *
193 * @param other other instance to compare to
194 * @return true if all member variables have the same contents.
195 */
196bool element::operator==(const element &other) const
197{
198 if (mass != other.mass) return false;
199 if (CovalentRadius != other.CovalentRadius) return false;
200 if (Electronegativity != other.Electronegativity) return false;
201 if (VanDerWaalsRadius != other.VanDerWaalsRadius) return false;
202 if (Z != other.Z) return false;
203 if (period != other.period) return false;
204 if (group != other.group) return false;
205 if (block != other.block) return false;
206 if (Valence != other.Valence) return false;
207 if (NoValenceOrbitals != other.NoValenceOrbitals) return false;
208 for (size_t i = 0; i < 3; ++i)
209 if (HBondDistance[i] != other.HBondDistance[i]) return false;
210 for (size_t i = 0; i < 3; ++i)
211 if (HBondAngle[i] != other.HBondAngle[i]) return false;
212 for (size_t i = 0; i < 3; ++i)
213 if (color[i] != other.color[i]) return false;
214 if (name != other.name) return false;
215 if (symbol != other.symbol) return false;
216 return true;
217}
218
219std::ostream &operator<<(std::ostream &ost,const element &elem){
220 ost << elem.getName() << "(" << elem.getAtomicNumber() << ")";
221 return ost;
222}
223
Note: See TracBrowser for help on using the repository browser.