Salome HOME
761c37f346587912544939d4d876e05c2a34a01a
[modules/med.git] / src / INTERP_KERNEL / Interpolation3D2D.hxx
1 // Copyright (C) 2007-2015  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 __INTERPOLATION3D2D_HXX__
21 #define __INTERPOLATION3D2D_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
31 namespace INTERP_KERNEL
32 {
33   /*!
34    * Contrary to its name this class deals with 2D mesh in source and 3D mesh in target.
35    * The meshdim of 'MyMeshType' in input is ignored that's why 'meshS' and 'meshT'
36    * have the same type.
37    * '_duplicate_faces' attribute stores duplicated faces in the following format.
38    * The key of '_duplicate_faces' represents the 2D cellId that is shared by
39    * more than one 3D target cell, and the value of '_duplicate_faces'
40    * the 3D target cells. The size of the value of '_duplicate_faces' is more than or equal to 2.
41    */
42   class Interpolation3D2D : public Interpolation<Interpolation3D2D>
43   {
44   public:
45     typedef std::map<int,std::set<int> > DuplicateFacesType;
46
47     INTERPKERNEL_EXPORT Interpolation3D2D();
48     INTERPKERNEL_EXPORT Interpolation3D2D(const InterpolationOptions& io);
49     template<class MyMeshType, class MyMatrixType>
50     int interpolateMeshes(const MyMeshType& srcMesh,
51                           const MyMeshType& targetMesh,
52                           MyMatrixType& matrix,
53                           const std::string& method);
54     INTERPKERNEL_EXPORT DuplicateFacesType retrieveDuplicateFaces() const { return _duplicate_faces; }
55   private:
56     SplittingPolicy _splitting_policy;
57     DuplicateFacesType _duplicate_faces;
58   };
59 }
60
61 #endif