Page MenuHomec4science

test_buildfacets_pentahedron_6.cc
No OneTemporary

File Metadata

Created
Sun, May 5, 23:52

test_buildfacets_pentahedron_6.cc

/**
* @file test_buildfacets_pentahedron_6.cc
*
* @author Mauro Corrado <mauro.corrado@epfl.ch>
*
* @date creation: Sun Oct 19 2014
* @date last modification: Tue Sep 08 2020
*
* @brief Test for cohesive elements
*
*
* @section LICENSE
*
* Copyright (©) 2010-2021 EPFL (Ecole Polytechnique Fédérale de Lausanne)
* Laboratory (LSMS - Laboratoire de Simulation en Mécanique des Solides)
*
* Akantu is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Akantu is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Akantu. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#include <fstream>
#include <iostream>
#include <limits>
/* -------------------------------------------------------------------------- */
#include "aka_common.hh"
#include "mesh.hh"
#include "mesh_utils.hh"
/* -------------------------------------------------------------------------- */
using namespace akantu;
int main(int argc, char * argv[]) {
initialize(argc, argv);
const UInt spatial_dimension = 3;
const ElementType type = _pentahedron_6;
Mesh mesh(spatial_dimension);
mesh.read("pentahedron_6.msh");
Mesh & mesh_facets = mesh.initMeshFacets("mesh_facets");
Vector<const ElementType> types_facet(mesh.getAllFacetTypes(type));
const ElementType type_subfacet = mesh.getFacetType(types_facet(0));
const ElementType type_subsubfacet = mesh.getFacetType(type_subfacet);
/* ------------------------------------------------------------------------ */
/* Element to Subelement testing */
/* ------------------------------------------------------------------------ */
for (UInt ft = 0; ft < types_facet.size(); ++ft) {
ElementType type_facet = types_facet(ft);
auto && el_to_subel3 = mesh_facets.getElementToSubelement(type_facet);
std::cout << "ElementToSubelement3" << std::endl;
for (UInt i = 0; i < el_to_subel3.size(); ++i) {
std::cout << type_facet << " " << i << " connected to ";
for (UInt j = 0; j < 2; ++j) {
std::cout << el_to_subel3(i)[j].type << " "
<< el_to_subel3(i)[j].element << ", ";
}
std::cout << " " << std::endl;
}
}
const Array<std::vector<Element>> & el_to_subel2 =
mesh_facets.getElementToSubelement(type_subfacet);
const Array<std::vector<Element>> & el_to_subel1 =
mesh_facets.getElementToSubelement(type_subsubfacet);
std::cout << "ElementToSubelement2" << std::endl;
for (UInt i = 0; i < el_to_subel2.size(); ++i) {
std::cout << type_subfacet << " " << i << " connected to ";
for (UInt j = 0; j < el_to_subel2(i).size(); ++j) {
std::cout << el_to_subel2(i)[j].type << " " << el_to_subel2(i)[j].element
<< ", ";
}
std::cout << " " << std::endl;
}
std::cout << "ElementToSubelement1" << std::endl;
for (UInt i = 0; i < el_to_subel1.size(); ++i) {
std::cout << type_subsubfacet << " " << i << " connected to ";
for (UInt j = 0; j < el_to_subel1(i).size(); ++j) {
std::cout << el_to_subel1(i)[j].type << " " << el_to_subel1(i)[j].element
<< ", ";
}
std::cout << " " << std::endl;
}
/* ------------------------------------------------------------------------ */
/* Subelement to Element testing */
/* ------------------------------------------------------------------------ */
auto && subel_to_el3 = mesh_facets.getSubelementToElement(type);
std::cout << " " << std::endl;
std::cout << "SubelementToElement3" << std::endl;
for (UInt i = 0; i < subel_to_el3.size(); ++i) {
std::cout << type << " " << i << " connected to ";
for (UInt j = 0; j < subel_to_el3.getNbComponent(); ++j) {
std::cout << subel_to_el3(i, j).type << " " << subel_to_el3(i, j).element
<< ", ";
}
std::cout << " " << std::endl;
}
for (UInt ft = 0; ft < types_facet.size(); ++ft) {
ElementType type_facet = types_facet(ft);
auto && subel_to_el2 = mesh_facets.getSubelementToElement(type_facet);
std::cout << "SubelementToElement2" << std::endl;
for (UInt i = 0; i < subel_to_el2.size(); ++i) {
std::cout << type_facet << " " << i << " connected to ";
for (UInt j = 0; j < subel_to_el2.getNbComponent(); ++j) {
std::cout << subel_to_el2(i, j).type << " "
<< subel_to_el2(i, j).element << ", ";
}
std::cout << " " << std::endl;
}
}
const Array<Element> & subel_to_el1 =
mesh_facets.getSubelementToElement(type_subfacet);
std::cout << "SubelementToElement1" << std::endl;
for (UInt i = 0; i < subel_to_el1.size(); ++i) {
std::cout << type_subfacet << " " << i << " connected to ";
for (UInt j = 0; j < subel_to_el1.getNbComponent(); ++j) {
std::cout << subel_to_el1(i, j).type << " " << subel_to_el1(i, j).element
<< ", ";
}
std::cout << " " << std::endl;
}
finalize();
return EXIT_SUCCESS;
}

Event Timeline