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