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
ConstantPropertyEvaluator.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 ConstantPropertyEvaluator_h
10 #define ConstantPropertyEvaluator_h
11 
13 
14 namespace stk {
15 namespace mesh {
16 struct Entity;
17 }
18 }
19 
20 namespace sierra{
21 namespace nalu{
22 
24 {
25  public:
26 
27  ConstantPropertyEvaluator(const double & value);
28  virtual ~ConstantPropertyEvaluator();
29 
30  double execute(double *indVarList,
31  stk::mesh::Entity node);
32 
33  double value_;
34 
35 };
36 
37 
38 } // namespace nalu
39 } // namespace Sierra
40 
41 #endif
Definition: ABLForcingAlgorithm.C:26
Definition: Algorithm.h:14
Definition: ConstantPropertyEvaluator.h:23
double value_
Definition: ConstantPropertyEvaluator.h:33
Definition: PropertyEvaluator.h:19