ERF
Energy Research and Forecasting: An Atmospheric Modeling Code
ERF_EddyViscosity.H
Go to the documentation of this file.
1 /** \file ERF_EddyViscosity.H */
2 
3 #ifndef ERF_EDDY_VISCOSITY_H_
4 #define ERF_EDDY_VISCOSITY_H_
5 
6 #include <ERF_ABLMost.H>
7 #include <ERF_DataStruct.H>
8 #include <AMReX_BCRec.H>
9 
10 void
11 ComputeTurbulentViscosity (const amrex::MultiFab& xvel , const amrex::MultiFab& yvel ,
12  const amrex::MultiFab& Tau11, const amrex::MultiFab& Tau22, const amrex::MultiFab& Tau33,
13  const amrex::MultiFab& Tau12, const amrex::MultiFab& Tau13, const amrex::MultiFab& Tau23,
14  const amrex::MultiFab& cons_in, const amrex::MultiFab& wdist,
15  amrex::MultiFab& eddyViscosity,
16  amrex::MultiFab& Hfx1, amrex::MultiFab& Hfx2, amrex::MultiFab& Hfx3, amrex::MultiFab& Diss,
17  const amrex::Geometry& geom,
18  const amrex::MultiFab& mapfac_u, const amrex::MultiFab& mapfac_v,
19  const std::unique_ptr<amrex::MultiFab>& z_phys_nd,
20  const SolverChoice& solverChoice,
21  std::unique_ptr<ABLMost>& most,
22  const amrex::FArrayBox* z_0,
23  const bool& exp_most,
24  const bool& use_moisture,
25  int level,
26  const amrex::BCRec* bc_ptr,
27  bool vert_only = false);
28 
29 AMREX_GPU_DEVICE
30 AMREX_FORCE_INLINE
31 amrex::Real
32 ComputeSmnSmn (int& i, int& j, int& k,
33  const amrex::Array4<amrex::Real const>& tau11,
34  const amrex::Array4<amrex::Real const>& tau22,
35  const amrex::Array4<amrex::Real const>& tau33,
36  const amrex::Array4<amrex::Real const>& tau12,
37  const amrex::Array4<amrex::Real const>& tau13,
38  const amrex::Array4<amrex::Real const>& tau23,
39  const int& klo,
40  const bool& use_most,
41  const bool& exp_most)
42 {
43  // NOTES:
44  // - If ERF_EXPLICIT_MOST_STRESS is not used, then we do not use the
45  // strains lying on the bottom boundary with MOST. These values are
46  // corrupted with the reflect odd BC used to fill the ghost cells.
47  // - Neglecting the strains on the bottom boundary and using a one-
48  // sided average implies that the strains are equal at klo and klo+1.
49  // du/dz and dv/dz can be assumed to be equal through the first cell.
50  // However, whereas dw/dx = dw/dy = 0 on the surface, this is not true at
51  // klo+1. Therefore, the strains are not equal in general.
52  // - If ERF_EXPLICIT_MOST_STRESS _is_ used, then strains may be correctly
53  // evaluated at the surface and no assumptions are needed.
54  amrex::Real s13bar;
55  if (use_most && k==klo && !exp_most) {
56  s13bar = 0.5 * ( tau13(i , j , k+1) + tau13(i+1, j , k+1) );
57  }
58  else
59  {
60  s13bar = 0.25 * ( tau13(i , j , k ) + tau13(i , j , k+1)
61  + tau13(i+1, j , k ) + tau13(i+1, j , k+1) );
62  }
63 
64  amrex::Real s23bar;
65  if (use_most && k==klo && !exp_most) {
66  s23bar = 0.5 * ( tau23(i , j , k+1) + tau23(i , j+1, k+1) );
67  }
68  else
69  {
70  s23bar = 0.25 * ( tau23(i , j , k ) + tau23(i , j , k+1)
71  + tau23(i , j+1, k ) + tau23(i , j+1, k+1) );
72  }
73 
74  amrex::Real s11bar = tau11(i,j,k);
75  amrex::Real s22bar = tau22(i,j,k);
76  amrex::Real s33bar = tau33(i,j,k);
77  amrex::Real s12bar = 0.25 * ( tau12(i , j , k ) + tau12(i , j+1, k )
78  + tau12(i+1, j , k ) + tau12(i+1, j+1, k ) );
79 
80  amrex::Real SmnSmn = s11bar*s11bar + s22bar*s22bar + s33bar*s33bar
81  + 2.0*s12bar*s12bar + 2.0*s13bar*s13bar + 2.0*s23bar*s23bar;
82 
83  return SmnSmn;
84 }
85 #endif
AMREX_GPU_DEVICE AMREX_FORCE_INLINE amrex::Real ComputeSmnSmn(int &i, int &j, int &k, const amrex::Array4< amrex::Real const > &tau11, const amrex::Array4< amrex::Real const > &tau22, const amrex::Array4< amrex::Real const > &tau33, const amrex::Array4< amrex::Real const > &tau12, const amrex::Array4< amrex::Real const > &tau13, const amrex::Array4< amrex::Real const > &tau23, const int &klo, const bool &use_most, const bool &exp_most)
Definition: ERF_EddyViscosity.H:32
void ComputeTurbulentViscosity(const amrex::MultiFab &xvel, const amrex::MultiFab &yvel, const amrex::MultiFab &Tau11, const amrex::MultiFab &Tau22, const amrex::MultiFab &Tau33, const amrex::MultiFab &Tau12, const amrex::MultiFab &Tau13, const amrex::MultiFab &Tau23, const amrex::MultiFab &cons_in, const amrex::MultiFab &wdist, amrex::MultiFab &eddyViscosity, amrex::MultiFab &Hfx1, amrex::MultiFab &Hfx2, amrex::MultiFab &Hfx3, amrex::MultiFab &Diss, const amrex::Geometry &geom, const amrex::MultiFab &mapfac_u, const amrex::MultiFab &mapfac_v, const std::unique_ptr< amrex::MultiFab > &z_phys_nd, const SolverChoice &solverChoice, std::unique_ptr< ABLMost > &most, const amrex::FArrayBox *z_0, const bool &exp_most, const bool &use_moisture, int level, const amrex::BCRec *bc_ptr, bool vert_only=false)
@ xvel
Definition: ERF_IndexDefines.H:130
@ yvel
Definition: ERF_IndexDefines.H:131
Definition: ERF_DataStruct.H:82