1 #ifndef ERF_UTILS_THETAV_H_
2 #define ERF_UTILS_THETAV_H_
11 const amrex::Array4<const amrex::Real>& cell_data,
19 thetav *= (1.0 + 0.61 * cell_data(i,j,k,RhoQv_comp) / cell_data(i,j,k,
Rho_comp)
20 - cell_data(i,j,k,RhoQc_comp) / cell_data(i,j,k,
Rho_comp)
21 - cell_data(i,j,k,RhoQr_comp) / cell_data(i,j,k,
Rho_comp));
22 }
else if (RhoQv_comp > 0) {
24 - cell_data(i,j,k,RhoQc_comp) / cell_data(i,j,k,
Rho_comp));
#define Rho_comp
Definition: ERF_IndexDefines.H:36
#define RhoTheta_comp
Definition: ERF_IndexDefines.H:37
#define RhoQ1_comp
Definition: ERF_IndexDefines.H:42
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real Thetav(int i, int j, int k, const amrex::Array4< const amrex::Real > &cell_data, const int RhoQv_comp, const int RhoQc_comp, const int RhoQr_comp)
Definition: ERF_Thetav.H:10