https://gitlab.opengeosys.org/ogs/ogs.git
Revision 4c5cca1a501638d7669e7fcdd037f1308c6bd8e4 authored by Dmitri Naumov on 26 January 2021, 23:19:57 UTC, committed by Dmitri Naumov on 03 February 2021, 21:01:18 UTC
The increment tolerance is used as an additional convergence
criterion.

Introduction of the new tolerance requires renaming of the
residuum tolerance.
1 parent f635a67
Raw File
Tip revision: 4c5cca1a501638d7669e7fcdd037f1308c6bd8e4 authored by Dmitri Naumov on 26 January 2021, 23:19:57 UTC
[NL] Local Newton. Add increment tolerance.
Tip revision: 4c5cca1
CreateJacobianAssembler.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 "BaseLib/ConfigTree.h"

namespace ProcessLib
{
class AbstractJacobianAssembler;

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