Salome HOME
Copyright update 2021
[tools/medcoupling.git] / src / INTERP_KERNEL / Interpolation.txx
1 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (CEA/DEN)
20 #ifndef __INTERPOLATION_TXX__
21 #define __INTERPOLATION_TXX__
22
23 #include "Interpolation.hxx"
24 #include "IntegralUniformIntersector.hxx"
25 #include "IntegralUniformIntersector.txx"
26 #include "VectorUtils.hxx"
27
28 namespace INTERP_KERNEL
29
30   template<class TrueMainInterpolator>
31   template<class MyMeshType, class MatrixType>
32   typename MyMeshType::MyConnType Interpolation<TrueMainInterpolator>::fromToIntegralUniform(bool fromTo, const MyMeshType& mesh, MatrixType& result, const std::string& method)
33   {
34     typedef typename MyMeshType::MyConnType ConnType;
35     ConnType ret=-1;
36     if(method=="P0")
37       {
38         IntegralUniformIntersectorP0<MyMeshType,MatrixType> intersector(mesh,InterpolationOptions::getMeasureAbsStatus());
39         intersector.setFromTo(fromTo);
40         std::vector<ConnType> tmp;
41         intersector.intersectCells(0,tmp,result);
42         ret=intersector.getNumberOfColsOfResMatrix();
43       }
44     else if(method=="P1")
45       {
46         IntegralUniformIntersectorP1<MyMeshType,MatrixType> intersector(mesh,InterpolationOptions::getMeasureAbsStatus());
47         intersector.setFromTo(fromTo);
48         std::vector<ConnType> tmp;
49         intersector.intersectCells(0,tmp,result);
50         ret=intersector.getNumberOfColsOfResMatrix();
51       }
52     else
53       throw INTERP_KERNEL::Exception("Invalid method specified in fromIntegralUniform : must be in { \"P0\", \"P1\"}");
54     return ret;
55   }
56
57   template<class TrueMainInterpolator>
58   template<class MyMeshType>
59   double Interpolation<TrueMainInterpolator>::CalculateCharacteristicSizeOfMeshes(const MyMeshType& myMeshS, const MyMeshType& myMeshT, const int printLevel)
60   {
61     static const int SPACEDIM=MyMeshType::MY_SPACEDIM;
62     typedef typename MyMeshType::MyConnType ConnType;
63
64     ConnType nbMailleS=myMeshS.getNumberOfElements();
65     ConnType nbMailleT=myMeshT.getNumberOfElements();
66
67     /**************************************************/
68     /* Search the characteristic size of the meshes   */
69     /**************************************************/
70
71     double BoxS[2*SPACEDIM]; myMeshS.getBoundingBox(BoxS);
72     double BoxT[2*SPACEDIM]; myMeshT.getBoundingBox(BoxT);
73     double diagonalS,dimCaracteristicS=std::numeric_limits<double>::max();
74     if(nbMailleS!=0)
75       {
76         diagonalS=getDistanceBtw2Pts<SPACEDIM>(BoxS+SPACEDIM,BoxS);
77         dimCaracteristicS=diagonalS/(double)nbMailleS;
78       }
79     double diagonalT,dimCaracteristicT=std::numeric_limits<double>::max();
80     if(nbMailleT!=0)
81       {
82         diagonalT=getDistanceBtw2Pts<SPACEDIM>(BoxT+SPACEDIM,BoxT);
83         dimCaracteristicT=diagonalT/(double)nbMailleT;
84       }
85     if (printLevel>=1)
86       {
87         std::cout << "  - Characteristic size of the source mesh : " << dimCaracteristicS << std::endl;
88         std::cout << "  - Characteristic size of the target mesh: " << dimCaracteristicT << std::endl;
89       }
90
91     return std::min(dimCaracteristicS, dimCaracteristicT);
92
93   }
94
95 }
96
97 #endif
98