OGS
SmallDeformation/ConstitutiveRelations/SolidDensity.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 "SolidDensity.h"
5
7{
9 MediaData const& media_data,
10 Temperature const& temperature,
11 SolidDensity& out) const
12{
13 namespace MPL = MaterialPropertyLib;
14 MPL::VariableArray variables;
15 variables.temperature = *temperature;
16
18 .template value<double>(variables, x_t.x, x_t.t, x_t.dt);
19}
20} // namespace ProcessLib::SmallDeformation
Property const & property(PropertyType const &p) const
Definition Phase.cpp:44
BaseLib::StrongType< double, struct TemperatureTag > Temperature
BaseLib::StrongType< double, struct SolidDensityTag > SolidDensity
void eval(SpaceTimeData const &x_t, MediaData const &media_data, Temperature const &temperature, SolidDensity &out) const