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
SteadyThermalContactAuxFunction.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 #ifndef SteadyThermalContactAuxFunction_h
9 #define SteadyThermalContactAuxFunction_h
10 
11 #include <AuxFunction.h>
12 
13 #include <vector>
14 
15 namespace sierra{
16 namespace nalu{
17 
19 {
20 public:
21 
23 
25 
26  virtual void do_evaluate(
27  const double * coords,
28  const double time,
29  const unsigned spatialDimension,
30  const unsigned numPoints,
31  double * fieldPtr,
32  const unsigned fieldSize,
33  const unsigned beginPos,
34  const unsigned endPos) const;
35 
36 private:
37  double a_;
38  double k_;
39  double pi_;
40 
41 };
42 
43 } // namespace nalu
44 } // namespace Sierra
45 
46 #endif
Definition: ABLForcingAlgorithm.C:26
double a_
Definition: SteadyThermalContactAuxFunction.h:37
double pi_
Definition: SteadyThermalContactAuxFunction.h:39
virtual ~SteadyThermalContactAuxFunction()
Definition: SteadyThermalContactAuxFunction.h:24
SteadyThermalContactAuxFunction()
Definition: SteadyThermalContactAuxFunction.C:20
double k_
Definition: SteadyThermalContactAuxFunction.h:38
virtual void do_evaluate(const double *coords, const double time, const unsigned spatialDimension, const unsigned numPoints, double *fieldPtr, const unsigned fieldSize, const unsigned beginPos, const unsigned endPos) const
Definition: SteadyThermalContactAuxFunction.C:31
Definition: SteadyThermalContactAuxFunction.h:18
Definition: AuxFunction.h:15