// Copyright(C) 1999-2021 National Technology & Engineering Solutions // of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with // NTESS, the U.S. Government retains certain rights in this software. // // See packages/seacas/LICENSE for details #include "Ioss_CodeTypes.h" // for IntVector #include "Ioss_ElementTopology.h" // for ElementTopology #include // for ElementVariableType #include #include // for assert #include // for nullptr //------------------------------------------------------------------------ // Define a variable type for storage of this elements connectivity namespace Ioss { const char *ShellLine2D2::name = "shellline2d2"; class St_ShellLine2D2 : public ElementVariableType { public: static void factory() { static St_ShellLine2D2 registerThis; } protected: St_ShellLine2D2() : ElementVariableType(Ioss::ShellLine2D2::name, 2) {} }; } // namespace Ioss // ======================================================================== namespace { struct Constants { static const int nnode = 2; static const int nedge = 2; static const int nedgenode = 2; static const int nface = 0; static const int nfacenode = 0; static const int nfaceedge = 0; }; } // namespace void Ioss::ShellLine2D2::factory() { static Ioss::ShellLine2D2 registerThis; Ioss::St_ShellLine2D2::factory(); } Ioss::ShellLine2D2::ShellLine2D2() : Ioss::ElementTopology(Ioss::ShellLine2D2::name, "ShellLine_2") { Ioss::ElementTopology::alias(Ioss::ShellLine2D2::name, "Shell_Line_2_2D"); Ioss::ElementTopology::alias(Ioss::ShellLine2D2::name, "SHELL_LINE_2"); } int Ioss::ShellLine2D2::parametric_dimension() const { return 1; } int Ioss::ShellLine2D2::spatial_dimension() const { return 2; } int Ioss::ShellLine2D2::order() const { return 1; } int Ioss::ShellLine2D2::number_corner_nodes() const { return 2; } int Ioss::ShellLine2D2::number_nodes() const { return Constants::nnode; } int Ioss::ShellLine2D2::number_edges() const { return Constants::nedge; } int Ioss::ShellLine2D2::number_faces() const { return Constants::nface; } int Ioss::ShellLine2D2::number_nodes_edge(int /* edge */) const { return Constants::nedgenode; } int Ioss::ShellLine2D2::number_nodes_face(int face) const { // face is 1-based. 0 passed in for all faces. assert(face >= 0 && face <= number_faces()); return Constants::nfacenode; } int Ioss::ShellLine2D2::number_edges_face(int face) const { // face is 1-based. 0 passed in for all faces. assert(face >= 0 && face <= number_faces()); return Constants::nfaceedge; } Ioss::IntVector Ioss::ShellLine2D2::edge_connectivity(int edge_number) const { Ioss::IntVector connectivity(Constants::nedgenode); if (edge_number == 1) { connectivity[0] = 0; connectivity[1] = 1; } else { connectivity[0] = 1; connectivity[1] = 0; } return connectivity; } Ioss::IntVector Ioss::ShellLine2D2::face_connectivity(int /* face_number */) const { Ioss::IntVector connectivity; return connectivity; } Ioss::IntVector Ioss::ShellLine2D2::element_connectivity() const { Ioss::IntVector connectivity(number_nodes()); for (int i = 0; i < number_nodes(); i++) { connectivity[i] = i; } return connectivity; } Ioss::ElementTopology *Ioss::ShellLine2D2::face_type(int /* face_number */) const { return (Ioss::ElementTopology *)nullptr; } Ioss::ElementTopology *Ioss::ShellLine2D2::edge_type(int /* edge_number */) const { return Ioss::ElementTopology::factory("edge2"); }