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
PropertyEvaluator.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 PropertyEvaluator_h
10 #define PropertyEvaluator_h
11 
12 #include <stk_mesh/base/Entity.hpp>
13 
14 #include <vector>
15 
16 namespace sierra{
17 namespace nalu{
18 
20 {
21 public:
22 
24  virtual ~PropertyEvaluator() {}
25 
26  virtual double execute(
27  double *indVarList,
28  stk::mesh::Entity node = stk::mesh::Entity()) = 0;
29 
30 };
31 
32 } // namespace nalu
33 } // namespace Sierra
34 
35 #endif
Definition: ABLForcingAlgorithm.C:26
virtual ~PropertyEvaluator()
Definition: PropertyEvaluator.h:24
virtual double execute(double *indVarList, stk::mesh::Entity node=stk::mesh::Entity())=0
PropertyEvaluator()
Definition: PropertyEvaluator.h:23
Definition: PropertyEvaluator.h:19