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
PostProcessingData.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 PostProcessingData_h
10 #define PostProcessingData_h
11 
12 #include <string>
13 #include <vector>
14 
15 namespace sierra{
16 namespace nalu{
17 
19 
20  public:
23 
24  std::string type_;
25  std::string physics_;
26  std::string outputFileName_;
28  std::vector<double> parameters_;
29  std::vector<std::string> targetNames_;
30 };
31 
32 } // namespace nalu
33 } // namespace Sierra
34 
35 #endif
~PostProcessingData()
Definition: PostProcessingData.h:22
Definition: ABLForcingAlgorithm.C:26
int frequency_
Definition: PostProcessingData.h:27
std::string outputFileName_
Definition: PostProcessingData.h:26
std::vector< double > parameters_
Definition: PostProcessingData.h:28
std::vector< std::string > targetNames_
Definition: PostProcessingData.h:29
PostProcessingData()
Definition: PostProcessingData.h:21
std::string physics_
Definition: PostProcessingData.h:25
Definition: PostProcessingData.h:18
std::string type_
Definition: PostProcessingData.h:24