/** * \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 #include "ProcessLib/Process.h" namespace ProcessLib { namespace ThermalTwoPhaseFlowWithPP { std::unique_ptr createThermalTwoPhaseFlowWithPPProcess( std::string name, MeshLib::Mesh& mesh, std::unique_ptr&& jacobian_assembler, std::vector const& variables, std::vector> const& parameters, unsigned const integration_order, BaseLib::ConfigTree const& config, std::map> const& curves); } // namespace ThermalTwoPhaseFlowWithPP } // namespace ProcessLib