OpenMD 3.0
Molecular Dynamics in the Open
Loading...
Searching...
No Matches
Register.cpp
1/*
2 * Copyright (c) 2004-present, The University of Notre Dame. All rights
3 * reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation
13 * and/or other materials provided with the distribution.
14 *
15 * 3. Neither the name of the copyright holder nor the names of its
16 * contributors may be used to endorse or promote products derived from
17 * this software without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 *
31 * SUPPORT OPEN SCIENCE! If you use OpenMD or its source code in your
32 * research, please cite the appropriate papers when you publish your
33 * work. Good starting points are:
34 *
35 * [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005).
36 * [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006).
37 * [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 234107 (2008).
38 * [4] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011).
39 * [5] Kuang & Gezelter, Mol. Phys., 110, 691-701 (2012).
40 * [6] Lamichhane, Gezelter & Newman, J. Chem. Phys. 141, 134109 (2014).
41 * [7] Lamichhane, Newman & Gezelter, J. Chem. Phys. 141, 134110 (2014).
42 * [8] Bhattarai, Newman & Gezelter, Phys. Rev. B 99, 094106 (2019).
43 */
44
45#include "brains/Register.hpp"
46
47#include "integrators/Integrator.hpp"
48#include "integrators/IntegratorCreator.hpp"
50#include "integrators/LangevinDynamics.hpp"
51#include "integrators/LangevinPiston.hpp"
52#include "integrators/NPA.hpp"
53#include "integrators/NPAT.hpp"
54#include "integrators/NPTf.hpp"
55#include "integrators/NPTi.hpp"
56#include "integrators/NPTsz.hpp"
58#include "integrators/NPrT.hpp"
59#include "integrators/NVE.hpp"
60#include "integrators/NVT.hpp"
62#if defined(HAVE_QHULL)
63#include "integrators/LangevinHullDynamics.hpp"
64#endif
65#include "integrators/SPFDynamics.hpp"
66#include "lattice/BCCLattice.hpp"
67#include "lattice/FCCLattice.hpp"
68#include "lattice/LatticeCreator.hpp"
70#include "lattice/SCLattice.hpp"
71#include "optimization/BFGS.hpp"
74#include "optimization/OptimizationCreator.hpp"
75#include "optimization/OptimizationFactory.hpp"
77
78using namespace QuantLib;
79namespace OpenMD {
80
82 IntegratorFactory::getInstance().registerIntegrator(
83 new IntegratorBuilder<NVE>("NVE"));
84 IntegratorFactory::getInstance().registerIntegrator(
85 new IntegratorBuilder<NVT>("NVT"));
86 IntegratorFactory::getInstance().registerIntegrator(
87 new IntegratorBuilder<NPTi>("NPTI"));
88 IntegratorFactory::getInstance().registerIntegrator(
89 new IntegratorBuilder<NPTf>("NPTF"));
90 IntegratorFactory::getInstance().registerIntegrator(
91 new IntegratorBuilder<NPTxyz>("NPTXYZ"));
92 IntegratorFactory::getInstance().registerIntegrator(
93 new IntegratorBuilder<NPAT>("NPAT"));
94 IntegratorFactory::getInstance().registerIntegrator(
95 new IntegratorBuilder<NPA>("NPA"));
96 IntegratorFactory::getInstance().registerIntegrator(
97 new IntegratorBuilder<NPrT>("NPRT"));
98 IntegratorFactory::getInstance().registerIntegrator(
99 new IntegratorBuilder<NPrT>("NPGT"));
100 IntegratorFactory::getInstance().registerIntegrator(
101 new IntegratorBuilder<NgammaT>("NGT"));
102 IntegratorFactory::getInstance().registerIntegrator(
103 new IntegratorBuilder<NgammaT>("NGAMMAT"));
104 IntegratorFactory::getInstance().registerIntegrator(
105 new IntegratorBuilder<LangevinDynamics>("LANGEVINDYNAMICS"));
106 IntegratorFactory::getInstance().registerIntegrator(
107 new IntegratorBuilder<LangevinDynamics>("LD"));
108#if defined(HAVE_QHULL)
109 IntegratorFactory::getInstance().registerIntegrator(
110 new IntegratorBuilder<LangevinHullDynamics>("LHULL"));
111 IntegratorFactory::getInstance().registerIntegrator(
112 new IntegratorBuilder<LangevinHullDynamics>("LANGEVINHULL"));
113 IntegratorFactory::getInstance().registerIntegrator(
114 new IntegratorBuilder<LangevinHullDynamics>("SMIPD"));
115#endif
116 IntegratorFactory::getInstance().registerIntegrator(
117 new IntegratorBuilder<LangevinPiston>("LANGEVINPISTON"));
118 IntegratorFactory::getInstance().registerIntegrator(
119 new IntegratorBuilder<SPFDynamics>("SPF"));
120 }
121
123 OptimizationFactory::getInstance().registerOptimization(
124 new OptimizationBuilder<QuantLib::SteepestDescent>("SD"));
125 OptimizationFactory::getInstance().registerOptimization(
126 new OptimizationBuilder<QuantLib::ConjugateGradient>("CG"));
127 OptimizationFactory::getInstance().registerOptimization(
128 new OptimizationBuilder<QuantLib::BFGS>("BFGS"));
129 }
130
132 LatticeFactory::getInstance().registerLattice(
133 new LatticeBuilder<FCCLattice>("FCC"));
134 LatticeFactory::getInstance().registerLattice(
135 new LatticeBuilder<SCLattice>("SC"));
136 LatticeFactory::getInstance().registerLattice(
137 new LatticeBuilder<BCCLattice>("BCC"));
138 }
139
144
145} // namespace OpenMD
Broyden-Fletcher-Goldfarb-Shanno optimization method.
Conjugate gradient optimization method.
Abstract optimization method class.
Steepest descent optimization method.
static IntegratorFactory & getInstance()
Returns an instance of Integrator factory.
static LatticeFactory & getInstance()
Returns an instance of Lattice factory.
static OptimizationFactory & getInstance()
Returns an instance of Optimization factory.
This basic Periodic Table class was originally taken from the data.cpp file in OpenBabel.
void registerIntegrators()
Register all integrators.
Definition Register.cpp:81
void registerOptimizers()
Register all optimizers.
Definition Register.cpp:122
void registerAll()
register force fields, integrators and optimizers
Definition Register.cpp:140
void registerLattice()
Register all lattice.
Definition Register.cpp:131