Page MenuHomec4science

mfront_material.hh
No OneTemporary

File Metadata

Created
Thu, Jul 18, 14:41

mfront_material.hh

/*
* SPDX-License-Indentifier: AGPL-3.0-or-later
*
* Copyright (©) 2016-2023 EPFL (École Polytechnique Fédérale de Lausanne),
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
* Copyright (©) 2020-2023 Lucas Frérot
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef MFRONT_MATERIAL_HH
#define MFRONT_MATERIAL_HH
/* -------------------------------------------------------------------------- */
#include "material.hh"
#include "model_type.hh"
/* -------------------------------------------------------------------------- */
namespace tamaas {
/* -------------------------------------------------------------------------- */
class MFrontMaterial : public Material {
using parent = Material;
static constexpr auto type = model_type::volume_2d;
using trait = model_type_traits<type>;
static constexpr UInt dim = trait::dimension;
using Field = typename parent::Field;
public:
/// Constructor
MFrontMaterial(Model* model, std::string material);
};
} // namespace tamaas
/* -------------------------------------------------------------------------- */
#endif // MFRONT_MATERIAL_HH

Event Timeline