Revision 3765410fd673a036df4692b2cf7990d4a7823620 authored by Dmitry Yu. Naumov on 11 March 2021, 19:21:08 UTC, committed by Dmitry Yu. Naumov on 11 March 2021, 19:21:08 UTC
[THM/HM/RF] Change property assignment from solid phase to medium (permeability, storage, biot_coefficient, porosity)

Closes #3032

See merge request ogs/ogs!3114
2 parent s a95dcf4 + 4d1ff83
Raw File
CreateNewtonRaphsonSolverParameters.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

#pragma once

namespace BaseLib
{
class ConfigTree;
}

namespace NumLib
{
struct NewtonRaphsonSolverParameters;

NewtonRaphsonSolverParameters createNewtonRaphsonSolverParameters(
    BaseLib::ConfigTree const& config);
}  // namespace NumLib
back to top