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
MaterialProperty.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 MaterialProperty_h
10 #define MaterialProperty_h
11 
12 #include <Enums.h>
13 
14 // yaml for parsing..
15 #include <yaml-cpp/yaml.h>
16 
17 #include <map>
18 #include <string>
19 #include <vector>
20 
21 namespace sierra{
22 namespace nalu{
23 
24 class MaterialPropertys;
25 
27 public:
28  MaterialProperty(MaterialPropertys& matPropertys);
29 
31 
32  void load(const YAML::Node & node);
33 
34  virtual void breadboard(){}
35 
36  Simulation *root();
38 
40 };
41 
42 
43 } // namespace nalu
44 } // namespace Sierra
45 
46 #endif
Definition: Simulation.h:28
Definition: ABLForcingAlgorithm.C:26
MaterialProperty(MaterialPropertys &matPropertys)
Definition: MaterialProperty.C:28
virtual void breadboard()
Definition: MaterialProperty.h:34
EquationSystems * parent()
Definition: MaterialProperty.h:26
void load(const YAML::Node &node)
Definition: MaterialProperty.C:47
Definition: MaterialPropertys.h:37
A collection of Equations to be solved on a Realm.
Definition: EquationSystems.h:56
Tpetra::Map< LocalOrdinal, GlobalOrdinal >::node_type Node
Definition: LinearSolver.h:32
MaterialPropertys & matPropertys_
Definition: MaterialProperty.h:39
~MaterialProperty()
Definition: MaterialProperty.C:38