https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ae12633d3c6400b67ba03742fa14943771e560aa authored by KeitaYoshioka on 10 November 2021, 11:54:11 UTC
[ML/PhF] VolDevDegradedStress re-implementation using a heaviside function
Tip revision: ae12633
SecondaryData.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 <vector>

#include <Eigen/Eigen>

#include "NumLib/Fem/CoordinatesMapping/ShapeMatrices.h"

namespace ProcessLib
{
namespace HeatTransportBHE
{
/// Used for extrapolation of the integration point values. It is ordered
/// (and stored) by integration points.
template <typename ShapeMatrixType>
struct SecondaryData
{
    std::vector<ShapeMatrixType, Eigen::aligned_allocator<ShapeMatrixType>> N;
};
}  // namespace HeatTransportBHE
}  // namespace ProcessLib
back to top