]> SALOME platform Git repositories - tools/medcoupling.git/commitdiff
Salome HOME
Update of the interpolation tools documentation
authorndjinga <ndjinga>
Wed, 20 Apr 2011 14:30:40 +0000 (14:30 +0000)
committerndjinga <ndjinga>
Wed, 20 Apr 2011 14:30:40 +0000 (14:30 +0000)
doc/doxygen/interpkernel.dox
doc/doxygen/medmem.dox

index ed67e43d19c981dbfaa051fda492bb746c1f9270..6b17341a29ced36dc1a44cdda4d25a13617f871c 100644 (file)
@@ -202,14 +202,14 @@ As already said, the matrix returned by interpolator is typically a sparse matri
 Note that \c std::vector\c < \c std::map<int,double> > is a candidate for
 \c MatrixType.
 
-\section InterpKerGenUsage Usage of interpolation tools.
+\section InterpKerGenUsage Usage of interpolation tools: the REMAPPER classes.
 
 \subsection InterpKerHighLevUsage high-level usage
 
-The simplest way of using the interpolation tools is in sequential mode to use REMAPPER classes. These classes fulfill \c HXX2SALOME rules and may be used
-in coupling graphs. Two sequential REMAPPERS exist, \c ParaMEDMEM::MEDCouplingRemapper and \c MEDMEM::MEDMEM_Remapper. These classes are strongly linked to their corresponding data structure, respectively \c MEDCoupling and \c MEDMEM.
+The simplest way of using the interpolation tools is in sequential mode to use the REMAPPER classes. These classes fulfill \c HXX2SALOME rules and may be used
+in coupling graphs. Two sequential REMAPPERS exist, \c ParaMEDMEM::MEDCouplingRemapper and \ref medmemremapper . These classes are strongly linked to their corresponding data structure, respectively \ref medcoupling and \ref MEDMEM.
 
-- If you intend to use MEDCoupling data struture, ParaMEDMEM::MEDCouplingRemapper class should be used :
+- If you intend to use \ref MEDCoupling data struture, ParaMEDMEM::MEDCouplingRemapper class should be used :
 
 \code
 ...
@@ -231,7 +231,7 @@ sourceField->decrRef();
 med_target_mesh->decrRef();
 \endcode
 
-- If you intend to use MEDMEM data structure, Remapper class should be used :
+- If you intend to use \ref MEDMEM data structure, \c medmemremapper class should be used :
 
 \code
 ...
index 81f06af1ae1a0744bb44798fdda70d913e7788d7..9fb6792cef7a354b006bd4788de089bf6cc6191d 100644 (file)
@@ -231,13 +231,13 @@ describe the coupling between two parallel codes.
 The classes that make up the API of the library are :
 - communication interface : \ref comm_interface,
 - definition of processor groups : \ref processor_group,
-- Data Exchange Channel (aka DEC, abstract class) : \ref dec, and its implementations :
- - \ref interpkerneldec for a \ref InterpKerRemapGlobal based on intersecting elems volume computation,
+- Data Exchange Channel \ref dec, and its implementations :
+ - \ref interpkerneldec for a \ref InterpKerRemapGlobal based on intersecting elements volume computation,
  - \ref noncoincidentdec for a non-conservative interpolation based on element localization,
  - \ref structuredcoincidentdec for remapping coincident meshes on a one-to-one basis. This class applies to structured topologies.
  - \ref explicitcoincidentdec for remapping coincident meshes on a one-to-one basis. This class applies to unstructured topologies,
  - \ref overlapdec based on intersecting elems volume
- computation with source and target meshes are on same process id
+ computation when source and target meshes are on same process id
 
 */