source: XIOS/trunk/src/transformation/grid_transformation.hpp @ 824

Last change on this file since 824 was 824, checked in by mhnguyen, 8 years ago

Correcting the behavior of field_ref

+) If a field refers to another one via field_ref and there is no transformation between
grid of this field and one of refered field, this field will inherit attributes from field_ref.

Test
+) On Curie
+) All tests pass

File size: 4.2 KB
RevLine 
[623]1/*!
2   \file grid_transformation.hpp
3   \author Ha NGUYEN
4   \since 14 May 2015
[687]5   \date 26 Aug 2015
[623]6
7   \brief Interface for all transformations.
8 */
[620]9#ifndef __XIOS_GRID_TRANSFORMATION_HPP__
10#define __XIOS_GRID_TRANSFORMATION_HPP__
11
12#include <map>
13#include <vector>
14#include "grid.hpp"
15#include "generic_algorithm_transformation.hpp"
[622]16#include "transformation_enum.hpp"
[620]17
18namespace xios {
19
20class CGrid;
21
[623]22/*!
23  \class CGridTransformation
24  This class is an interface for all transformations to interact with the rest of XIOS.
25The class, firstly, tries to get all information relating to requested transformations by retrieving directly from grid.
[630]26Then with all these information, all necessary transformations will be created by generic class \class CGenericAlgorithmTransformation.
[623]27Because there are information exchange among clients to accomplish the transformations (e.g: some index need retrieving from other clients),
28this class uses class \class CTransformationMapping to fulfill this demand.
29For each transformation, a new temporary grid source is created.
30For a consequential transformations (e.g: inversing -> zoom -> inversing -> ...),
31the grid destination of current transformation will be grid source of the next transformation
32*/
[620]33class CGridTransformation
34{
35public:
[687]36  typedef std::list<std::pair<int,std::pair<ETranformationType,int> > > ListAlgoType;
37
38public:
[620]39  /** Default constructor */
40  CGridTransformation(CGrid* destination, CGrid* source);
41  ~CGridTransformation();
42
[622]43  void computeAll();
44
[653]45  const std::map<int, CArray<int,1> >& getLocalIndexToSendFromGridSource() const;
[630]46  const std::map<int, std::vector<std::vector<std::pair<int,double> > > >& getLocalIndexToReceiveOnGridDest() const;
[790]47  CGrid* getGridSource() { return originalGridSource_; }
[632]48  CGrid* getGridDestination() { return gridDestination_; }
[687]49  ListAlgoType getAlgoList() const {return listAlgos_; }
[824]50  int getNbAlgo() { return nbAlgos_; }
[622]51
[687]52protected:
[620]53  void computeTransformation();
54  void initializeAlgorithms();
[631]55  void initializeAxisAlgorithms(int axisPositionInGrid);
56  void initializeDomainAlgorithms(int domPositionInGrid);
[622]57  void initializeMappingOfOriginalGridSource();
[620]58
[622]59  void selectAxisAlgo(int elementPositionInGrid, ETranformationType transType, int transformationOrder);
60  void selectDomainAlgo(int elementPositionInGrid, ETranformationType transType, int transformationOrder);
[631]61  void selectAlgo(int elementPositionInGrid, ETranformationType transType, int transformationOrder, bool isDomainAlgo);
[622]62  void setUpGrid(int elementPositionInGrid, ETranformationType transType);
63  void computeFinalTransformationMapping();
[630]64  void computeTransformationFromOriginalGridSource(const std::map<size_t, std::vector<std::pair<size_t,double> > >& globaIndexMapFromDestToSource);
[623]65  void updateFinalGridDestination();
[821]66  bool isSpecialTransformation(ETranformationType transType);
[622]67
[687]68protected:
[623]69  //! Grid source on transformation
[620]70  CGrid* gridSource_;
[623]71
72  //! Grid destination on transformation
[620]73  CGrid* gridDestination_;
[623]74
75  //! The grid source of the first transformation (original grid source)
[622]76  CGrid* originalGridSource_;
[620]77
[687]78protected:
[623]79  //! List of algorithm types and their order
80  ListAlgoType listAlgos_;
[821]81
82  //! Number of algorithm
83  int nbAlgos_;
84
85  typedef std::map<size_t, std::vector<std::pair<size_t,double> > > GlobalIndexMap;
86
[631]87  // true if domain algorithm and false if axis algorithm (can be replaced by tuple with listAlgos_
88  std::vector<bool> algoTypes_;
[622]89
[620]90  // Mapping between position of an element in grid and its transformation (if any)
[622]91  std::list<CGenericAlgorithmTransformation*> algoTransformation_;
[623]92
93  //! Mapping of (grid) global index representing tranformation.
[620]94  std::map<size_t, std::set<size_t> > globaIndexMapFromDestToSource_;
95
[623]96  //! Local index of data to send from grid source
[653]97  std::map<int, CArray<int,1> > localIndexToSendFromGridSource_;
[623]98
99  //! Local index of data to receive on grid destination
[630]100  std::map<int,std::vector<std::vector<std::pair<int,double> > > > localIndexToReceiveOnGridDest_;
[622]101
[623]102  //! Position of axis and domain in grid
[622]103  std::map<int, int> elementPosition2AxisPositionInGrid_, elementPosition2DomainPositionInGrid_;
104
[623]105  //! (Grid) Global index of grid source
[821]106  GlobalIndexMap currentGridIndexToOriginalGridIndex_;
[620]107};
108
109}
110#endif // __XIOS_GRID_TRANSFORMATION_HPP__
Note: See TracBrowser for help on using the repository browser.