OGS
GroutParameters.cpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#include "GroutParameters.h"
5
7
8namespace ProcessLib
9{
10namespace HeatTransportBHE
11{
12namespace BHE
13{
15{
16 const auto grout_density =
18 config.getConfigParameter<double>("density");
19 const auto grout_porosity =
21 config.getConfigParameter<double>("porosity");
22 const auto grout_heat_capacity =
24 config.getConfigParameter<double>("specific_heat_capacity");
25 const auto grout_thermal_conductivity =
27 config.getConfigParameter<double>("thermal_conductivity");
28 return {grout_density, grout_porosity, grout_heat_capacity,
29 grout_thermal_conductivity};
30}
31} // namespace BHE
32} // namespace HeatTransportBHE
33} // namespace ProcessLib
T getConfigParameter(std::string const &param) const
GroutParameters createGroutParameters(BaseLib::ConfigTree const &config)