ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/UseTheForce/EADM_FF.cpp
Revision: 1656
Committed: Tue Oct 11 19:46:51 2011 UTC (13 years, 6 months ago) by jmichalk
File size: 5262 byte(s)
Log Message:
First few fixes for explicit interactions.

File Contents

# User Rev Content
1 gezelter 1629 /*
2     * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved.
3     *
4     * The University of Notre Dame grants you ("Licensee") a
5     * non-exclusive, royalty free, license to use, modify and
6     * redistribute this software in source and binary code form, provided
7     * that the following conditions are met:
8     *
9     * 1. Redistributions of source code must retain the above copyright
10     * notice, this list of conditions and the following disclaimer.
11     *
12     * 2. Redistributions in binary form must reproduce the above copyright
13     * notice, this list of conditions and the following disclaimer in the
14     * documentation and/or other materials provided with the
15     * distribution.
16     *
17     * This software is provided "AS IS," without a warranty of any
18     * kind. All express or implied conditions, representations and
19     * warranties, including any implied warranty of merchantability,
20     * fitness for a particular purpose or non-infringement, are hereby
21     * excluded. The University of Notre Dame and its licensors shall not
22     * be liable for any damages suffered by licensee as a result of
23     * using, modifying or distributing the software or its
24     * derivatives. In no event will the University of Notre Dame or its
25     * licensors be liable for any lost revenue, profit or data, or for
26     * direct, indirect, special, consequential, incidental or punitive
27     * damages, however caused and regardless of the theory of liability,
28     * arising out of the use of or inability to use software, even if the
29     * University of Notre Dame has been advised of the possibility of
30     * such damages.
31     *
32     * SUPPORT OPEN SCIENCE! If you use OpenMD or its source code in your
33     * research, please cite the appropriate papers when you publish your
34     * work. Good starting points are:
35     *
36     * [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005).
37     * [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006).
38     * [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008).
39     * [4] Vardeman & Gezelter, in progress (2009).
40     */
41    
42     #include "UseTheForce/EADM_FF.hpp"
43     #include "UseTheForce/ForceFieldFactory.hpp"
44     #include "io/DirectionalAtomTypesSectionParser.hpp"
45     #include "io/BaseAtomTypesSectionParser.hpp"
46     #include "io/AtomTypesSectionParser.hpp"
47     #include "io/LennardJonesAtomTypesSectionParser.hpp"
48 jmichalk 1656 #include "io/BondTypesSectionParser.hpp"
49 gezelter 1629 #include "io/ChargeAtomTypesSectionParser.hpp"
50     #include "io/MultipoleAtomTypesSectionParser.hpp"
51     #include "io/NonBondedInteractionsSectionParser.hpp"
52     #include "io/EAMAtomTypesSectionParser.hpp"
53     #include "io/OptionSectionParser.hpp"
54     #include "UseTheForce/ForceFieldCreator.hpp"
55     #include "utils/simError.h"
56    
57     namespace OpenMD {
58    
59     EADM_FF::EADM_FF(){
60    
61     //set default force field filename
62     setForceFieldFileName("EADM.frc");
63    
64     //the order of adding section parsers are important
65     //OptionSectionParser must come first to set options for other parsers
66    
67     spMan_.push_back(new OptionSectionParser(forceFieldOptions_));
68     spMan_.push_back(new BaseAtomTypesSectionParser());
69     spMan_.push_back(new AtomTypesSectionParser());
70     spMan_.push_back(new DirectionalAtomTypesSectionParser(forceFieldOptions_));
71     spMan_.push_back(new ChargeAtomTypesSectionParser(forceFieldOptions_));
72 jmichalk 1656 spMan_.push_back(new LennardJonesAtomTypesSectionParser(forceFieldOptions_));
73 gezelter 1629 spMan_.push_back(new MultipoleAtomTypesSectionParser(forceFieldOptions_));
74     spMan_.push_back(new NonBondedInteractionsSectionParser(forceFieldOptions_));
75 jmichalk 1656 spMan_.push_back(new BondTypesSectionParser(forceFieldOptions_));
76 gezelter 1629 spMan_.push_back(new EAMAtomTypesSectionParser(forceFieldOptions_));
77    
78     }
79    
80     void EADM_FF::parse(const std::string& filename) {
81     ifstrstream* ffStream;
82     ffStream = openForceFieldFile(filename);
83    
84     spMan_.parse(*ffStream, *this);
85    
86     ForceField::AtomTypeContainer::MapTypeIterator i;
87     AtomType* at;
88    
89     for (at = atomTypeCont_.beginType(i); at != NULL; at = atomTypeCont_.nextType(i)) {
90     // useBase sets the responsibilities, and these have to be done
91     // after the atomTypes and Base types have all been scanned:
92    
93     std::vector<AtomType*> ayb = at->allYourBase();
94     if (ayb.size() > 1) {
95     for (int j = ayb.size()-1; j > 0; j--) {
96     ayb[j-1]->useBase(ayb[j]);
97     }
98     }
99     }
100     delete ffStream;
101     }
102    
103    
104     RealType EADM_FF::getRcutFromAtomType(AtomType* at){
105     RealType rcut = 0.0;
106     if (at->isEAM()) {
107     GenericData* data = at->getPropertyByName("EAM");
108     if (data != NULL) {
109     EAMParamGenericData* eamData = dynamic_cast<EAMParamGenericData*>(data);
110    
111     if (eamData != NULL) {
112    
113     EAMParam& eamParam = eamData->getData();
114     rcut = eamParam.rcut;
115     } else {
116     sprintf( painCave.errMsg,
117     "Can not cast GenericData to EAMParam\n");
118     painCave.severity = OPENMD_ERROR;
119     painCave.isFatal = 1;
120     simError();
121     }
122     } else {
123     sprintf( painCave.errMsg, "Can not find EAM Parameters\n");
124     painCave.severity = OPENMD_ERROR;
125     painCave.isFatal = 1;
126     simError();
127     }
128     } else {
129     rcut = ForceField::getRcutFromAtomType(at);
130     }
131    
132     return rcut;
133     }
134    
135     } //end namespace OpenMD

Properties

Name Value
svn:eol-style native