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
AssembleHeatCondWallSolverAlgorithm.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 AssembleHeatCondWallSolverAlgorithm_h
10 #define AssembleHeatCondWallSolverAlgorithm_h
11 
12 #include <SolverAlgorithm.h>
13 #include <FieldTypeDef.h>
14 
15 namespace sierra{
16 namespace nalu{
17 
18 class Realm;
19 
21 {
22 public:
23 
25  Realm &realm,
26  stk::mesh::Part *part,
27  EquationSystem *eqSystem,
28  ScalarFieldType *referenceTemp,
29  ScalarFieldType *couplingParameter,
30  ScalarFieldType *normalHeatFlux,
31  bool useShifted = false);
33  virtual void initialize_connectivity();
34  virtual void execute();
35 
36  const bool useShifted_;
37 
43 };
44 
45 } // namespace nalu
46 } // namespace Sierra
47 
48 #endif
Definition: AssembleHeatCondWallSolverAlgorithm.h:20
Definition: ABLForcingAlgorithm.C:26
GenericFieldType * exposedAreaVec_
Definition: AssembleHeatCondWallSolverAlgorithm.h:38
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
AssembleHeatCondWallSolverAlgorithm(Realm &realm, stk::mesh::Part *part, EquationSystem *eqSystem, ScalarFieldType *referenceTemp, ScalarFieldType *couplingParameter, ScalarFieldType *normalHeatFlux, bool useShifted=false)
Definition: AssembleHeatCondWallSolverAlgorithm.C:37
Definition: SolverAlgorithm.h:24
ScalarFieldType * couplingParameter_
Definition: AssembleHeatCondWallSolverAlgorithm.h:40
ScalarFieldType * referenceTemp_
Definition: AssembleHeatCondWallSolverAlgorithm.h:39
virtual void execute()
Definition: AssembleHeatCondWallSolverAlgorithm.C:70
Base class representation of a PDE.
Definition: EquationSystem.h:46
const bool useShifted_
Definition: AssembleHeatCondWallSolverAlgorithm.h:36
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
virtual ~AssembleHeatCondWallSolverAlgorithm()
Definition: AssembleHeatCondWallSolverAlgorithm.h:32
virtual void initialize_connectivity()
Definition: AssembleHeatCondWallSolverAlgorithm.C:61
ScalarFieldType * temperature_
Definition: AssembleHeatCondWallSolverAlgorithm.h:42
Definition: Realm.h:82
ScalarFieldType * normalHeatFlux_
Definition: AssembleHeatCondWallSolverAlgorithm.h:41