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
AssembleHeatCondIrradWallSolverAlgorithm.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 AssembleHeatCondIrradWallSolverAlgorithm_h
10 #define AssembleHeatCondIrradWallSolverAlgorithm_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  bool useShifted = false);
30  virtual void initialize_connectivity();
31  virtual void execute();
32 
33  const bool useShifted_;
34 
39 };
40 
41 } // namespace nalu
42 } // namespace Sierra
43 
44 #endif
virtual void execute()
Definition: AssembleHeatCondIrradWallSolverAlgorithm.C:70
GenericFieldType * exposedAreaVec_
Definition: AssembleHeatCondIrradWallSolverAlgorithm.h:35
Definition: ABLForcingAlgorithm.C:26
ScalarFieldType * temperature_
Definition: AssembleHeatCondIrradWallSolverAlgorithm.h:36
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
ScalarFieldType * irradiation_
Definition: AssembleHeatCondIrradWallSolverAlgorithm.h:37
Definition: SolverAlgorithm.h:24
virtual void initialize_connectivity()
Definition: AssembleHeatCondIrradWallSolverAlgorithm.C:61
Definition: AssembleHeatCondIrradWallSolverAlgorithm.h:20
Base class representation of a PDE.
Definition: EquationSystem.h:46
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
const bool useShifted_
Definition: AssembleHeatCondIrradWallSolverAlgorithm.h:33
Definition: Realm.h:82
ScalarFieldType * emissivity_
Definition: AssembleHeatCondIrradWallSolverAlgorithm.h:38
virtual ~AssembleHeatCondIrradWallSolverAlgorithm()
Definition: AssembleHeatCondIrradWallSolverAlgorithm.h:29
AssembleHeatCondIrradWallSolverAlgorithm(Realm &realm, stk::mesh::Part *part, EquationSystem *eqSystem, bool useShifted=false)
Definition: AssembleHeatCondIrradWallSolverAlgorithm.C:37