ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-4/src/brains/MoleculeCreator.cpp
Revision: 1813
Committed: Wed Dec 1 17:38:32 2004 UTC (19 years, 8 months ago) by tim
File size: 13528 byte(s)
Log Message:
refactory AtomType

File Contents

# Content
1 /*
2 * Copyright (C) 2000-2004 Object Oriented Parallel Simulation Engine (OOPSE) project
3 *
4 * Contact: oopse@oopse.org
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1
9 * of the License, or (at your option) any later version.
10 * All we ask is that proper credit is given for our work, which includes
11 * - but is not limited to - adding the above copyright notice to the beginning
12 * of your source code files, and to any copyright notice that you may distribute
13 * with programs based on this work.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 */
25
26 /**
27 * @file MoleculeCreator.cpp
28 * @author tlin
29 * @date 11/04/2004
30 * @time 13:44am
31 * @version 1.0
32 */
33
34 #include <cassert>
35
36 #include "brains/MoleculeCreator.hpp"
37 #include "primitives/GhostBend.hpp"
38 #include "utils/simError.h"
39 #include "utils/StringUtils.hpp"
40
41 namespace oopse {
42
43 Molecule* MoleculeCreator::createMolecule(ForceField* ff, MoleculeStamp *molStamp,
44 int stampId, int globalIndex, LocalIndexManager* localIndexMan) {
45
46 Molecule* mol = new Molecule(stampId, globalIndex, molStamp->getID());
47
48 //create atoms
49 Atom* atom;
50 AtomStamp* currentAtomStamp;
51 int nAtom = molStamp->getNAtoms();
52 for (int i = 0; i < nAtom; ++i) {
53 currentAtomStamp = molStamp->getAtom(i);
54 atom = createAtom(ff, mol, currentAtomStamp, localIndexMan);
55 mol->addAtom(atom);
56 }
57
58 //create rigidbodies
59 RigidBody* rb;
60 RigidBodyStamp * currentRigidBodyStamp;
61 int nRigidbodies = molStamp->getNRigidBodies();
62
63 for (int i = 0; i < nRigidbodies; ++i) {
64 currentRigidBodyStamp = molStamp->getRigidBody(i);
65 rb = createRigidBody(molStamp, mol, currentRigidBodyStamp, localIndexMan);
66 mol->addRigidBody(rb);
67 }
68
69 //create bonds
70 Bond* bond;
71 BondStamp* currentBondStamp;
72 int nBonds = molStamp->getNBends();
73
74 for (int i = 0; i < nBonds; ++i) {
75 currentBondStamp = molStamp->getBond(i);
76 bond = createBond(ff, mol, currentBondStamp);
77 mol->addBond(bond);
78 }
79
80 //create bends
81 Bend* bend;
82 BendStamp* currentBendStamp;
83 int nBends = molStamp->getNBends();
84 for (int i = 0; i < nBends; ++i) {
85 currentBendStamp = molStamp->getBend(i);
86 bend = createBend(ff, mol, currentBendStamp);
87 mol->addBend(bend);
88 }
89
90 //create torsions
91 Torsion* torsion;
92 TorsionStamp* currentTorsionStamp;
93 int nTorsions = molStamp->getNTorsions();
94 for (int i = 0; i < nTorsions; ++i) {
95 currentTorsionStamp = molStamp->getTorsion(i);
96 torsion = createTorsion(ff, mol, currentTorsionStamp);
97 mol->addTorsion(torsion);
98 }
99
100 //create cutoffGroups
101 CutoffGroup* cutoffGroup;
102 CutoffGroupStamp* currentCutoffGroupStamp;
103 int nCutoffGroups = molStamp->getNCutoffGroups();
104 for (int i = 0; i < nCutoffGroups; ++i) {
105 currentCutoffGroupStamp = molStamp->getCutoffGroup(i);
106 cutoffGroup = createCutoffGroup(mol, currentCutoffGroupStamp);
107 mol->addCutoffGroup(cutoffGroup);
108 }
109
110 //every free atom is a cutoff group
111 std::set<Atom*> allAtoms;
112 Molecule::AtomIterator ai;
113
114 //add all atoms into allAtoms set
115 for(atom = mol->beginAtom(ai); atom != NULL; atom = mol->nextAtom(ai)) {
116 allAtoms.insert(atom);
117 }
118
119 Molecule::CutoffGroupIterator ci;
120 CutoffGroup* cg;
121 std::set<Atom*> cutoffAtoms;
122
123 //add all of the atoms belong to cutoff groups into cutoffAtoms set
124 for (cg = mol->beginCutoffGroup(ci); cg != NULL; cg = mol->nextCutoffGroup(ci)) {
125
126 for(atom = cg->beginAtom(ai); atom != NULL; atom = cg->nextAtom(ai)) {
127 cutoffAtoms.insert(atom);
128 }
129
130 }
131
132 //find all free atoms (which do not belong to cutoff groups)
133 //performs the "difference" operation from set theory, the output range contains a copy of every
134 //element that is contained in [allAtoms.begin(), allAtoms.end()) and not contained in
135 //[cutoffAtoms.begin(), cutoffAtoms.end()).
136 std::vector<Atom*> freeAtoms;
137 std::set_difference(allAtoms.begin(), allAtoms.end(), cutoffAtoms.begin(), cutoffAtoms.end(),
138 std::back_inserter(freeAtoms));
139
140 if (freeAtoms.size() != allAtoms.size() - cutoffAtoms.size()) {
141 //Some atoms in rigidAtoms are not in allAtoms, something must be wrong
142 sprintf(painCave.errMsg, "Atoms in cutoff groups are not in the atom list of the same molecule");
143
144 painCave.isFatal = 1;
145 simError();
146 }
147
148 //loop over the free atoms and then create one cutoff group for every single free atom
149 std::vector<Atom*>::iterator fai;
150
151 for (fai = freeAtoms.begin(); fai != freeAtoms.end(); ++fai) {
152 createCutoffGroup(mol, *fai);
153 mol->addCutoffGroup(cutoffGroup);
154 }
155 //create constraints
156
157 //the construction of this molecule is finished
158 mol->complete();
159
160 return mol;
161 }
162
163
164 Atom* MoleculeCreator::createAtom(ForceField* ff, Molecule* mol, AtomStamp* stamp,
165 LocalIndexManager* localIndexMan) {
166 AtomType * atomType;
167 Atom* atom;
168
169 atomType = ff->getAtomType(stamp->getType());
170
171 if (atomType == NULL) {
172 sprintf(painCave.errMsg, "Can not find Matching Atom Type for[%s]",
173 stamp->getType());
174
175 painCave.isFatal = 1;
176 simError();
177 }
178
179 //below code still have some kind of hard-coding smell
180 if (atomType->isDirectional()){
181
182 DirectionalAtomType* dAtomType = dynamic_cast<DirectionalAtomType*>(atomType);
183
184 if (dAtomType == NULL) {
185 sprintf(painCave.errMsg, "Can not cast AtomType to DirectionalAtomType");
186
187 painCave.isFatal = 1;
188 simError();
189 }
190
191 DirectionalAtom* dAtom;
192 dAtom = new DirectionalAtom(dAtomType);
193 atom = dAtom;
194 }
195 else{
196 atom = new Atom(atomType);
197 }
198
199 atom->setLocalIndex(localIndexMan->getNextAtomIndex());
200
201 return atom;
202 }
203
204 RigidBody* MoleculeCreator::createRigidBody(MoleculeStamp *molStamp, Molecule* mol,
205 RigidBodyStamp* rbStamp,
206 LocalIndexManager* localIndexMan) {
207 Atom* atom;
208 int nAtoms;
209 Vector3d refCoor;
210 AtomStamp* atomStamp;
211
212 RigidBody* rb = new RigidBody();
213 nAtoms = rbStamp->getNMembers();
214 for (int i = 0; i < nAtoms; ++i) {
215 //rbStamp->getMember(i) return the local index of current atom inside the molecule.
216 //It is not the same as local index of atom which is the index of atom at DataStorage class
217 atom = mol->getAtomAt(rbStamp->getMember(i));
218 atomStamp= molStamp->getAtom(rbStamp->getMember(i));
219 rb->addAtom(atom, atomStamp);
220 }
221
222 //after all of the atoms are added, we need to calculate the reference coordinates
223 rb->calcRefCoords();
224
225 //set the local index of this rigid body, global index will be set later
226 rb->setLocalIndex(localIndexMan->getNextRigidBodyIndex());
227
228 //the rule for naming rigidbody MoleculeName_RB_Integer
229 //The first part is the name of the molecule
230 //The second part is alway fixed as "RB"
231 //The third part is the index of the rigidbody defined in meta-data file
232 //For example, Butane_RB_0 is a valid rigid body name of butane molecule
233 /**@todo replace itoa by lexi_cast */
234 rb->setType(mol->getType() + "_RB_" + toString(mol->getNRigidBodies()));
235
236 return rb;
237 }
238
239 Bond* MoleculeCreator::createBond(ForceField* ff, Molecule* mol, BondStamp* stamp) {
240 BondType* bondType;
241 Atom* atomA;
242 Atom* atomB;
243
244 atomA = mol->getAtomAt(stamp->getA());
245 atomB = mol->getAtomAt(stamp->getB());
246
247 assert( atomA && atomB);
248
249 bondType = ff->getBondType(atomA->getType(), atomB->getType());
250
251 if (bondType == NULL) {
252 sprintf(painCave.errMsg, "Can not find Matching Bond Type for[%s, %s]",
253 atomA->getType().c_str(),
254 atomB->getType().c_str());
255
256 painCave.isFatal = 1;
257 simError();
258 }
259 return new Bond(atomA, atomB, bondType);
260 }
261
262 Bend* MoleculeCreator::createBend(ForceField* ff, Molecule* mol, BendStamp* stamp) {
263 bool isGhostBend = false;
264 int ghostIndex;
265
266
267 //
268 if (stamp->haveExtras()){
269 LinkedAssign* extras = stamp->getExtras();
270 LinkedAssign* currentExtra = extras;
271
272 while (currentExtra != NULL){
273 if (!strcmp(currentExtra->getlhs(), "ghostVectorSource")){
274 switch (currentExtra->getType()){
275 case 0:
276 ghostIndex = currentExtra->getInt();
277 isGhostBend = true;
278 break;
279
280 default:
281 sprintf(painCave.errMsg,
282 "SimSetup Error: ghostVectorSource must be an int.\n");
283 painCave.isFatal = 1;
284 simError();
285 }
286 } else{
287 sprintf(painCave.errMsg,
288 "SimSetup Error: unhandled bend assignment:\n");
289 painCave.isFatal = 1;
290 simError();
291 }
292 currentExtra = currentExtra->getNext();
293 }
294
295 }
296
297 if (isGhostBend) {
298
299 int indexA = stamp->getA();
300 int indexB= stamp->getB();
301
302 assert(indexA != indexB);
303
304 int normalIndex;
305 if (indexA == ghostIndex) {
306 normalIndex = indexB;
307 } else if (indexB == ghostIndex) {
308 normalIndex = indexA;
309 }
310
311 Atom* normalAtom = mol->getAtomAt(normalIndex) ;
312 DirectionalAtom* ghostAtom = dynamic_cast<DirectionalAtom*>(mol->getAtomAt(ghostIndex));
313 if (ghostAtom == NULL) {
314 sprintf(painCave.errMsg, "Can not cast Atom to DirectionalAtom");
315 painCave.isFatal = 1;
316 simError();
317 }
318
319 BendType* bendType = ff->getBendType(normalAtom->getType(), ghostAtom->getType(), "GHOST");
320
321 if (bendType == NULL) {
322 sprintf(painCave.errMsg, "Can not find Matching Bend Type for[%s, %s, %s]",
323 normalAtom->getType().c_str(),
324 ghostAtom->getType().c_str(),
325 "GHOST");
326
327 painCave.isFatal = 1;
328 simError();
329 }
330
331 return new GhostBend(normalAtom, ghostAtom, bendType);
332
333 } else {
334
335 Atom* atomA = mol->getAtomAt(stamp->getA());
336 Atom* atomB = mol->getAtomAt(stamp->getB());
337 Atom* atomC = mol->getAtomAt(stamp->getC());
338
339 assert( atomA && atomB && atomC);
340
341 BendType* bendType = ff->getBendType(atomA->getType(), atomB->getType(), atomC->getType());
342
343 if (bendType == NULL) {
344 sprintf(painCave.errMsg, "Can not find Matching Bend Type for[%s, %s, %s]",
345 atomA->getType().c_str(),
346 atomB->getType().c_str(),
347 atomC->getType().c_str());
348
349 painCave.isFatal = 1;
350 simError();
351 }
352
353 return new Bend(atomA, atomB, atomC, bendType);
354 }
355 }
356
357 Torsion* MoleculeCreator::createTorsion(ForceField* ff, Molecule* mol, TorsionStamp* stamp) {
358 TorsionType* torsionType;
359 Atom* atomA;
360 Atom* atomB;
361 Atom* atomC;
362 Atom* atomD;
363
364 atomA = mol->getAtomAt(stamp->getA());
365 atomB = mol->getAtomAt(stamp->getB());
366 atomC = mol->getAtomAt(stamp->getC());
367 atomD = mol->getAtomAt(stamp->getD());
368
369 assert(atomA && atomB && atomC && atomD);
370
371 torsionType = ff->getTorsionType(atomA->getType(), atomB->getType(),
372 atomC->getType(), atomD->getType());
373
374 if (torsionType == NULL) {
375 sprintf(painCave.errMsg, "Can not find Matching Torsion Type for[%s, %s, %s, %s]",
376 atomA->getType().c_str(),
377 atomB->getType().c_str(),
378 atomC->getType().c_str(),
379 atomD->getType().c_str());
380
381 painCave.isFatal = 1;
382 simError();
383 }
384
385 return new Torsion(atomA, atomB, atomC, atomD, torsionType);
386 }
387
388 CutoffGroup* MoleculeCreator::createCutoffGroup(Molecule* mol, CutoffGroupStamp* stamp) {
389 int nAtoms;
390 CutoffGroup* cg;
391 Atom* atom;
392 cg = new CutoffGroup();
393
394 nAtoms = stamp->getNMembers();
395 for (int i =0; i < nAtoms; ++i) {
396 atom = mol->getAtomAt(stamp->getMember(i));
397 assert(atom);
398 cg->addAtom(atom);
399 }
400
401 return cg;
402 }
403
404 CutoffGroup* MoleculeCreator::createCutoffGroup(Molecule * mol, Atom* atom) {
405 CutoffGroup* cg;
406 cg = new CutoffGroup();
407 cg->addAtom(atom);
408 return cg;
409 }
410 //Constraint* MoleculeCreator::createConstraint() {
411
412 //}
413
414 }

Properties

Name Value
svn:executable *