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

Last change on this file since 653 was 653, checked in by rlacroix, 9 years ago

Distributions and transformations: Avoid using heap allocations.

File size: 4.2 KB
Line 
1/*!
2   \file grid_transformation.hpp
3   \author Ha NGUYEN
4   \since 14 May 2015
5   \date 18 June 2015
6
7   \brief Interface for all transformations.
8 */
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"
16#include "transformation_enum.hpp"
17
18namespace xios {
19
20class CGrid;
21
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.
26Then with all these information, all necessary transformations will be created by generic class \class CGenericAlgorithmTransformation.
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*/
33class CGridTransformation
34{
35public:
36  /** Default constructor */
37  CGridTransformation(CGrid* destination, CGrid* source);
38  ~CGridTransformation();
39
40  void computeAll();
41
42  const std::map<int, CArray<int,1> >& getLocalIndexToSendFromGridSource() const;
43  const std::map<int, std::vector<std::vector<std::pair<int,double> > > >& getLocalIndexToReceiveOnGridDest() const;
44  CGrid* getGridSource() {return gridSource_; }
45  CGrid* getGridDestination() { return gridDestination_; }
46
47private:
48  void computeTransformation();
49  void initializeAlgorithms();
50  void initializeAxisAlgorithms(int axisPositionInGrid);
51  void initializeDomainAlgorithms(int domPositionInGrid);
52  void initializeMappingOfOriginalGridSource();
53
54  void selectAxisAlgo(int elementPositionInGrid, ETranformationType transType, int transformationOrder);
55  void selectDomainAlgo(int elementPositionInGrid, ETranformationType transType, int transformationOrder);
56  void selectAlgo(int elementPositionInGrid, ETranformationType transType, int transformationOrder, bool isDomainAlgo);
57  void setUpGrid(int elementPositionInGrid, ETranformationType transType);
58  void computeFinalTransformationMapping();
59  void computeTransformationFromOriginalGridSource(const std::map<size_t, std::vector<std::pair<size_t,double> > >& globaIndexMapFromDestToSource);
60  void updateFinalGridDestination();
61
62private:
63  //! Grid source on transformation
64  CGrid* gridSource_;
65
66  //! Grid destination on transformation
67  CGrid* gridDestination_;
68
69  //! The grid source of the first transformation (original grid source)
70  CGrid* originalGridSource_;
71
72  //! Grid source dimension size
73  std::vector<int> gridSourceDimensionSize_;
74
75  //! Grid destination dimension size
76  std::vector<int> gridDestinationDimensionSize_;
77
78private:
79  typedef std::list<std::pair<int,std::pair<ETranformationType,int> > > ListAlgoType;
80  //! List of algorithm types and their order
81  ListAlgoType listAlgos_;
82  // true if domain algorithm and false if axis algorithm (can be replaced by tuple with listAlgos_
83  std::vector<bool> algoTypes_;
84
85  // Mapping between position of an element in grid and its transformation (if any)
86  std::list<CGenericAlgorithmTransformation*> algoTransformation_;
87
88  //! Mapping of (grid) global index representing tranformation.
89  std::map<size_t, std::set<size_t> > globaIndexMapFromDestToSource_;
90
91  //! Local index of data to send from grid source
92  std::map<int, CArray<int,1> > localIndexToSendFromGridSource_;
93
94  //! Local index of data to receive on grid destination
95  std::map<int,std::vector<std::vector<std::pair<int,double> > > > localIndexToReceiveOnGridDest_;
96
97  //! Position of axis and domain in grid
98  std::map<int, int> elementPosition2AxisPositionInGrid_, elementPosition2DomainPositionInGrid_;
99
100  //! (Grid) Global index of grid source
101  CArray<size_t,1> globalIndexOfCurrentGridSource_;
102  CArray<size_t,1> globalIndexOfOriginalGridSource_;
103  CArray<double,1> weightOfGlobalIndexOfOriginalGridSource_;
104};
105
106}
107#endif // __XIOS_GRID_TRANSFORMATION_HPP__
Note: See TracBrowser for help on using the repository browser.