/home/runner/work/kynema-sgf/kynema-sgf/src/equation_systems/tke/source_terms/KsgsS94Src.H Source File

Kynema-SGF API: /home/runner/work/kynema-sgf/kynema-sgf/src/equation_systems/tke/source_terms/KsgsS94Src.H Source File
Kynema-SGF API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
KsgsS94Src.H
Go to the documentation of this file.
1#ifndef KSGSS94SRC_H
2#define KSGSS94SRC_H
3
5
6namespace kynema_sgf {
7namespace pde {
8namespace tke {
9
13class KsgsS94Src : public TKESource::Register<KsgsS94Src>
14{
15public:
16 static const std::string identifier() { return "KsgsS94Src"; }
17
19
20 virtual ~KsgsS94Src();
21
22 virtual void operator()(
23 const int lev,
24 const amrex::MFIter& mfi,
25 const amrex::Box& bx,
26 const FieldState fstate,
27 const amrex::Array4<amrex::Real>& src_term) const override;
28};
29} // namespace tke
30} // namespace pde
31} // namespace kynema_sgf
32
33#endif /* KSGSS94SRC_H */
Definition CFDSim.H:55
static const std::string identifier()
Definition KsgsS94Src.H:16
virtual void operator()(const int lev, const amrex::MFIter &mfi, const amrex::Box &bx, const FieldState fstate, const amrex::Array4< amrex::Real > &src_term) const override
FieldState
Definition FieldDescTypes.H:16
Definition SDRSrc.cpp:10
Definition AdvOp_Godunov.H:21
This test case is intended as an evaluation of the momentum advection scheme.
Definition BCInterface.cpp:10