]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
doc interpolation 3D2D et 2D1D
authorbph <bph>
Tue, 30 Aug 2011 09:28:29 +0000 (09:28 +0000)
committerbph <bph>
Tue, 30 Aug 2011 09:28:29 +0000 (09:28 +0000)
doc/doxygen/Doxyfile_med_user.in
doc/doxygen/remapping.dox
src/INTERP_KERNEL/Interpolation3D2D.cxx
src/INTERP_KERNEL/Interpolation3D2D.hxx
src/INTERP_KERNEL/Interpolation3D2D.txx

index db4a109903aa0c91a420a7547914bb6a4c64d23d..0fb48dea0d909ce02c1e4cafee13b21230e20368 100644 (file)
@@ -97,6 +97,8 @@ FILE_PATTERNS          = MEDMEM_GMesh.* \
                         NormalizedUnstructuredMesh.* \
                          Interpolation2D.* \
                          Interpolation3D.* \
+                         Interpolation2D1D.* \
+                         Interpolation3D2D.* \
                          Interpolation3DSurf.* \
                          InterpolationMatrix.* \
                          PlanarIntersector.* \
index 9c0d229f12ffcaaca950ebbba6c71f4540507e25..291b89f88d8cd0159c72263043158b2a983f6e87 100755 (executable)
@@ -43,6 +43,18 @@ The following options are available for the 2D intersection computations:
  * <TR><TD>PrintLevel </TD><TD>Level of verboseness during the computations </TD><TD> 0, 1, 2, 3 </TD><TD>0 </TD></TR>
  *</TABLE>
 
+\section interpolation2D1D Special features of 2D linear/surface intersectors
+
+It is possible to get back the matrix of intersection segments in 2D
+of a linear source mesh and a surface target mesh.
+The corresponding intersector class is Planar2D1DIntersectorP0P0.
+The limitations are:
+- only P0->P0 intersection
+- only geometric type Geometric2D
+
+It is possible to get back the linear source elements which are common
+at least between two surface target elements.
+
 \section interpolation3Dsurf Special features of 3D surface intersectors 
 
 When remapping a three dimensional surfaces, one should give a meaning to the area of intersection between two three-dimensional non coplanar polygons. A projection phase is thus necessary to have both polygons on the same plane. Care must be taken when defining this projection to avoid non conservative remappings. After the projection step, the source and target cells lie in the same plane and the same algorithms as for 2D remapping can be employed.
@@ -137,4 +149,18 @@ The use of the SPLIT_NODES_6 splitting policy would lead to a 6 tetrahedra decom
   0, 7, 3, 6
 \endverbatim
 
+
+\section interpolation3D2D Special features of 3D surface/volume intersectors
+
+It is possible to get back the matrix of intersection surfaces in 3D
+of a surface source mesh and a volume target mesh.
+The corresponding intersector class is Polyhedron3D2DIntersectorP0P0.
+The limitations are:
+- only P0->P0 intersection
+- only geometric type Triangulation
+
+It is possible to get back the surface source elements which are
+common at least between two volume target elements.
+
+
 */
index d29392342f35d99813780e6eae2107841a8040de..d1b44dc28dba52573efb6f4d7a262f89a0cb4215 100644 (file)
 namespace INTERP_KERNEL
 {
   /**
-   * \defgroup interpolation3D Interpolation3D
-   * \class Interpolation3D
-   * \brief Class used to calculate the volumes of intersection between the elements of two 3D meshes.
+   * \defgroup interpolation3D2D Interpolation3D2D
+   * \class Interpolation3D2D
+   * \brief Class used to calculate the surfaces of intersection between the elements of a 3D surface source mesh
+   *        and a 3D volume target mesh.
    * 
    */
   /**
index f68a3b6726d7af744d7b2beb19da381219537f07..dc5190c8959c376aeb65b266d23922c1a9f88c48 100644 (file)
@@ -41,6 +41,14 @@ namespace INTERP_KERNEL
                           const MyMeshType& targetMesh,
                           MyMatrixType& matrix,
                           const char *method);
+    /**
+     * Return the surface source elements which are common at least two target volume elements
+
+     * @return return a map of pairs: the first pair element is the index of the surface source element
+     *                                which is common of at least two volume target elements
+     *                                the second pair element is a set of theses volume target elements
+     *
+     */
     DuplicateFacesType retrieveDuplicateFaces() const
     {
       return _duplicate_faces;
index 27ddb7e8f95136a7a5aba7dedf192e60ad52dc3e..8fdad8daa56248ddda4c812b024bc5b5d696ca15 100644 (file)
 namespace INTERP_KERNEL
 {
   /**
-   * Calculates the matrix of volumes of intersection between the elements of srcMesh and the elements of targetMesh.
+   * Calculates the matrix of surfaces of intersection between the elements of a surface srcMesh and the elements of a volume targetMesh.
    * The calculation is done in two steps. First a filtering process reduces the number of pairs of elements for which the
    * calculation must be carried out by eliminating pairs that do not intersect based on their bounding boxes. Then, the 
-   * volume of intersection is calculated by an object of type Intersector3D for the remaining pairs, and entered into the
+   * surface of intersection is calculated by an object of type Intersector3D for the remaining pairs, and entered into the
    * intersection matrix. 
    * 
    * The matrix is partially sparse : it is a vector of maps of integer - double pairs. 
@@ -54,8 +54,8 @@ namespace INTERP_KERNEL
    * the indexing is more natural : the intersection volume of the target element i with source element j is found at matrix[i-1][j].
    * 
 
-   * @param srcMesh     3-dimensional source mesh
-   * @param targetMesh  3-dimesional target mesh, containing only tetraedra
+   * @param srcMesh     3-dimensional surface source mesh
+   * @param targetMesh  3-dimesional volume target mesh
    * @param matrix      matrix in which the result is stored
    *
    */