Revision 052b1b5c47220b26c2b076c65587a16aeda771f4 authored by Dmitry Yu. Naumov on 11 June 2021, 15:17:58 UTC, committed by Dmitry Yu. Naumov on 11 June 2021, 15:17:58 UTC
[Web] Web documentation of the parallel-plate testcase.

See merge request ogs/ogs!3658
2 parent s 054ceca + 48f8090
Raw File
ExtrapolatableElement.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 <Eigen/Core>

namespace NumLib
{
/*! Interface for providing shape matrices and integration point values for
 *  extrapolation,
 *
 * Local assemblers that want to have some integration point values extrapolated
 * using an Extrapolator have to implement this interface.
 */
class ExtrapolatableElement
{
public:
    //! Provides the shape matrix at the given integration point.
    virtual Eigen::Map<const Eigen::RowVectorXd> getShapeMatrix(
        const unsigned integration_point) const = 0;

    virtual ~ExtrapolatableElement() = default;
};

}  // namespace NumLib
back to top