Revision 65b31f55718200fcf4bd5ec6af5a701f51b63a3f authored by wenqing on 16 April 2021, 13:39:35 UTC, committed by wenqing on 16 April 2021, 13:39:35 UTC
[TRM] Corrected the temperature passed to variable_array_prev

See merge request ogs/ogs!3568
2 parent s e4a5b05 + 53440de
Raw File
LiquidFlowData.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>

namespace MaterialPropertyLib
{
class MaterialSpatialDistributionMap;
}

namespace ProcessLib
{
namespace LiquidFlow
{
struct LiquidFlowData final
{
    std::unique_ptr<MaterialPropertyLib::MaterialSpatialDistributionMap>
        media_map;
    const int gravitational_axis_id;
    const double gravitational_acceleration;
};

}  // namespace LiquidFlow
}  // namespace ProcessLib
back to top