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
SurfaceForceAndMomentAlgorithmDriver.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 SurfaceForceAndMomentAlgorithmDriver_h
10 #define SurfaceForceAndMomentAlgorithmDriver_h
11 
12 #include <AlgorithmDriver.h>
13 #include <string>
14 #include <vector>
15 
16 namespace sierra{
17 namespace nalu{
18 
19 class Realm;
20 
22 {
23 public:
24 
26  Realm &realm);
28 
29  std::vector<Algorithm *> algVec_;
30 
31  void execute();
32 
33  void zero_fields();
36 
37 };
38 
39 
40 } // namespace nalu
41 } // namespace Sierra
42 
43 #endif
SurfaceForceAndMomentAlgorithmDriver(Realm &realm)
Definition: SurfaceForceAndMomentAlgorithmDriver.C:38
Definition: ABLForcingAlgorithm.C:26
std::vector< Algorithm * > algVec_
Definition: SurfaceForceAndMomentAlgorithmDriver.h:29
void parallel_assemble_fields()
Definition: SurfaceForceAndMomentAlgorithmDriver.C:90
void zero_fields()
Definition: SurfaceForceAndMomentAlgorithmDriver.C:60
Definition: SurfaceForceAndMomentAlgorithmDriver.h:21
~SurfaceForceAndMomentAlgorithmDriver()
Definition: SurfaceForceAndMomentAlgorithmDriver.C:48
Definition: AlgorithmDriver.h:22
Definition: Realm.h:82
void parallel_assemble_area()
Definition: SurfaceForceAndMomentAlgorithmDriver.C:123
void execute()
Definition: SurfaceForceAndMomentAlgorithmDriver.C:156