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
RadTransIsoScatteringNodeSuppAlg.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 RadTransIsoScatteringNodeSuppAlg_h
10 #define RadTransIsoScatteringNodeSuppAlg_h
11 
12 #include <SupplementalAlgorithm.h>
13 #include <FieldTypeDef.h>
14 
15 #include <stk_mesh/base/Entity.hpp>
16 
17 namespace sierra{
18 namespace nalu{
19 
20 class RadiativeTransportEquationSystem;
21 class Realm;
22 
23 //--------------------------------------------------------------------
25 {
26 public:
27 
29  Realm &realm,
31 
33 
34  virtual void node_execute(
35  double *lhs,
36  double *rhs,
37  stk::mesh::Entity node);
38 
43 
44  const double invPi_;
45 
46 };
47 
48 } // namespace nalu
49 } // namespace Sierra
50 
51 #endif
Definition: ABLForcingAlgorithm.C:26
virtual ~RadTransIsoScatteringNodeSuppAlg()
Definition: RadTransIsoScatteringNodeSuppAlg.h:32
ScalarFieldType * scalarFlux_
Definition: RadTransIsoScatteringNodeSuppAlg.h:40
static constexpr double lhs[8][8]
Definition: UnitTestContinuityAdvElem.C:25
ScalarFieldType * scattering_
Definition: RadTransIsoScatteringNodeSuppAlg.h:41
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
static constexpr double rhs[8]
Definition: UnitTestContinuityAdvElem.C:18
Definition: RadiativeTransportEquationSystem.h:29
virtual void node_execute(double *lhs, double *rhs, stk::mesh::Entity node)
Definition: RadTransIsoScatteringNodeSuppAlg.C:54
ScalarFieldType * dualNodalVolume_
Definition: RadTransIsoScatteringNodeSuppAlg.h:42
Definition: RadTransIsoScatteringNodeSuppAlg.h:24
Definition: Realm.h:82
Definition: SupplementalAlgorithm.h:24
const RadiativeTransportEquationSystem * radEqSystem_
Definition: RadTransIsoScatteringNodeSuppAlg.h:39
RadTransIsoScatteringNodeSuppAlg(Realm &realm, RadiativeTransportEquationSystem *radEqSystem)
Definition: RadTransIsoScatteringNodeSuppAlg.C:33
const double invPi_
Definition: RadTransIsoScatteringNodeSuppAlg.h:44