Salome HOME
Copyright update 2021
[plugins/ghs3dprlplugin.git] / src / GHS3DPRLPlugin / GHS3DPRLPlugin_Hypothesis.hxx
1 // Copyright (C) 2007-2021  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File   : GHS3DPRLPlugin_Hypothesis.hxx
22 // Author : Christian VAN WAMBEKE (CEA) (from Hexotic plugin Lioka RAZAFINDRAZAKA)
23 // ---
24 //
25 #ifndef _GHS3DPRLPlugin_Hypothesis_HXX_
26 #define _GHS3DPRLPlugin_Hypothesis_HXX_
27
28 #include "GHS3DPRLPlugin_Defs.hxx"
29
30 #include "SMESH_Hypothesis.hxx"
31 #include "Utils_SALOME_Exception.hxx"
32
33 //  Parameters for work of GHS3DPRL
34 //
35
36 class GHS3DPRLPLUGIN_EXPORT GHS3DPRLPlugin_Hypothesis: public SMESH_Hypothesis
37 {
38 public:
39
40   GHS3DPRLPlugin_Hypothesis(int hypId, SMESH_Gen* gen);
41
42   static const char* GetHypType() { return "MG-Tetra Parallel Parameters"; }
43
44   void                  SetMEDName(std::string theVal);
45   std::string           GetMEDName() const { return _MEDName; }
46
47   void                  SetNbPart(int theVal);
48   int                   GetNbPart() const { return _NbPart; }
49
50   void                  SetKeepFiles(bool theVal);
51   bool                  GetKeepFiles() const { return _KeepFiles; }
52
53   void                  SetBackground(bool theVal);
54   bool                  GetBackground() const { return _Background; }
55
56   void                  SetMultithread(bool theVal);
57   bool                  GetMultithread() const { return _Multithread; }
58
59   //ToMergeSubdomains ToTagSubdomains ToOutputInterfaces ToDiscardSubdomains
60   void                  SetGradation(float theVal);
61   float                 GetGradation() const { return _Gradation; }
62
63   void                  SetMinSize(float theVal);
64   float                 GetMinSize() const { return _MinSize; }
65
66   void                  SetMaxSize(float theVal);
67   float                 GetMaxSize() const { return _MaxSize; }
68
69   void                  SetAdvancedOption(const char* theOptAndVals );
70   std::string           GetAdvancedOption() const { return _AdvOptions; }
71
72   // the parameters default values
73
74   static std::string    GetDefaultMEDName();
75   static int            GetDefaultNbPart();
76   static bool           GetDefaultKeepFiles();
77   static bool           GetDefaultBackground();
78   static bool           GetDefaultMultithread();
79   static float          GetDefaultGradation();
80   static float          GetDefaultMinSize();
81   static float          GetDefaultMaxSize();
82
83   // Persistence
84   virtual std::ostream& SaveTo(std::ostream& save);
85   virtual std::istream& LoadFrom(std::istream& load);
86
87   /*!
88    * \brief Does nothing
89    * \param theMesh - the built mesh
90    * \param theShape - the geometry of interest
91    * \retval bool - always false
92    */
93   virtual bool          SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
94   /*!
95    * \brief Initialize my parameter values by default parameters.
96    *  \retval bool - true if parameter values have been successfully defined
97    */
98   virtual bool          SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
99
100 private:
101   int         _countSubMesh;
102   int         _countTotal;
103   int         _nodeRefNumber;
104
105   std::string _MEDName;     // generic path/name of med files
106   int         _NbPart;      // number of partitions
107   bool        _KeepFiles;   // keep intermediates tepal files or not
108   bool        _Background;  // mg-tetra_hpc in background
109   bool        _Multithread; // launch mg-tetra_hpc multithread version, else mpi version
110   float       _Gradation;
111   float       _MinSize;
112   float       _MaxSize;
113   std::string _AdvOptions;
114   };
115
116 #endif