Revision 00c9b6d01aa8e7149eb150fd8c3bf2a65c532d63 authored by Dmitry Yu. Naumov on 08 October 2021, 16:56:31 UTC, committed by Dmitry Yu. Naumov on 08 October 2021, 16:56:31 UTC
Fixed a bug in LIE

Closes #3173

See merge request ogs/ogs!3834
2 parent s 88fbc90 + c98be45
Raw File
HTProcessData.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 <utility>

#include <Eigen/Eigen>

#include "MaterialLib/MPL/MaterialSpatialDistributionMap.h"
#include "ParameterLib/Parameter.h"

namespace ProcessLib
{
namespace HT
{
struct HTProcessData final
{
    std::unique_ptr<MaterialPropertyLib::MaterialSpatialDistributionMap>
        media_map;
    bool const has_fluid_thermal_expansion;
    ParameterLib::Parameter<double> const& solid_thermal_expansion;
    ParameterLib::Parameter<double> const& biot_constant;
    Eigen::VectorXd const specific_body_force;
    bool const has_gravity;
    int const heat_transport_process_id;
    int const hydraulic_process_id;
};

}  // namespace HT
}  // namespace ProcessLib
back to top