[bcf653] | 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 |
|
---|
[14de469] | 8 | /** \file element.cpp
|
---|
| 9 | *
|
---|
| 10 | * Function implementations for the class element.
|
---|
| 11 | *
|
---|
| 12 | */
|
---|
| 13 |
|
---|
[bf3817] | 14 | // include config.h
|
---|
| 15 | #ifdef HAVE_CONFIG_H
|
---|
| 16 | #include <config.h>
|
---|
| 17 | #endif
|
---|
| 18 |
|
---|
[ad011c] | 19 | #include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 20 |
|
---|
[cd4ccc] | 21 | #include <iomanip>
|
---|
| 22 | #include <fstream>
|
---|
| 23 |
|
---|
[ad011c] | 24 | #include "CodePatterns/Assert.hpp"
|
---|
[cd4ccc] | 25 | #include "element.hpp"
|
---|
[14de469] | 26 |
|
---|
[ead4e6] | 27 | using namespace std;
|
---|
| 28 |
|
---|
[14de469] | 29 | /************************************* Functions for class element **********************************/
|
---|
| 30 |
|
---|
| 31 | /** Constructor of class element.
|
---|
| 32 | */
|
---|
[d5af3e] | 33 | element::element() :
|
---|
| 34 | mass(0),
|
---|
| 35 | CovalentRadius(0),
|
---|
| 36 | VanDerWaalsRadius(0),
|
---|
| 37 | Z(-1),
|
---|
| 38 | Valence(0),
|
---|
| 39 | NoValenceOrbitals(0)
|
---|
| 40 | {
|
---|
[27c6be] | 41 | };
|
---|
[14de469] | 42 |
|
---|
[2a76b0] | 43 | element::element(const element &src) :
|
---|
| 44 | mass(src.mass),
|
---|
| 45 | CovalentRadius(src.CovalentRadius),
|
---|
| 46 | VanDerWaalsRadius(src.VanDerWaalsRadius),
|
---|
| 47 | Z(src.Z),
|
---|
| 48 | Valence(src.Valence),
|
---|
| 49 | NoValenceOrbitals(src.NoValenceOrbitals),
|
---|
| 50 | name(src.name),
|
---|
| 51 | symbol(src.symbol)
|
---|
| 52 | {
|
---|
[ae959a] | 53 | period = src.period;
|
---|
| 54 | group = src.group;
|
---|
| 55 | block = src.block;
|
---|
[2a76b0] | 56 | }
|
---|
| 57 |
|
---|
[14de469] | 58 | /** Destructor of class element.
|
---|
| 59 | */
|
---|
| 60 | element::~element() {};
|
---|
| 61 |
|
---|
[2a76b0] | 62 | element &element::operator=(const element &src){
|
---|
| 63 | if(this!=&src){
|
---|
| 64 | mass=src.mass;
|
---|
| 65 | CovalentRadius=src.CovalentRadius;
|
---|
| 66 | VanDerWaalsRadius=src.VanDerWaalsRadius;
|
---|
| 67 | Z=src.Z;
|
---|
| 68 | Valence=src.Valence;
|
---|
| 69 | NoValenceOrbitals=src.NoValenceOrbitals;
|
---|
| 70 | name=src.name;
|
---|
| 71 | symbol=src.symbol;
|
---|
[ae959a] | 72 | period = src.period;
|
---|
| 73 | group = src.group;
|
---|
| 74 | block = src.block;
|
---|
[2a76b0] | 75 | }
|
---|
| 76 | return *this;
|
---|
| 77 | }
|
---|
| 78 |
|
---|
[14de469] | 79 | /** Prints element data to \a *out.
|
---|
| 80 | * \param *out outstream
|
---|
| 81 | */
|
---|
[ead4e6] | 82 | bool element::Output(ostream * const out) const
|
---|
[14de469] | 83 | {
|
---|
[042f82] | 84 | if (out != NULL) {
|
---|
| 85 | *out << name << "\t" << symbol << "\t" << period << "\t" << group << "\t" << block << "\t" << Z << "\t" << mass << "\t" << CovalentRadius << "\t" << VanDerWaalsRadius << endl;
|
---|
| 86 | //*out << Z << "\t" << fixed << setprecision(11) << showpoint << mass << "g/mol\t" << name << "\t" << symbol << "\t" << endl;
|
---|
| 87 | return true;
|
---|
| 88 | } else
|
---|
| 89 | return false;
|
---|
[14de469] | 90 | };
|
---|
| 91 |
|
---|
| 92 | /** Prints element data to \a *out.
|
---|
| 93 | * \param *out outstream
|
---|
[042f82] | 94 | * \param No cardinal number of element
|
---|
[14de469] | 95 | * \param NoOfAtoms total number of atom of this element type
|
---|
| 96 | */
|
---|
[ead4e6] | 97 | bool element::Checkout(ostream * const out, const int Number, const int NoOfAtoms) const
|
---|
[14de469] | 98 | {
|
---|
[042f82] | 99 | if (out != NULL) {
|
---|
| 100 | *out << "Ion_Type" << Number << "\t" << NoOfAtoms << "\t" << Z << "\t1.0\t3\t3\t" << fixed << setprecision(11) << showpoint << mass << "\t" << name << "\t" << symbol <<endl;
|
---|
| 101 | return true;
|
---|
| 102 | } else
|
---|
| 103 | return false;
|
---|
[14de469] | 104 | };
|
---|
[ead4e6] | 105 |
|
---|
| 106 | atomicNumber_t element::getNumber() const{
|
---|
| 107 | return Z;
|
---|
| 108 | }
|
---|
[83f176] | 109 |
|
---|
| 110 | double element::getMass() const
|
---|
| 111 | {
|
---|
| 112 | return mass;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | double element::getCovalentRadius() const
|
---|
| 116 | {
|
---|
| 117 | return CovalentRadius;
|
---|
| 118 | }
|
---|
| 119 |
|
---|
[67c92b] | 120 | double element::getElectronegativity() const
|
---|
| 121 | {
|
---|
| 122 | return Electronegativity;
|
---|
| 123 | }
|
---|
| 124 |
|
---|
[83f176] | 125 | double element::getVanDerWaalsRadius() const
|
---|
| 126 | {
|
---|
| 127 | return VanDerWaalsRadius;
|
---|
| 128 | }
|
---|
| 129 |
|
---|
| 130 | int element::getAtomicNumber() const
|
---|
| 131 | {
|
---|
| 132 | return Z;
|
---|
| 133 | }
|
---|
| 134 |
|
---|
| 135 | double element::getValence() const
|
---|
| 136 | {
|
---|
| 137 | return Valence;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
| 140 | int element::getNoValenceOrbitals() const
|
---|
| 141 | {
|
---|
| 142 | return NoValenceOrbitals;
|
---|
| 143 | }
|
---|
| 144 |
|
---|
| 145 | double element::getHBondDistance(const int i) const
|
---|
| 146 | {
|
---|
| 147 | ASSERT((i>=0) && (i<3), "Access to element::HBondDistance out of bounds.");
|
---|
| 148 | return HBondDistance[i];
|
---|
| 149 | }
|
---|
| 150 |
|
---|
| 151 | double element::getHBondAngle(const int i) const
|
---|
| 152 | {
|
---|
| 153 | ASSERT((i>=0) && (i<3), "Access to element::HBondAngle out of bounds.");
|
---|
| 154 | return HBondAngle[i];
|
---|
| 155 | }
|
---|
| 156 |
|
---|
[7e3fc94] | 157 | string &element::getSymbol(){
|
---|
| 158 | return symbol;
|
---|
[ead4e6] | 159 | }
|
---|
[e345e3] | 160 |
|
---|
[7e3fc94] | 161 | const string &element::getSymbol() const{
|
---|
| 162 | return symbol;
|
---|
[ff6a10] | 163 | }
|
---|
[83f176] | 164 |
|
---|
| 165 | void element::setSymbol(const std::string &temp)
|
---|
| 166 | {
|
---|
| 167 | symbol = temp;
|
---|
| 168 | }
|
---|
[ff6a10] | 169 |
|
---|
[7e3fc94] | 170 | std::string &element::getName(){
|
---|
| 171 | return name;
|
---|
[e345e3] | 172 | }
|
---|
| 173 |
|
---|
[7e3fc94] | 174 | const std::string &element::getName() const{
|
---|
| 175 | return name;
|
---|
[ff6a10] | 176 | }
|
---|
[83f176] | 177 |
|
---|
| 178 | void element::setName(const std::string &temp)
|
---|
| 179 | {
|
---|
| 180 | name = temp;
|
---|
| 181 | }
|
---|
[ff6a10] | 182 |
|
---|
[e345e3] | 183 | std::ostream &operator<<(std::ostream &ost,const element &elem){
|
---|
| 184 | ost << elem.getName() << "(" << elem.getNumber() << ")";
|
---|
| 185 | return ost;
|
---|
| 186 | }
|
---|