Revision 9816d02b6cb780a0b872fdc153a967cecd300e8a authored by Dmitri Naumov on 08 March 2021, 14:34:27 UTC, committed by Dmitri Naumov on 09 March 2021, 09:17:26 UTC
From the equations we have
eps = eps_{m} + eps_{sw},
with eps_{sw} = -C_el^{-1} sigma_{sw}.

All other places are using correct sign.
1 parent eacfb89
Raw File
TimeDiscretizationBuilder.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

#include <memory>

namespace BaseLib
{
class ConfigTree;
}
namespace NumLib
{
class TimeDiscretization;
}

namespace NumLib
{
std::unique_ptr<TimeDiscretization> createTimeDiscretization(
    BaseLib::ConfigTree const& config);
}
back to top