summaryrefslogtreecommitdiff
path: root/lib/core/c++/lbm.hpp
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2026-07-05 15:59:23 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2026-07-05 15:59:23 +0200
commitc0549d71b2109f10c1238db8b22362e7826ba61b (patch)
tree16cd5264fcc3afe912e1b1b67738c8940d6d1177 /lib/core/c++/lbm.hpp
parent9a3147bc79caf3c0fb1a9cdee29d156b5ff092c7 (diff)
downloadlibs-lbm-c0549d71b2109f10c1238db8b22362e7826ba61b.tar.gz
Just rename from lib to modules
Diffstat (limited to 'lib/core/c++/lbm.hpp')
-rw-r--r--lib/core/c++/lbm.hpp65
1 files changed, 0 insertions, 65 deletions
diff --git a/lib/core/c++/lbm.hpp b/lib/core/c++/lbm.hpp
deleted file mode 100644
index 23d30b1..0000000
--- a/lib/core/c++/lbm.hpp
+++ /dev/null
@@ -1,65 +0,0 @@
-#pragma once
-
-#include "args.hpp"
-#include "schema.hpp"
-#include "descriptor.hpp"
-#include "boundary.hpp"
-#include "converter.hpp"
-#include "config.hpp"
-#include "collision.hpp"
-#include "component.hpp"
-#include "environment.hpp"
-#include "equilibrium.hpp"
-#include "flatten.hpp"
-#include "fplbm.hpp"
-#include "chunk.hpp"
-#include "iterator.hpp"
-#include "hlbm.hpp"
-#include "macroscopic.hpp"
-#include "momentum_gather.hpp"
-#include "memory.hpp"
-#include "psm.hpp"
-#include "stream.hpp"
-#include "write_csv.hpp"
-#include "write_vtk.hpp"
-#include "util.hpp"
-
-#include "math/math.hpp"
-
-#include <forstio/codec/unit/unit_print.hpp>
-#include <iostream>
-
-namespace kel {
-namespace lbm {
-template<typename T, typename Desc>
-void print_lbm_meta(
- const converter<T>& conv,
- const saw::data<sch::SiKinematicViscosity<T>>& kin_vis_si,
- const saw::data<sch::SiVelocity<T>>& char_vel,
- const saw::data<sch::SiMeter<T>>& char_len
-){
- std::cout
- <<"[Meta]\n"
- <<"======\n"
- <<"Re: "<<(char_vel * char_len / kin_vis_si)<<"\n"
- <<"Ma: "<<(char_vel * saw::data<typename saw::unit_division<sch::Pure<T>, sch::SiVelocity<T>>::Schema>{std::sqrt(df_info<T,Desc>::inv_cs2)})<<"\n"
- <<"\n"
- <<"[SI]\n"
- <<"====\n"
- <<"Δx: "<<conv.delta_x()<<"\n"
- <<"Δt: "<<conv.delta_t()<<"\n"
- <<"Δv: "<<conv.delta_v()<<"\n"
- <<"Δa: "<<conv.delta_a()<<"\n"
- <<"KinVis: "<<kin_vis_si<<"\n"
- <<"CharV: "<<char_vel<<"\n"
- <<"CharL: "<<char_len<<"\n"
- <<"\n"
- <<"[LBM]\n"
- <<"=====\n"
- <<"KinVis: "<<conv.kinematic_viscosity_si_to_lbm(kin_vis_si)<<"\n"
- <<"τ: "<<(saw::data<typename saw::unit_division<sch::Pure<T>, sch::LbmKinematicViscosity<T>>::Schema >{df_info<T,Desc>::inv_cs2} * conv.kinematic_viscosity_si_to_lbm(kin_vis_si) + saw::data<sch::Pure<T>>{0.5})<<"\n"
- <<std::endl
- ;
-}
-}
-}