// Copyright (C) 2007-2024 CEA, EDF // // This library 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 2.1 of the License, or (at your option) any later version. // // This library 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 this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // // Author : Adrien Bruneton (CEA/DEN) #ifndef __MAPPEDBARYCENTRIC3DINTERSECTORP1P1_TXX__ #define __MAPPEDBARYCENTRIC3DINTERSECTORP1P1_TXX__ #include "MappedBarycentric3DIntersectorP1P1.hxx" #include "Intersector3DP1P1.txx" #include "MeshUtils.hxx" namespace INTERP_KERNEL { /** * Constructor creating object from target cell global number * * @param targetMesh mesh containing the target elements * @param srcMesh mesh containing the source elements */ template MappedBarycentric3DIntersectorP1P1::MappedBarycentric3DIntersectorP1P1(const MyMeshType& targetMesh, const MyMeshType& srcMesh, double precision): Intersector3DP1P1(targetMesh,srcMesh),_precision(precision) { } template MappedBarycentric3DIntersectorP1P1::~MappedBarycentric3DIntersectorP1P1() { } /** * @param targetCell in C mode. * @param srcCells in C mode. */ template void MappedBarycentric3DIntersectorP1P1::intersectCells(ConnType targetCell, const std::vector& srcCells, MyMatrix& res) { std::vector CoordsT; const ConnType *startOfCellNodeConnT=Intersector3DP1P1::getStartConnOfTargetCell(targetCell); Intersector3DP1P1::getRealTargetCoordinates(OTT::indFC(targetCell),CoordsT); std::size_t nbOfNodesT=CoordsT.size()/SPACEDIM; const double *coordsS=Intersector3DP1P1::_src_mesh.getCoordinatesPtr(); for(std::size_t nodeIdT=0;nodeIdT::ind2C(startOfCellNodeConnT[nodeIdT])]; if(!resRow.empty()) continue; for(typename std::vector::const_iterator iterCellS=srcCells.begin();iterCellS!=srcCells.end();iterCellS++) { NormalizedCellType tS=Intersector3DP1P1::_src_mesh.getTypeOfElement(OTT::indFC(*iterCellS)); if(tS!=NORM_HEXA8) throw INTERP_KERNEL::Exception("Invalid source cell detected for meshdim==3. Only HEXA8 supported !"); const CellModel& cmTypeS=CellModel::GetCellModel(tS); // std::vector connOfCurCellS; Intersector3DP1P1::getConnOfSourceCell(OTT::indFC(*iterCellS),connOfCurCellS); if( PointLocatorAlgos::isElementContainsPointAlg3D(&CoordsT[nodeIdT*SPACEDIM],&connOfCurCellS[0],ToConnType(connOfCurCellS.size()),coordsS,cmTypeS,_precision) ) { double mco[3]; // mapped coordinates in the hexa8 std::vector localCoordsS; Intersector3DP1P1::getRealSourceCoordinates(OTT::indFC(*iterCellS),localCoordsS); std::vector coo(8); coo[0]=&localCoordsS[0]; coo[1]=&localCoordsS[3]; coo[2]=&localCoordsS[6]; coo[3]=&localCoordsS[9]; coo[4]=&localCoordsS[12]; coo[5]=&localCoordsS[15]; coo[6]=&localCoordsS[18]; coo[7]=&localCoordsS[21]; cuboid_mapped_coords(coo,&CoordsT[nodeIdT*SPACEDIM],mco); // Now use the form function of the HEXA8 to map the field values double resLoc[8]; // See HEXA8 standard connectivity and cuboid_mapped_coords() convention: resLoc[5] = (1.-mco[0]) * (1.-mco[1]) * (1.-mco[2]); resLoc[6] = mco[0] * (1.-mco[1]) * (1.-mco[2]); resLoc[7] = mco[0] * mco[1] * (1.-mco[2]); resLoc[4] = (1.-mco[0]) * mco[1] * (1.-mco[2]); resLoc[1] = (1.-mco[0]) * (1.-mco[1]) * mco[2]; resLoc[2] = mco[0] * (1.-mco[1]) * mco[2]; resLoc[3] = mco[0] * mco[1] * mco[2]; resLoc[0] = (1.-mco[0]) * mco[1] * mco[2]; const ConnType *startOfCellNodeConnS=Intersector3DP1P1::getStartConnOfSourceCell(*iterCellS); for(int nodeIdS=0;nodeIdS<8;nodeIdS++) { if(fabs(resLoc[nodeIdS])>_precision) { ConnType curNodeSInCmode=OTT::coo2C(startOfCellNodeConnS[nodeIdS]); resRow.insert(std::make_pair(OTT::indFC(curNodeSInCmode),resLoc[nodeIdS])); } } } } } } } #endif