Revision d20a26b17c26af286a7d26018646404680a8d739 authored by Lars Bilke on 13 April 2023, 07:05:49 UTC, committed by Christoph Lehmann on 26 April 2023, 15:01:25 UTC
1 parent ef3dd81
Raw File
HeatConductionProcessData.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, 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::HeatConduction
{
struct HeatConductionProcessData
{
    std::unique_ptr<MaterialPropertyLib::MaterialSpatialDistributionMap>
        media_map;

    /// If set mass lumping will be applied to the equation.
    bool const mass_lumping;

    int const mesh_space_dimension;
};
}  // namespace ProcessLib::HeatConduction
back to top