Revision e2aa0a534ac83faecef630ae491e597880ec3748 authored by Lars Bilke on 27 August 2021, 13:07:01 UTC, committed by Lars Bilke on 24 September 2021, 07:38:25 UTC
1 parent d446988
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 <Eigen/Dense>
#include <memory>

namespace MaterialPropertyLib
{
class MaterialSpatialDistributionMap;
}

namespace ProcessLib
{
namespace LiquidFlow
{
struct LiquidFlowData final
{
    std::unique_ptr<MaterialPropertyLib::MaterialSpatialDistributionMap>
        media_map;
    Eigen::VectorXd const specific_body_force;
    bool const has_gravity;
};

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