Nalu
Nalu: a generalized unstructured massively parallel low Mach flow code designed to support a variety of energy applications of interest (most notably Wind ECP) built on the Sierra Toolkit and Trilinos solver Tpetra/Epetra stack. The open source BSD, clause 3 license model has been chosen for the code base. See LICENSE for more information. http://NaluCFD.org
TurbViscWaleAlgorithm.h
Go to the documentation of this file.
1 /*------------------------------------------------------------------------*/
2 /* Copyright 2014 Sandia Corporation. */
3 /* This software is released under the license detailed */
4 /* in the file, LICENSE, which is located in the top-level Nalu */
5 /* directory structure */
6 /*------------------------------------------------------------------------*/
7 
8 
9 #ifndef TurbViscWaleAlgorithm_h
10 #define TurbViscWaleAlgorithm_h
11 
12 #include <Algorithm.h>
13 
14 #include <FieldTypeDef.h>
15 
16 namespace sierra{
17 namespace nalu{
18 
19 class Realm;
20 
22 {
23 public:
24 
26  Realm &realm,
27  stk::mesh::Part *part);
29  virtual void execute();
30 
35 
36  const double Cw_;
37  const double kappa_;
38 
39 };
40 
41 } // namespace nalu
42 } // namespace Sierra
43 
44 #endif
ScalarFieldType * density_
Definition: TurbViscWaleAlgorithm.h:32
GenericFieldType * dudx_
Definition: TurbViscWaleAlgorithm.h:31
ScalarFieldType * dualNodalVolume_
Definition: TurbViscWaleAlgorithm.h:34
Definition: ABLForcingAlgorithm.C:26
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
const double Cw_
Definition: TurbViscWaleAlgorithm.h:36
ScalarFieldType * tvisc_
Definition: TurbViscWaleAlgorithm.h:33
Definition: TurbViscWaleAlgorithm.h:21
virtual ~TurbViscWaleAlgorithm()
Definition: TurbViscWaleAlgorithm.h:28
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
virtual void execute()
Definition: TurbViscWaleAlgorithm.C:58
const double kappa_
Definition: TurbViscWaleAlgorithm.h:37
TurbViscWaleAlgorithm(Realm &realm, stk::mesh::Part *part)
Definition: TurbViscWaleAlgorithm.C:33
Definition: Algorithm.h:28
Definition: Realm.h:82