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
ComputeGeometryAlgorithmDriver.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 ComputeGeometryAlgorithmDriver_h
10 #define ComputeGeometryAlgorithmDriver_h
11 
12 #include<AlgorithmDriver.h>
13 
14 namespace sierra{
15 namespace nalu{
16 
17 class Realm;
18 
20 {
21 public:
22 
24  Realm &realm);
26 
27  void pre_work();
28  void post_work();
29 
30 };
31 
32 
33 } // namespace nalu
34 } // namespace Sierra
35 
36 #endif
Definition: ABLForcingAlgorithm.C:26
void post_work()
Definition: ComputeGeometryAlgorithmDriver.C:112
ComputeGeometryAlgorithmDriver(Realm &realm)
Definition: ComputeGeometryAlgorithmDriver.C:38
void pre_work()
Definition: ComputeGeometryAlgorithmDriver.C:49
Definition: AlgorithmDriver.h:22
Definition: ComputeGeometryAlgorithmDriver.h:19
Definition: Realm.h:82
virtual ~ComputeGeometryAlgorithmDriver()
Definition: ComputeGeometryAlgorithmDriver.h:25