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
AssembleScalarFluxBCSolverAlgorithm.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 AssembleScalarFluxBCSolverAlgorithm_h
9 #define AssembleScalarFluxBCSolverAlgorithm_h
10 
11 #include<SolverAlgorithm.h>
12 #include<FieldTypeDef.h>
13 
14 namespace stk {
15 namespace mesh {
16 class Part;
17 }
18 }
19 
20 namespace sierra{
21 namespace nalu{
22 
23 class LinearSystem;
24 class Realm;
25 
27 {
28 public:
29 
31  Realm &realm,
32  stk::mesh::Part *part,
33  EquationSystem *eqSystem,
34  ScalarFieldType *bcScalarQ,
35  bool useShifted);
37  virtual void initialize_connectivity();
38  virtual void execute();
39 
40 private:
41 
42  const bool useShifted_;
43 
47 
48 };
49 
50 }
51 
52 }
53 
54 
55 #endif /* ASSEMBLESCALARELEMDIFFBCSOLVERALGORITHM_H_ */
Definition: ABLForcingAlgorithm.C:26
const bool useShifted_
Definition: AssembleScalarFluxBCSolverAlgorithm.h:42
stk::mesh::Field< double, stk::mesh::SimpleArrayTag > GenericFieldType
Definition: FieldTypeDef.h:27
Definition: SolverAlgorithm.h:24
Definition: Algorithm.h:14
stk::mesh::Field< double, stk::mesh::Cartesian > VectorFieldType
Definition: FieldTypeDef.h:24
Base class representation of a PDE.
Definition: EquationSystem.h:46
stk::mesh::Field< double > ScalarFieldType
Definition: FieldTypeDef.h:19
virtual ~AssembleScalarFluxBCSolverAlgorithm()
Definition: AssembleScalarFluxBCSolverAlgorithm.h:36
GenericFieldType * exposedAreaVec_
Definition: AssembleScalarFluxBCSolverAlgorithm.h:46
Definition: AssembleScalarFluxBCSolverAlgorithm.h:26
VectorFieldType * coordinates_
Definition: AssembleScalarFluxBCSolverAlgorithm.h:45
Definition: Realm.h:82
ScalarFieldType * bcScalarQ_
Definition: AssembleScalarFluxBCSolverAlgorithm.h:44