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
PostProcessingInfo.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 PostProcessingInfo_h
10 #define PostProcessingInfo_h
11 
12 #include <NaluParsing.h>
13 
14 #include <string>
15 #include <vector>
16 
17 namespace sierra{
18 namespace nalu{
19 
20 class PostProcessingData;
21 
23 {
24 
25 public:
26 
29 
30  void load(const YAML::Node & y_node);
31 
32  std::vector<PostProcessingData *> ppDataVec_;
33 
34 };
35 
36 } // namespace nalu
37 } // namespace Sierra
38 
39 #endif
Definition: ABLForcingAlgorithm.C:26
void load(const YAML::Node &y_node)
Definition: PostProcessingInfo.C:47
Definition: PostProcessingInfo.h:22
std::vector< PostProcessingData * > ppDataVec_
Definition: PostProcessingInfo.h:32
~PostProcessingInfo()
Definition: PostProcessingInfo.C:36
Tpetra::Map< LocalOrdinal, GlobalOrdinal >::node_type Node
Definition: LinearSolver.h:32
PostProcessingInfo()
Definition: PostProcessingInfo.C:28