Salome HOME
Copyright update 2021
[tools/medcoupling.git] / src / INTERP_KERNEL / Interpolation2D3D.hxx
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
20 #ifndef __INTERPOLATION2D3D_HXX__
21 #define __INTERPOLATION2D3D_HXX__
22
23 #include <set>
24 #include <map>
25
26 #include "INTERPKERNELDefines.hxx"
27 #include "Interpolation.hxx"
28 #include "NormalizedUnstructuredMesh.hxx"
29 #include "InterpolationOptions.hxx"
30 #include "MCIdType.hxx"
31
32 namespace INTERP_KERNEL
33 {
34   /*!
35    * Contrary to its name this class deals with 2D mesh in source and 3D mesh in target.
36    * The meshdim of 'MyMeshType' in input is ignored that's why 'meshS' and 'meshT'
37    * have the same type.
38    * '_duplicate_faces' attribute stores duplicated faces in the following format.
39    * The key of '_duplicate_faces' represents the 2D cellId that is shared by
40    * more than one 3D target cell, and the value of '_duplicate_faces'
41    * the 3D target cells. The size of the value of '_duplicate_faces' is more than or equal to 2.
42    */
43   class Interpolation2D3D : public Interpolation<Interpolation2D3D>
44   {
45   public:
46     typedef std::map<mcIdType,std::set<mcIdType> > DuplicateFacesType;
47
48     INTERPKERNEL_EXPORT Interpolation2D3D();
49     INTERPKERNEL_EXPORT Interpolation2D3D(const InterpolationOptions& io);
50     template<class MyMeshType, class MyMatrixType>
51     typename MyMeshType::MyConnType interpolateMeshes(const MyMeshType& srcMesh,
52                           const MyMeshType& targetMesh,
53                           MyMatrixType& matrix,
54                           const std::string& method);
55     INTERPKERNEL_EXPORT DuplicateFacesType retrieveDuplicateFaces() const { return _duplicate_faces; }
56   private:
57     SplittingPolicy _splitting_policy;
58     DuplicateFacesType _duplicate_faces;
59   };
60 }
61
62 #endif