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
AssembleCourantReynoldsElemAlgorithm.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 AssembleCourantReynoldsElemAlgorithm_h
10 #define AssembleCourantReynoldsElemAlgorithm_h
11 
12 #include<Algorithm.h>
13 #include<FieldTypeDef.h>
14 
15 namespace sierra{
16 namespace nalu{
17 
18 class Realm;
19 
21 {
22 public:
23 
25  Realm &realm,
26  stk::mesh::Part *part);
28 
29  virtual void execute();
30 
31  const bool meshMotion_;
32 
39 };
40 
41 } // namespace nalu
42 } // namespace Sierra
43 
44 #endif
Definition: ABLForcingAlgorithm.C:26
virtual void execute()
Definition: AssembleCourantReynoldsElemAlgorithm.C:74
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
ScalarFieldType * density_
Definition: AssembleCourantReynoldsElemAlgorithm.h:35
const bool meshMotion_
Definition: AssembleCourantReynoldsElemAlgorithm.h:31
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
Definition: AssembleCourantReynoldsElemAlgorithm.h:20
AssembleCourantReynoldsElemAlgorithm(Realm &realm, stk::mesh::Part *part)
Definition: AssembleCourantReynoldsElemAlgorithm.C:41
GenericFieldType * elemReynolds_
Definition: AssembleCourantReynoldsElemAlgorithm.h:37
virtual ~AssembleCourantReynoldsElemAlgorithm()
Definition: AssembleCourantReynoldsElemAlgorithm.h:27
Definition: Algorithm.h:28
VectorFieldType * velocityRTM_
Definition: AssembleCourantReynoldsElemAlgorithm.h:33
ScalarFieldType * viscosity_
Definition: AssembleCourantReynoldsElemAlgorithm.h:36
GenericFieldType * elemCourant_
Definition: AssembleCourantReynoldsElemAlgorithm.h:38
VectorFieldType * coordinates_
Definition: AssembleCourantReynoldsElemAlgorithm.h:34
Definition: Realm.h:82