OGS
InitialStress.h
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#pragma once
5
7
8namespace ProcessLib
9{
11{
12 enum class Type
13 {
16 };
17
18 bool isTotalStress() const { return value && (type == Type::Total); }
19
20 ParameterLib::Parameter<double> const* const value = nullptr;
22};
23} // namespace ProcessLib
ParameterLib::Parameter< double > const *const value