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

Kynema-SGF API: /home/runner/work/kynema-sgf/kynema-sgf/src/equation_systems/tke/source_terms/KwSSTSrc.H Source File
Kynema-SGF API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
KwSSTSrc.H
Go to the documentation of this file.
1#ifndef KWSSTSRC_H
2#define KWSSTSRC_H
3
5
6namespace kynema_sgf::pde::tke {
7
13class KwSSTSrc : public TKESource::Register<KwSSTSrc>
14{
15public:
16 static std::string identifier() { return "KwSSTSrc"; }
17
18 explicit KwSSTSrc(const CFDSim& /*sim*/);
19
20 ~KwSSTSrc() override;
21
22 void operator()(
23 int lev, FieldState fstate, amrex::MultiFab& src_term) const override;
24
25private:
29};
30
31} // namespace kynema_sgf::pde::tke
32
33#endif /* KWSSTSRC_H */
Definition CFDSim.H:55
Definition Field.H:112
KwSSTSrc(const CFDSim &)
Definition KwSSTSrc.cpp:12
static std::string identifier()
Definition KwSSTSrc.H:16
void operator()(int lev, FieldState fstate, amrex::MultiFab &src_term) const override
Definition KwSSTSrc.cpp:20
Field & m_buoy_term
Definition KwSSTSrc.H:28
Field & m_diss
Definition KwSSTSrc.H:27
Field & m_shear_prod
Definition KwSSTSrc.H:26
FieldState
Definition FieldDescTypes.H:16
Definition SDRSrc.cpp:10