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
EnthalpyEffectiveDiffFluxCoeffAlgorithm.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 EnthalpyEffectiveDiffFluxCoeffAlgorithm_h
10 #define EnthalpyEffectiveDiffFluxCoeffAlgorithm_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,
28  ScalarFieldType *thermalCond,
29  ScalarFieldType *specHeat,
30  ScalarFieldType *tvisc,
31  ScalarFieldType *evisc,
32  const double sigmaTurb);
34  virtual void execute();
35 
40 
41  const double sigmaTurb_;
42  const bool isTurbulent_;
43 };
44 
45 } // namespace nalu
46 } // namespace Sierra
47 
48 #endif
Definition: ABLForcingAlgorithm.C:26
ScalarFieldType * tvisc_
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:38
const bool isTurbulent_
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:42
virtual ~EnthalpyEffectiveDiffFluxCoeffAlgorithm()
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:33
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:21
ScalarFieldType * specHeat_
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:37
ScalarFieldType * thermalCond_
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:36
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
ScalarFieldType * evisc_
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:39
Definition: Algorithm.h:28
const double sigmaTurb_
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.h:41
virtual void execute()
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.C:56
Definition: Realm.h:82
EnthalpyEffectiveDiffFluxCoeffAlgorithm(Realm &realm, stk::mesh::Part *part, ScalarFieldType *thermalCond, ScalarFieldType *specHeat, ScalarFieldType *tvisc, ScalarFieldType *evisc, const double sigmaTurb)
Definition: EnthalpyEffectiveDiffFluxCoeffAlgorithm.C:33