ESPResSo
Extensible Simulation Package for Research on Soft Matter Systems
Loading...
Searching...
No Matches
integrators/initialize.cpp
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2015-2022 The ESPResSo project
3
*
4
* This file is part of ESPResSo.
5
*
6
* ESPResSo is free software: you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation, either version 3 of the License, or
9
* (at your option) any later version.
10
*
11
* ESPResSo is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with this program. If not, see <http://www.gnu.org/licenses/>.
18
*/
19
20
#include "
initialize.hpp
"
21
22
#include "
BrownianDynamics.hpp
"
23
#include "
IntegratorHandle.hpp
"
24
#include "
SteepestDescent.hpp
"
25
#include "
StokesianDynamics.hpp
"
26
#include "
VelocityVerlet.hpp
"
27
#include "
VelocityVerletIsoNPT.hpp
"
28
#include "
config/config.hpp
"
29
30
namespace
ScriptInterface
{
31
namespace
Integrators {
32
33
void
initialize
(
Utils::Factory<ObjectHandle>
*
om
) {
34
om
->register_new<
IntegratorHandle
>(
"Integrators::IntegratorHandle"
);
35
om
->register_new<
BrownianDynamics
>(
"Integrators::BrownianDynamics"
);
36
om
->register_new<
SteepestDescent
>(
"Integrators::SteepestDescent"
);
37
#ifdef STOKESIAN_DYNAMICS
38
om
->register_new<
StokesianDynamics
>(
"Integrators::StokesianDynamics"
);
39
#endif
// STOKESIAN_DYNAMICS
40
om
->register_new<
VelocityVerlet
>(
"Integrators::VelocityVerlet"
);
41
#ifdef NPT
42
om
->register_new<
VelocityVerletIsoNPT
>(
"Integrators::VelocityVerletIsoNPT"
);
43
#endif
// NPT
44
}
45
46
}
// namespace Integrators
47
}
// namespace ScriptInterface
BrownianDynamics.hpp
IntegratorHandle.hpp
SteepestDescent.hpp
StokesianDynamics.hpp
VelocityVerletIsoNPT.hpp
VelocityVerlet.hpp
ScriptInterface::Integrators::BrownianDynamics
Definition
BrownianDynamics.hpp:30
ScriptInterface::Integrators::IntegratorHandle
Definition
IntegratorHandle.hpp:34
ScriptInterface::Integrators::SteepestDescent
Definition
SteepestDescent.hpp:35
ScriptInterface::Integrators::StokesianDynamics
Definition
StokesianDynamics.hpp:39
ScriptInterface::Integrators::VelocityVerletIsoNPT
Definition
VelocityVerletIsoNPT.hpp:40
ScriptInterface::Integrators::VelocityVerlet
Definition
VelocityVerlet.hpp:30
Utils::Factory
Factory template.
Definition
Factory.hpp:78
config.hpp
This file contains the defaults for ESPResSo.
ScriptInterface::Integrators::initialize
void initialize(Utils::Factory< ObjectHandle > *om)
Definition
integrators/initialize.cpp:33
ScriptInterface
Definition
script_interface/accumulators/AccumulatorBase.hpp:33
ScriptInterface::get_value
T get_value(Variant const &v)
Extract value of specific type T from a Variant.
Definition
get_value.hpp:400
initialize.hpp
src
script_interface
integrators
initialize.cpp
Generated on Fri Nov 8 2024 02:12:53 for ESPResSo by
1.9.8