https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 8c62075c55e1a76f3ec4fd3a7eeb76f164eedf98 authored by Thomas Fischer on 08 October 2021, 11:43:24 UTC
[ParamLib] Use map instead of vector in GroupedBasedParameter.
Tip revision: 8c62075
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