Salome HOME
gives localization of gauss points of GAUSS_NE fields.
[tools/medcoupling.git] / src / INTERP_KERNEL / Interpolation.txx
1 // Copyright (C) 2007-2013  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.
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   int Interpolation<TrueMainInterpolator>::fromToIntegralUniform(bool fromTo, const MyMeshType& mesh, MatrixType& result, const char *method)
33   {
34     typedef typename MyMeshType::MyConnType ConnType;
35     std::string methodCPP(method);
36     int ret=-1;
37     if(methodCPP=="P0")
38       {
39         IntegralUniformIntersectorP0<MyMeshType,MatrixType> intersector(mesh,InterpolationOptions::getMeasureAbsStatus());
40         intersector.setFromTo(fromTo);
41         std::vector<ConnType> tmp;
42         intersector.intersectCells(0,tmp,result);
43         ret=intersector.getNumberOfColsOfResMatrix();
44       }
45     else if(methodCPP=="P1")
46       {
47         IntegralUniformIntersectorP1<MyMeshType,MatrixType> intersector(mesh,InterpolationOptions::getMeasureAbsStatus());
48         intersector.setFromTo(fromTo);
49         std::vector<ConnType> tmp;
50         intersector.intersectCells(0,tmp,result);
51         ret=intersector.getNumberOfColsOfResMatrix();
52       }
53     else
54       throw INTERP_KERNEL::Exception("Invalid method specified in fromIntegralUniform : must be in { \"P0\", \"P1\"}");
55     return ret;
56   }
57
58   template<class TrueMainInterpolator>
59   template<class MyMeshType>
60   double Interpolation<TrueMainInterpolator>::CalculateCharacteristicSizeOfMeshes(const MyMeshType& myMeshS, const MyMeshType& myMeshT, const int printLevel)
61   {
62     static const int SPACEDIM=MyMeshType::MY_SPACEDIM;
63
64     long nbMailleS=myMeshS.getNumberOfElements();
65     long 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/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/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