swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 0f7635626a6f759b08e13409fa1eb7bda522d45b authored by Dmitry Yu. Naumov on 09 September 2021, 08:09:26 UTC
Merge branch 'UseTransformAlgorithmForIPIO' into 'master'
Tip revision: 0f76356
StokesFlowProcessData.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/Eigen>
#include <memory>

#include "MeshLib/PropertyVector.h"

namespace MaterialPropertyLib
{
class MaterialSpatialDistributionMap;
}

namespace ProcessLib
{
namespace StokesFlow
{
struct StokesFlowProcessData
{
    std::unique_ptr<MaterialPropertyLib::MaterialSpatialDistributionMap>
        media_map;
    /// an external force that applies in the bulk of the fluid, like gravity.
    Eigen::VectorXd const specific_body_force;

    /// When true, the Darcy term will be
    /// included in the momentum balance equation.
    bool const use_stokes_brinkman_form;

    MeshLib::PropertyVector<double>* pressure_interpolated = nullptr;
};

}  // namespace StokesFlow
}  // namespace ProcessLib
back to top