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
ComputeMdotAlgorithmDriver.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 ComputeMdotAlgorithmDriver_h
10 #define ComputeMdotAlgorithmDriver_h
11 
12 #include <AlgorithmDriver.h>
13 #include <string>
14 
15 namespace sierra{
16 namespace nalu{
17 
18 class Realm;
19 class SolutionOptions;
20 
22 {
23 public:
24 
26  Realm &realm);
27 
29 
30  double compute_accumulation();
31 
33  bool hasMass_;
35 
36  void pre_work();
37  void post_work();
38 };
39 
40 
41 } // namespace nalu
42 } // namespace Sierra
43 
44 #endif
Definition: ABLForcingAlgorithm.C:26
Definition: ComputeMdotAlgorithmDriver.h:21
void post_work()
Definition: ComputeMdotAlgorithmDriver.C:129
void pre_work()
Definition: ComputeMdotAlgorithmDriver.C:117
Definition: SolutionOptions.h:38
~ComputeMdotAlgorithmDriver()
Definition: ComputeMdotAlgorithmDriver.C:108
double compute_accumulation()
Definition: ComputeMdotAlgorithmDriver.C:150
bool lumpedMass_
Definition: ComputeMdotAlgorithmDriver.h:34
bool hasMass_
Definition: ComputeMdotAlgorithmDriver.h:33
SolutionOptions & solnOpts_
Definition: ComputeMdotAlgorithmDriver.h:32
Definition: AlgorithmDriver.h:22
ComputeMdotAlgorithmDriver(Realm &realm)
Definition: ComputeMdotAlgorithmDriver.C:41
Definition: Realm.h:82