https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 365ae873a8e2243d2b174113fe6e6e48754d1676 authored by Wenqing Wang on 23 February 2021, 13:40:42 UTC
[Test/TM] Changed the result comparison tolerances of two benchmarks
Tip revision: 365ae87
CreateThermalTwoPhaseFlowWithPPProcess.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>

#include "ProcessLib/Process.h"

namespace ProcessLib
{
namespace ThermalTwoPhaseFlowWithPP
{
std::unique_ptr<Process> createThermalTwoPhaseFlowWithPPProcess(
    std::string name,
    MeshLib::Mesh& mesh,
    std::unique_ptr<ProcessLib::AbstractJacobianAssembler>&& jacobian_assembler,
    std::vector<ProcessVariable> const& variables,
    std::vector<std::unique_ptr<ParameterLib::ParameterBase>> const& parameters,
    unsigned const integration_order,
    BaseLib::ConfigTree const& config,
    std::map<std::string,
             std::unique_ptr<MathLib::PiecewiseLinearInterpolation>> const&
        curves);
}  // namespace ThermalTwoPhaseFlowWithPP
}  // namespace ProcessLib
back to top