Revision 1395b0cfeb023057d72856d15db9d303470f0abc authored by Dmitri Naumov on 22 November 2022, 17:36:29 UTC, committed by Dmitry Yu. Naumov on 16 December 2022, 12:33:18 UTC
Updates to Newton, p and u = 0 through Dirichlet BC,
References updated but the results are very well comparable
with the heat conduction's results.
1 parent 8ee0899
Raw File
CreateTimeLoop.h
/**
 * \file
 *
 * \copyright
 * Copyright (c) 2012-2022, 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 <map>
#include <memory>
#include <string>
#include <vector>

namespace BaseLib
{
class ConfigTree;
}

namespace MeshLib
{
class Mesh;
}

namespace NumLib
{
class NonlinearSolverBase;
}

namespace ProcessLib
{
class TimeLoop;
class Process;
}

namespace ProcessLib
{
//! Builds a TimeLoop from the given configuration.
std::unique_ptr<TimeLoop> createTimeLoop(
    BaseLib::ConfigTree const& config, std::string const& output_directory,
    std::vector<std::unique_ptr<Process>> const& processes,
    std::map<std::string, std::unique_ptr<NumLib::NonlinearSolverBase>> const&
        nonlinear_solvers,
    std::vector<std::unique_ptr<MeshLib::Mesh>> const& meshes,
    bool const compensate_non_equilibrium_initial_residuum);

}  // namespace ProcessLib
back to top