/home/runner/work/kynema-sgf/kynema-sgf/src/boundary_conditions/MassInflowOutflowBC.H Source File

Kynema-SGF API: /home/runner/work/kynema-sgf/kynema-sgf/src/boundary_conditions/MassInflowOutflowBC.H Source File
Kynema-SGF API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
MassInflowOutflowBC.H
Go to the documentation of this file.
1#ifndef MASSINFLOWOUTFLOWBC_H
2#define MASSINFLOWOUTFLOWBC_H
3
6#include "AMReX_Orientation.H"
7
8namespace kynema_sgf {
9
16{
17public:
18 MassInflowOutflowBC(Field& field, amrex::Orientation ori);
19
20 void operator()(Field& field, FieldState /*rho_state*/) override;
21
22private:
24
25 amrex::Orientation m_ori;
26};
27
28} // namespace kynema_sgf
29
30#endif /* MASSINFLOWOUTFLOWBC_H */
Definition FieldBCOps.H:32
Definition Field.H:112
Field & m_field
Definition MassInflowOutflowBC.H:23
amrex::Orientation m_ori
Definition MassInflowOutflowBC.H:25
MassInflowOutflowBC(Field &field, amrex::Orientation ori)
Definition MassInflowOutflowBC.cpp:5
void operator()(Field &field, FieldState) override
Definition MassInflowOutflowBC.cpp:9
FieldState
Definition FieldDescTypes.H:16
This test case is intended as an evaluation of the momentum advection scheme.
Definition BCInterface.cpp:10