]> SALOME platform Git repositories - modules/homard.git/blob - src/HOMARD/HomardDriver.hxx
Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/homard.git] / src / HOMARD / HomardDriver.hxx
1 //  HOMARD HOMARD : implementaion of HOMARD idl descriptions
2 //
3 // Copyright (C) 2011  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.
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_H__
23 # define __HOMARDDRIVER_H__
24
25 #include <iostream>
26 #include <fstream>
27
28 class HomardDriver
29 {
30 public:
31   HomardDriver(const std::string siter, const std::string siterp1);
32   ~HomardDriver();
33   //
34   void        TexteInit( const std::string DirCompute, const std::string DirComputePa, const std::string MessFile );
35   void        CreeFichier();
36   void        TexteMaillage( const std::string NomMesh, const std::string MeshFile, int apres );
37   void        TexteConfRaffDera( int ConfType, int TypeAdap, int TypeRaff, int TypeDera );
38   void        TexteZone( int NumeZone, int ZoneType, double x0, double x1, double x2, double x3, double x4, double x5 );
39   void        TexteGroup( const std::string GroupName );
40   void        TexteField( const std::string FieldName, const std::string FieldFile,
41                           int TimeStep, int Rank,
42                           int TypeThR, double ThreshR, int TypeThC, double ThreshC, int UsCmpI );
43   void        TexteCompo( int NumeComp, const std::string NomCompo);
44
45   void        TexteBoundaryOption( int BoundaryOption );
46   void        TexteBoundaryDi( const std::string MeshName, const std::string MeshFile );
47   void        TexteBoundaryDiGr( const std::string GroupName );
48   void        TexteBoundaryAn( const std::string NameBoundary, int NumeBoundary, int BoundaryType, double x0, double x1, double x2, double x3, double x4, double x5, double x6 );
49   void        TexteBoundaryAnGr( const std::string NameBoundary, int NumeBoundary, const std::string GroupName );
50
51   void        TexteFieldInterp( int TypeFieldInterp, const std::string FieldFile, const std::string MeshFile,
52                                 int TimeStep, int Rank );
53   void        TexteFieldInterpName( int NumeChamp, const std::string FieldName);
54   void        CloseFichier();
55   //
56   int         ExecuteHomard();
57   //
58   bool        LireFichier();
59   bool        EcrireFichier();
60   void        SetTexte( const std::string texte );
61   std::string GetTexte();
62   std::string GetFichierInfo();
63   std::string GetFichierBasic();
64   std::string GetFichierResultMed();
65   std::string GetFichierHomard();
66   int         GetFichierNumeroIter();
67
68 public:
69   std::string _HOMARD_Exec;
70   std::string _NomDir;
71   std::string _NomFichierConfBase;
72   std::string _NomFichierConf;
73   std::string _siter;
74   std::string _siterp1;
75   std::string _Texte;
76   int         _TimeStep;
77   int         _Rank;
78   bool _bLu;
79
80 private :
81   std::string GetStringInTexte( std::string chaineCherchee, int longueur = 9 );
82 };
83
84 # endif         /* # ifndef __HOMARDDRIVER_H__ */