https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 2d267e58154ae6606cc4c1da105879c18a4e5705 authored by montoyav on 15 March 2021, 10:16:33 UTC
Merge branch 'cherry-pick-54f2208a' into 'master'
Tip revision: 2d267e5
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