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
StateTable.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 StateTable_h
10 #define StateTable_h
11 
12 #include <string>
13 #include <vector>
14 
15 namespace sierra{
16 namespace nalu{
17 
19 {
20 public:
21 
22  StateTable(
23  const std::string propertyTableName );
24  ~StateTable();
25 
26  std::vector<std::vector<double > > table_;
27 
28  std::vector<std::vector<double> > *get_entry();
29 
30 };
31 
32 } // namespace nalu
33 } // namespace Sierra
34 
35 #endif
Definition: ABLForcingAlgorithm.C:26
std::vector< std::vector< double > > * get_entry()
Definition: StateTable.h:18
std::vector< std::vector< double > > table_
Definition: StateTable.h:26
StateTable(const std::string propertyTableName)