Revision 1cfb2af0aea3f172a646109e236c2c5056269d83 authored by Thomas Fischer on 29 January 2021, 05:04:49 UTC, committed by Dmitri Naumov on 13 March 2021, 20:23:03 UTC
1 parent 50f2e71
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