ESPResSo
Extensible Simulation Package for Research on Soft Matter Systems
Loading...
Searching...
No Matches
ek_walberla_init.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022-2023 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#pragma once
21
22#include "EKinWalberlaBase.hpp"
23
27
28#include <utils/Vector.hpp>
29
30#include <memory>
31
32namespace walberla {
33
34std::shared_ptr<EKinWalberlaBase>
35new_ek_walberla(std::shared_ptr<LatticeWalberla> const &lattice,
36 double diffusion, double kT, double valency,
37 Utils::Vector3d ext_efield, double density, bool advection,
38 bool friction_coupling, bool single_precision, bool thermalized,
39 unsigned int seed);
40
41std::shared_ptr<EKReactionBase>
42new_ek_reaction_bulk(std::shared_ptr<LatticeWalberla> const &lattice,
43 typename EKReactionBase::reactants_type const &reactants,
44 double coefficient);
45
46std::shared_ptr<EKReactionBaseIndexed> new_ek_reaction_indexed(
47 std::shared_ptr<LatticeWalberla> const &lattice,
48 typename EKReactionBase::reactants_type const &reactants,
49 double coefficient);
50
51} // namespace walberla
Vector implementation and trait types for boost qvm interoperability.
std::vector< std::shared_ptr< EKReactant > > reactants_type
std::shared_ptr< EKinWalberlaBase > new_ek_walberla(std::shared_ptr< LatticeWalberla > const &lattice, double diffusion, double kT, double valency, Utils::Vector3d ext_efield, double density, bool advection, bool friction_coupling, bool single_precision, bool thermalized, unsigned int seed)
std::shared_ptr< EKReactionBase > new_ek_reaction_bulk(std::shared_ptr< LatticeWalberla > const &lattice, typename EKReactionBase::reactants_type const &reactants, double coefficient)
std::shared_ptr< EKReactionBaseIndexed > new_ek_reaction_indexed(std::shared_ptr< LatticeWalberla > const &lattice, typename EKReactionBase::reactants_type const &reactants, double coefficient)