Salome HOME
f0e4b3932c3c6617b9c844896f82b30f8f314d58
[modules/homard.git] / src / HOMARD / HomardDriver.hxx
1 //  HOMARD HOMARD : implementation of HOMARD idl descriptions
2 //
3 // Copyright (C) 2011-2016  CEA/DEN, EDF R&D
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Lesser General Public
7 // License as published by the Free Software Foundation; either
8 // version 2.1 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Lesser General Public License for more details.
14 //
15 // You should have received a copy of the GNU Lesser General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21
22 # ifndef _HOMARDDRIVER_HXX_
23 # define _HOMARDDRIVER_HXX_
24
25 #include "HOMARD.hxx"
26
27 #include <iostream>
28 #include <fstream>
29
30 class HOMARDIMPL_EXPORT HomardDriver
31 {
32 public:
33   HomardDriver(const std::string siter, const std::string siterp1);
34   ~HomardDriver();
35   //
36   void        TexteInit( const std::string DirCompute, const std::string LogFile, const std::string Langue );
37   void        TexteInfo( int TypeBila, int NumeIter );
38   void        CreeFichierDonn();
39   void        TexteAdap( int ExtType );
40   void        CreeFichier();
41   void        TexteMaillage( const std::string NomMesh, const std::string MeshFile, int apres );
42   void        TexteMaillageHOMARD( const std::string Dir, const std::string liter, int apres );
43   void        TexteConfRaffDera( int ConfType, int TypeAdap, int TypeRaff, int TypeDera );
44   void        TexteZone( int NumeZone, int ZoneType, int TypeUse, double x0, double x1, double x2, double x3, double x4, double x5, double x6, double x7, double x8 );
45   void        TexteGroup( const std::string GroupName );
46   void        TexteField( const std::string FieldName, const std::string FieldFile,
47                           int TimeStep, int Rank,
48                           int TypeThR, double ThreshR, int TypeThC, double ThreshC,
49                           int UsField, int UsCmpI );
50   void        TexteCompo( int NumeComp, const std::string NomCompo);
51
52   void        TexteBoundaryOption( int BoundaryOption );
53   void        TexteBoundaryDi( const std::string MeshName, const std::string MeshFile );
54   void        TexteBoundaryDiGr( const std::string GroupName );
55   void        TexteBoundaryAn( const std::string NameBoundary, int NumeBoundary, int BoundaryType, double x0, double x1, double x2, double x3, double x4, double x5, double x6, double x7 );
56   void        TexteBoundaryAnGr( const std::string NameBoundary, int NumeBoundary, const std::string GroupName );
57
58   void        TexteFieldInterp( const std::string FieldFile, const std::string MeshFile );
59   void        TexteFieldInterpAll();
60   void        TexteFieldInterpNameType( int NumeChamp, const std::string FieldName, const std::string TypeInterp, int TimeStep, int Rank );
61   void        TexteAdvanced( int Pyram, int NivMax, double DiamMin, int AdapInit, int LevelOutput );
62   void        TexteInfoCompute( int MessInfo );
63   //
64   int         ExecuteHomard(int option);
65   //
66
67 public:
68   std::string _HOMARD_Exec;
69   std::string _NomDir;
70   std::string _NomFichierConfBase;
71   std::string _NomFichierConf;
72   std::string _NomFichierDonn;
73   std::string _siter;
74   std::string _siterp1;
75   std::string _Texte;
76   int         _TimeStep;
77   int         _Rank;
78   bool _bLu;
79
80 };
81
82 # endif         /* # ifndef _HOMARDDRIVER_HXX_ */