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
TurbViscSmagorinskyAlgorithm.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 TurbViscSmagorinskyAlgorithm_h
10 #define TurbViscSmagorinskyAlgorithm_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 cmuCs_;
37 
38 };
39 
40 } // namespace nalu
41 } // namespace Sierra
42 
43 #endif
ScalarFieldType * density_
Definition: TurbViscSmagorinskyAlgorithm.h:32
GenericFieldType * dudx_
Definition: TurbViscSmagorinskyAlgorithm.h:31
Definition: ABLForcingAlgorithm.C:26
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
TurbViscSmagorinskyAlgorithm(Realm &realm, stk::mesh::Part *part)
Definition: TurbViscSmagorinskyAlgorithm.C:34
Definition: TurbViscSmagorinskyAlgorithm.h:21
const double cmuCs_
Definition: TurbViscSmagorinskyAlgorithm.h:36
virtual void execute()
Definition: TurbViscSmagorinskyAlgorithm.C:58
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
Definition: Algorithm.h:28
virtual ~TurbViscSmagorinskyAlgorithm()
Definition: TurbViscSmagorinskyAlgorithm.h:28
Definition: Realm.h:82
ScalarFieldType * tvisc_
Definition: TurbViscSmagorinskyAlgorithm.h:33
ScalarFieldType * dualNodalVolume_
Definition: TurbViscSmagorinskyAlgorithm.h:34