ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
ERF_MoistNoCondensation.H
Go to the documentation of this file.
1 #ifndef ERF_MOISTNOCOND_H
2 #define ERF_MOISTNOCOND_H
3 
4 /*
5  * MoistNoCondensation is a shell moisture model that does not modify anything.
6  *
7  * The scheme allows qv to be allocated and updated by the dycore without any
8  * source terms due to macro- or microphysics.
9  */
10 
11 #include "ERF_NullMoist.H"
12 
14 
15 public:
16  // constructor
18 
19  // destructor
20  virtual ~MoistNoCondensation () = default;
21 
22  int
24 
25  int
27 
28 private:
29 
30  // Number of qstate variables
32 
33  // Number of qstate variables that are number concentrations
35 };
36 #endif
Definition: ERF_MoistNoCondensation.H:13
int n_qstate_moist_numconc_size
Definition: ERF_MoistNoCondensation.H:34
virtual ~MoistNoCondensation()=default
int n_qstate_moist_size
Definition: ERF_MoistNoCondensation.H:31
int Qstate_Moist_Size() override
Definition: ERF_MoistNoCondensation.H:23
MoistNoCondensation()
Definition: ERF_MoistNoCondensation.H:17
int Qstate_Moist_NumConc_Size() override
Definition: ERF_MoistNoCondensation.H:26
Definition: ERF_NullMoist.H:8