https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 1f4191c02ec16ac1f7ac5516516cc0706954d06e authored by Wenqing Wang on 24 June 2021, 09:48:45 UTC
[Test/postLIE] added a 3D test for post LIE
Tip revision: 1f4191c
IntegrationPointDataSoil.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

namespace ProcessLib
{
namespace HeatTransportBHE
{
template <typename NodalRowVectorType, typename GlobalDimNodalMatrixType>
struct IntegrationPointDataSoil final
{
    NodalRowVectorType const N;
    GlobalDimNodalMatrixType const dNdx;
    double const integration_weight;

    EIGEN_MAKE_ALIGNED_OPERATOR_NEW;
};
}  // namespace HeatTransportBHE
}  // namespace ProcessLib
back to top