test_propagators_00002.cpp
Example of multi-stepped scalar field propagation on non-homogeneous tetra-wedge volume mesh.Using: PropagateScalarField
To run: ./test_propagators_00002
visit: mimmo website
/*---------------------------------------------------------------------------*\
*
* mimmo
*
* Copyright (C) 2015-2021 OPTIMAD engineering Srl
*
* -------------------------------------------------------------------------
* License
* This file is part of mimmo.
*
* mimmo is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License v3 (LGPL)
* as published by the Free Software Foundation.
*
* mimmo 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 mimmo. If not, see <http://www.gnu.org/licenses/>.
*
\ *---------------------------------------------------------------------------*/
#include "mimmo_propagators.hpp"
// =================================================================================== //
// =================================================================================== //
// =================================================================================== //
/*
* Create bar grid with prismatic layer + tetrahedral bulk and an intermediate ref level between them
* \param[out]boundary layer surface grid pidded in 3, 0 front face prismatic, 1 back bulk bar faces, 2 other.
* \return the volume grid
*/
mimmo::MimmoSharedPointer<mimmo::MimmoObject> createTestVolumeMesh( mimmo::MimmoSharedPointer<mimmo::MimmoObject> &boundary)
{
std::array<double, 3> origin({{0.0,0.0,0.0}});
double width(0.2), height(0.2);
double prismdepth(0.4), bulkdepth(0.6);
int nw(10), nh(10), npd(20), nbd(30);
double deltaw = width/ double(nw);
double deltah = height/ double(nh);
double deltapd = prismdepth/ double(npd);
double deltabd = bulkdepth/ double(nbd);
std::vector<std::array<double,3> > verts ((nw+1)*(nh+1)*(npd+nbd+1));
int counter = 0;
//prism layer verts
for(int k=0; k<npd; ++k){
for(int j=0; j<=nh; ++j){
for(int i=0; i<=nw; ++i){
verts[counter][0] = origin[0] + deltaw * i;
verts[counter][1] = origin[1] + deltah * j;
verts[counter][2] = origin[2] + deltapd * k;
++counter;
}
}
}
//bulk layer verts
for(int k=0; k<=nbd; ++k){
for(int j=0; j<=nh; ++j){
for(int i=0; i<=nw; ++i){
verts[counter][0] = origin[0] + deltaw * i;
verts[counter][1] = origin[1] + deltah * j;
verts[counter][2] = origin[2] + deltapd * npd + deltabd * k;
++counter;
}
}
}
//create the volume mesh mimmo.
mimmo::MimmoSharedPointer<mimmo::MimmoObject> mesh = mimmo::MimmoSharedPointer<mimmo::MimmoObject>(new mimmo::MimmoObject(2));
mesh->getPatch()->reserveVertices(counter);
//pump up the vertices
for(const auto & vertex : verts){
mesh->addVertex(vertex); //automatic id assigned to vertices.
}
//using Kuhn decomposition in tetrahedra from hexahedron, cut on diagonal for prism layer cells from hexahedron
mesh->getPatch()->reserveCells(2*nw*nh*npd + 6*nw*nh*nbd);
//create connectivities for wedge elements of prism layer
std::vector<long> conn(6,0);
for(int k=0; k<npd; ++k){
for(int j=0; j<nh; ++j){
for(int i=0; i<nw; ++i){
//FIRST 0-2-1-4-6-7 from elemental hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
conn[2] = (nw+1)*(nh+1)*k + (nw+1)*j + i+1;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
conn[4] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
conn[5] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::WEDGE);
//SECOND 0-3-2-4-7-6 from elemental hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i;
conn[2] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
conn[4] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i;
conn[5] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::WEDGE);
}
}
}
//create connectivities for tetra elements: USING KUHN
//BEWARE, the coarser the tetrahedral kuhn adapted part the worse the non-orthogonality of cells.
// This impacts on LAPLACIAL SOLUTION. //TODO Use a better tetrahedral element generation.
conn.clear();
conn.resize(4,0);
for(int k=npd; k<(npd+nbd); ++k){
for(int j=0; j<nh; ++j){
for(int i=0; i<nw; ++i){
//FIRST 0-1-2-6 from elemenhal hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*k + (nw+1)*j + i+1;
conn[2] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
//SECOND 0-5-1-6 from elemenhal hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i+1;
conn[2] = (nw+1)*(nh+1)*k + (nw+1)*j + i+1;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
//THIRD 0-2-3-6 from elemenhal hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i+1;
conn[2] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
//FIRST 0-4-5-6 from elemenhal hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
conn[2] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i+1;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
//SECOND 0-7-4-6 from elemenhal hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i;
conn[2] = (nw+1)*(nh+1)*(k+1) + (nw+1)*j + i;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
//THIRD 0-3-7-6 from elemenhal hexa
conn[0] = (nw+1)*(nh+1)*k + (nw+1)*j + i;
conn[1] = (nw+1)*(nh+1)*k + (nw+1)*(j+1) + i;
conn[2] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i;
conn[3] = (nw+1)*(nh+1)*(k+1) + (nw+1)*(j+1) + i+1;
mesh->addConnectedCell(conn, bitpit::ElementType::TETRA);
}
}
}
mesh->updateAdjacencies();
mesh->updateInterfaces();
mesh->update();
livector1D borderverts = mesh->extractBoundaryVertexID();
//get the subset of ids nearest at z=0 and z= prismdepth+bulkdepth;
double zin(0.0), zout(prismdepth+bulkdepth), zwork;
std::vector<long> boundary1verts, boundary2verts;
for(long idv : borderverts){
zwork = mesh->getVertexCoords(idv)[2];
if(std::abs(zwork - zin) < 0.5*deltapd){
boundary1verts.push_back(idv);
}
if(std::abs(zwork - zout) < 0.5*deltabd){
boundary2verts.push_back(idv);
}
}
//serial test
//put together
mimmo::MimmoPiercedVector<long> pidfaces;
pidfaces.reserve(boundary1faces.size()+boundary2faces.size());
for(long id : boundary1faces){
pidfaces.insert(id,0);
}
for(long id : boundary2faces){
pidfaces.insert(id,1);
}
std::vector<long> boundaryverts(boundary1verts.begin(), boundary1verts.end());
boundaryverts.insert(boundaryverts.end(), boundary2verts.begin(), boundary2verts.end());
//create the boundary meshes
auto orinterfaces = mesh->getInterfaces();
auto orcells = mesh->getCells();
boundary->getPatch()->reserveVertices(boundaryverts.size());
boundary->getPatch()->reserveCells(pidfaces.size());
//push in verts
for(long id : boundaryverts){
boundary->addVertex(mesh->getVertexCoords(id), id);
}
//push in interfaces ad 2D cells
for(auto it=pidfaces.begin(); it!=pidfaces.end(); ++it){
bitpit::Interface & ii = orinterfaces.at(it.getId());
long * conn = ii.getConnect();
std::size_t connsize = ii.getConnectSize();
bitpit::ElementType et = orcells.at(ii.getOwner()).getFaceType(ii.getOwnerFace());
boundary->addConnectedCell(std::vector<long>(&conn[0], &conn[connsize]), et, *it,it.getId());
}
boundary->updateAdjacencies();
boundary->update();
return mesh;
}
// =================================================================================== //
/*
Testing scalar field propagation ond mixed element and messy mesh.
*/
int test1() {
mimmo::MimmoSharedPointer<mimmo::MimmoObject> mesh = createTestVolumeMesh(boundary);
bool check = false;
long targetNode = (11*11)*25 + (11)*5 + 5;
//TESTING THE SCALAR PROPAGATOR //////
// and the scalar field of Dirichlet values on its nodes.
mimmo::MimmoPiercedVector<double> bc_surf_field;
bc_surf_field.setGeometry(boundary);
bc_surf_field.reserve(boundary->getNVertices());
for(long val : boundary->getVertices().getIds()){
bc_surf_field.insert(val, 0.0);
}
//extract vertex of boundary cells pidded 0 and assign to them a condition 10.0
std::vector<long> listPP = boundary->getVertexFromCellList(boundary->extractPIDCells(0));
for(long id : listPP){
bc_surf_field.at(id) = 10.0;
}
// Now create a PropagateScalarField and solve the laplacian.
mimmo::PropagateScalarField * prop = new mimmo::PropagateScalarField();
prop->setName("test00002_PropagateScalarField");
prop->setGeometry(mesh);
prop->addDirichletBoundaryPatch(boundary);
prop->addDirichletConditions(&bc_surf_field);
prop->setDamping(false);
prop->setPlotInExecution(true);
prop->setSolverMultiStep(4);
prop->exec();
auto values = prop->getPropagatedField();
std::cout<< values->at(targetNode) <<std::endl;
check = check || (std::abs(values->at(targetNode)-3.75446) > 1.0E-5);
// check = false;
delete prop;
return check;
}
// =================================================================================== //
int main( int argc, char *argv[] ) {
BITPIT_UNUSED(argc);
BITPIT_UNUSED(argv);
#if MIMMO_ENABLE_MPI
MPI_Init(&argc, &argv);
#endif
int val = 1;
try{
val = test1() ;
}
catch(std::exception & e){
std::cout<<"test_propagators_00002 exited with an error of type : "<<e.what()<<std::endl;
return 1;
}
#if MIMMO_ENABLE_MPI
MPI_Finalize();
#endif
return val;
}
MimmoObject is the basic geometry container for mimmo library.
Definition: MimmoObject.hpp:143
void setGeometry(MimmoSharedPointer< MimmoObject > geo)
Definition: MimmoPiercedVector.tpp:314
@ POINT
void setDataLocation(MPVLocation loc)
Definition: MimmoPiercedVector.tpp:324