https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 9887f5d2746232bfd1dc035667c4e28968ee6ab7 authored by Renchao Lu on 06 November 2020, 10:22:14 UTC
[CT] Correct nomenclature for ion diffusivity in porous media.
Tip revision: 9887f5d
CreateJacobianAssembler.h
/**
 * \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
 *
 */

#pragma once

#include "BaseLib/ConfigTree.h"

namespace ProcessLib
{
class AbstractJacobianAssembler;

std::unique_ptr<AbstractJacobianAssembler> createJacobianAssembler(
    boost::optional<BaseLib::ConfigTree> const& config);
}  // ProcessLib
back to top