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