Chi-Tech
chi_physicsmaterial.h
Go to the documentation of this file.
1#ifndef CHI_PHYSICS_MATERIAL_H
2#define CHI_PHYSICS_MATERIAL_H
3
6
7#include <vector>
8#include <memory>
9
10namespace chi_physics
11{
12
13//###################################################################
14/** Base class for materials used in physics simulations.*/
16{
17public:
18 std::vector<std::shared_ptr<MaterialProperty>> properties_{};
19 std::string name_="Unnamed Material";
20
21};
22
23}//namespace chi_physics
24
25#endif
std::vector< std::shared_ptr< MaterialProperty > > properties_