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
AssembleRadTransWallSolverAlgorithm.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 AssembleRadTransWallSolverAlgorithm_h
10 #define AssembleRadTransWallSolverAlgorithm_h
11 
12 #include<SolverAlgorithm.h>
13 #include<FieldTypeDef.h>
14 
15 namespace stk {
16 namespace mesh {
17 class Part;
18 }
19 }
20 
21 namespace sierra{
22 namespace nalu{
23 
24 class Realm;
25 class RadiativeTransportEquationSystem;
26 
28 {
29 public:
30 
32  Realm &realm,
33  stk::mesh::Part *part,
35  const bool &useShifted);
37  virtual void initialize_connectivity();
38  virtual void execute();
39 
41  const bool useShifted_;
42 
46 };
47 
48 } // namespace nalu
49 } // namespace Sierra
50 
51 #endif
GenericFieldType * exposedAreaVec_
Definition: AssembleRadTransWallSolverAlgorithm.h:45
Definition: ABLForcingAlgorithm.C:26
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
virtual ~AssembleRadTransWallSolverAlgorithm()
Definition: AssembleRadTransWallSolverAlgorithm.h:36
ScalarFieldType * intensity_
Definition: AssembleRadTransWallSolverAlgorithm.h:43
const RadiativeTransportEquationSystem * radEqSystem_
Definition: AssembleRadTransWallSolverAlgorithm.h:40
Definition: SolverAlgorithm.h:24
Definition: Algorithm.h:14
Definition: AssembleRadTransWallSolverAlgorithm.h:27
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
Definition: RadiativeTransportEquationSystem.h:29
const bool useShifted_
Definition: AssembleRadTransWallSolverAlgorithm.h:41
ScalarFieldType * bcIntensity_
Definition: AssembleRadTransWallSolverAlgorithm.h:44
Definition: Realm.h:82