ESPResSo
Extensible Simulation Package for Research on Soft Matter Systems
Loading...
Searching...
No Matches
LBFluidNode.hpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2021-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 "config/config.hpp"
23
24#ifdef WALBERLA
25
26#include "LBFluid.hpp"
27
28#include "LatticeIndices.hpp"
29
32
34
35#include <utils/Vector.hpp>
37
38#include <cassert>
39#include <memory>
40#include <stdexcept>
41#include <string>
42
44
45class LBFluidNode : public AutoParameters<LBFluidNode, LatticeIndices> {
46 std::shared_ptr<::LBWalberlaBase> m_lb_fluid;
47 Utils::Vector3i m_index;
48 Utils::Vector3i m_grid_size;
49 double m_conv_dens;
50 double m_conv_press;
51 double m_conv_force;
52 double m_conv_velocity;
53
54public:
57 {{"_index", AutoParameter::read_only, [this]() { return m_index; }}});
58 }
59
60 void do_construct(VariantMap const &params) override {
61 auto const lb_sip =
62 get_value<std::shared_ptr<LBFluid>>(params, "parent_sip");
63 m_lb_fluid = lb_sip->get_lb_fluid();
64 auto const lb_params = lb_sip->get_lb_params();
65 auto const tau = lb_params->get_tau();
66 auto const agrid = lb_params->get_agrid();
67 m_conv_dens = Utils::int_pow<3>(agrid);
68 m_conv_press = Utils::int_pow<1>(agrid) * Utils::int_pow<2>(tau);
69 m_conv_force = Utils::int_pow<2>(tau) / Utils::int_pow<1>(agrid);
70 m_conv_velocity = Utils::int_pow<1>(tau) / Utils::int_pow<1>(agrid);
71 m_grid_size = m_lb_fluid->get_lattice().get_grid_dimensions();
72 m_index = get_mapped_index(get_value<Utils::Vector3i>(params, "index"),
73 m_grid_size);
74 }
75
76 Variant do_call_method(std::string const &name,
77 VariantMap const &params) override;
78};
79} // namespace ScriptInterface::walberla
80
81#endif // WALBERLA
LBWalberlaBase provides the public interface of the LB waLBerla bridge.
Vector implementation and trait types for boost qvm interoperability.
Bind parameters in the script interface.
void add_parameters(std::vector< AutoParameter > &&params)
Utils::Vector3i get_mapped_index(Utils::Vector3i const &index, Utils::Vector3i const &shape) const
boost::string_ref name() const
Variant do_call_method(std::string const &name, VariantMap const &params) override
void do_construct(VariantMap const &params) override
This file contains the defaults for ESPResSo.
std::unordered_map< std::string, Variant > VariantMap
Definition Variant.hpp:82
boost::make_recursive_variant< None, bool, int, std::size_t, double, std::string, ObjectRef, Utils::Vector3b, Utils::Vector3i, Utils::Vector2d, Utils::Vector3d, Utils::Vector4d, std::vector< int >, std::vector< double >, std::vector< boost::recursive_variant_ >, std::unordered_map< int, boost::recursive_variant_ >, std::unordered_map< std::string, boost::recursive_variant_ > >::type Variant
Possible types for parameters.
Definition Variant.hpp:80
static SteepestDescentParameters params
Currently active steepest descent instance.
static constexpr const ReadOnly read_only