swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 4dd607ec8244fce6456456622789a92f83c0eb9c authored by Lars Bilke on 17 June 2021, 08:05:02 UTC
Merge branch 'mfront-runtime-fix' into 'master'
Tip revision: 4dd607e
SteadyStateDiffusionData.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 "MaterialLib/MPL/MaterialSpatialDistributionMap.h"

namespace ProcessLib
{

template <typename T>
struct Parameter;

namespace SteadyStateDiffusion
{
struct SteadyStateDiffusionData final
{
    std::unique_ptr<MaterialPropertyLib::MaterialSpatialDistributionMap>
        media_map;
};

} // namespace SteadyStateDiffusion
} // namespace ProcessLib
back to top