https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: d54fd7e3dbb7f230874cd587d289b2dbe97334e1 authored by Tobias Meisel on 08 November 2023, 08:17:39 UTC
Merge branch 'chunk_size' into 'master'
Tip revision: d54fd7e
LineRule2.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 "EdgeReturn.h"
#include "LineRule.h"

namespace MeshLib
{
/**
 * A 1d Edge or Line Element with 2 nodes.
 * \code
 *  0--------1
 * \endcode
 */
class LineRule2 : public LineRule
{
public:
    /// Constant: The number of all nodes for this element
    static const unsigned n_all_nodes = 2u;

    /// Constant: The FEM type of the element
    static const CellType cell_type = CellType::LINE2;

    /// Constant: Local node index table for edge
    static const unsigned edge_nodes[1][2];

    /// Edge rule
    using EdgeReturn = MeshLib::LinearEdgeReturn;
}; /* class */

}  // namespace MeshLib
back to top