https://gitlab.opengeosys.org/ogs/ogs.git
Revision 50395de8fe9589d56cc1a804ab084c430c559e23 authored by FZill on 18 December 2020, 16:06:45 UTC, committed by FZill on 18 December 2020, 16:06:45 UTC
Draft: [MPL] Added SingleEmbeddedFracturePermeability Model

See merge request ogs/ogs!3341
2 parent s 3b8cfb9 + 9bf0f07
Raw File
Tip revision: 50395de8fe9589d56cc1a804ab084c430c559e23 authored by FZill on 18 December 2020, 16:06:45 UTC
Merge branch 'EFM' into 'master'
Tip revision: 50395de
CreateJacobianAssembler.cpp
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#include "CreateJacobianAssembler.h"
#include "BaseLib/Error.h"

#include "AnalyticalJacobianAssembler.h"
#include "CentralDifferencesJacobianAssembler.h"
#include "CompareJacobiansJacobianAssembler.h"

namespace ProcessLib
{
std::unique_ptr<AbstractJacobianAssembler> createJacobianAssembler(
    boost::optional<BaseLib::ConfigTree> const& config)
{
    if (!config)
    {
        return std::make_unique<AnalyticalJacobianAssembler>();
    }

    //! \ogs_file_param{prj__processes__process__jacobian_assembler__type}
    auto const type = config->peekConfigParameter<std::string>("type");

    if (type == "Analytical") {
        config->ignoreConfigParameter("type");
        return std::make_unique<AnalyticalJacobianAssembler>();
    }
    if (type == "CentralDifferences")
    {
        return createCentralDifferencesJacobianAssembler(*config);
    }
    if (type == "CompareJacobians")
    {
        return createCompareJacobiansJacobianAssembler(*config);
    }

    OGS_FATAL("Unknown Jacobian assembler type: `{:s}'.", type);
}
}  // namespace ProcessLib
back to top