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
MeshMotionInfo.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 MeshMotionInfo_h
10 #define MeshMotionInfo_h
11 
12 // standard c++
13 #include <string>
14 #include <vector>
15 
16 namespace sierra{
17 namespace nalu{
18 
20 {
21  public:
23  std::vector<std::string> meshMotionBlock,
24  const double omega,
25  std::vector<double> centroid,
26  std::vector<double> unitVec,
27  const bool computeCentroid);
28 
30 
31  std::vector<std::string> meshMotionBlock_;
32  const double omega_;
33  std::vector<double> centroid_;
34  std::vector<double> unitVec_;
35  const double computeCentroid_;
37 };
38 
39 } // namespace nalu
40 } // namespace Sierra
41 
42 #endif
std::vector< double > centroid_
Definition: MeshMotionInfo.h:33
Definition: ABLForcingAlgorithm.C:26
std::vector< double > unitVec_
Definition: MeshMotionInfo.h:34
const double omega_
Definition: MeshMotionInfo.h:32
MeshMotionInfo(std::vector< std::string > meshMotionBlock, const double omega, std::vector< double > centroid, std::vector< double > unitVec, const bool computeCentroid)
Definition: MeshMotionInfo.C:27
const double computeCentroid_
Definition: MeshMotionInfo.h:35
~MeshMotionInfo()
Definition: MeshMotionInfo.C:46
Definition: MeshMotionInfo.h:19
double computeCentroidCompleted_
Definition: MeshMotionInfo.h:36
std::vector< std::string > meshMotionBlock_
Definition: MeshMotionInfo.h:31