/home/runner/work/kynema-sgf/kynema-sgf/src/immersed_boundary/bluff_body/Box.H Source File

Kynema-SGF API: /home/runner/work/kynema-sgf/kynema-sgf/src/immersed_boundary/bluff_body/Box.H Source File
Kynema-SGF API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
Box.H
Go to the documentation of this file.
1#ifndef BOX_H
2#define BOX_H
3
5
6namespace kynema_sgf::ib {
7
9{
10 vs::Vector center_loc{0.0_rt, 0.0_rt, 0.0_rt};
11 amrex::Real length{0.1_rt};
12 amrex::Real width{0.1_rt};
13 amrex::Real height{0.1_rt};
14};
15
16struct Box : public BluffBodyType
17{
21
22 static std::string identifier() { return "Box"; }
23};
24
25} // namespace kynema_sgf::ib
26
27#endif /* BOX_H */
Definition IBTypes.H:62
Definition bluff_body_ops.cpp:18
VectorT< amrex::Real > Vector
Definition vector.H:145
Definition BluffBody.H:19
Definition BluffBody.H:33
Definition Box.H:9
vs::Vector center_loc
Definition Box.H:10
amrex::Real width
Definition Box.H:12
amrex::Real length
Definition Box.H:11
amrex::Real height
Definition Box.H:13
Definition Box.H:17
static std::string identifier()
Definition Box.H:22
BoxData MetaType
Definition Box.H:19
IBDataHolder< Box > DataType
Definition Box.H:20
IBInfo InfoType
Definition Box.H:18
Definition IBTypes.H:39