20#include <fmt/format.h>
22namespace Opm::Pybind {
24template <
class TypeTag>
26PyMaterialState<TypeTag>::
29 Model &model = this->simulator_->model();
30 auto size = model.numGridDof();
31 std::vector<double>
array(size);
38template <
class TypeTag>
40PyMaterialState<TypeTag>::
43 Problem &problem = this->simulator_->problem();
44 Model &model = this->simulator_->model();
45 auto size = model.numGridDof();
46 std::vector<double>
array(size);
53template <
class TypeTag>
55PyMaterialState<TypeTag>::
56setPorosity(
const double* poro, std::size_t size)
58 Problem& problem = this->simulator_->problem();
59 Model& model = this->simulator_->model();
62 const std::string
msg = fmt::format(
63 "Cannot set porosity. Expected array of size: {}, got array of size: ",
65 throw std::runtime_error(
msg);
constexpr auto getPropValue()
get the value data member of a property
Definition propertysystem.hh:242