source: XIOS/trunk/src/transformation/domain_algorithm_expand.hpp @ 941

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

Finishing the implementation of expand domain transformation

+) Make use of updated new functions of class Mesh to compute neighboring cells
+) Make change to some minor stuffs

Test
+) On Curie
+) The transformation works correctly

File size: 2.1 KB
Line 
1/*!
2   \file domain_algorithm_expand.hpp
3   \author Ha NGUYEN
4   \since 08 Aug 2016
5   \date 08 Aug 2016
6
7   \brief Algorithm for expanding an domain.
8 */
9#ifndef __XIOS_DOMAIN_ALGORITHM_EXPAND_HPP__
10#define __XIOS_DOMAIN_ALGORITHM_EXPAND_HPP__
11
12#include "domain_algorithm_transformation.hpp"
13#include "transformation.hpp"
14
15namespace xios {
16class CDomain;
17class CExpandDomain;
18
19/*!
20  \class CDomainAlgorithmExpand
21*/
22class CDomainAlgorithmExpand : public CDomainAlgorithmTransformation
23{
24public:
25  CDomainAlgorithmExpand(CDomain* domainDestination, CDomain* domainSource, CExpandDomain* expandDomain);
26
27  virtual ~CDomainAlgorithmExpand() {}
28
29  static bool registerTrans();
30
31protected:
32  void expandDomainEdgeConnectivity(CDomain* domainDestination, CDomain* domainSource);
33  void expandDomainNodeConnectivity(CDomain* domainDestination, CDomain* domainSource);
34  void updateDomainAttributes(CDomain* domainDestination,
35                              CDomain* domainSource,
36                              CArray<int,2>& neighborsDomainSrc);
37
38protected:
39  void computeIndexSourceMapping_(const std::vector<CArray<double,1>* >& dataAuxInputs);
40
41private:
42  static CGenericAlgorithmTransformation* create(CGrid* gridDst, CGrid* gridSrc,
43                                                CTransformation<CDomain>* transformation,
44                                                int elementPositionInGrid,
45                                                std::map<int, int>& elementPositionInGridSrc2ScalarPosition,
46                                                std::map<int, int>& elementPositionInGridSrc2AxisPosition,
47                                                std::map<int, int>& elementPositionInGridSrc2DomainPosition,
48                                                std::map<int, int>& elementPositionInGridDst2ScalarPosition,
49                                                std::map<int, int>& elementPositionInGridDst2AxisPosition,
50                                                std::map<int, int>& elementPositionInGridDst2DomainPosition);
51};
52
53}
54#endif // __XIOS_DOMAIN_ALGORITHM_EXPAND_HPP__
Note: See TracBrowser for help on using the repository browser.