Salome HOME
Merge changes from 'master' branch.
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_Hypothesis.hxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  NETGENPlugin : C++ implementation
24 // File      : NETGENPlugin_Hypothesis.hxx
25 // Author    : Michael Sazonov (OCN)
26 // Date      : 27/03/2006
27 // Project   : SALOME
28 //
29 #ifndef _NETGENPlugin_Hypothesis_HXX_
30 #define _NETGENPlugin_Hypothesis_HXX_
31
32 #include "NETGENPlugin_Defs.hxx"
33
34 #include "SMESH_Hypothesis.hxx"
35 #include "Utils_SALOME_Exception.hxx"
36
37 #include <map>
38
39 //  Parameters for work of NETGEN
40 //
41
42 using namespace std;
43
44 class NETGENPLUGIN_EXPORT NETGENPlugin_Hypothesis: public SMESH_Hypothesis
45 {
46 public:
47
48   NETGENPlugin_Hypothesis(int hypId, SMESH_Gen * gen);
49
50   void SetMaxSize(double theSize);
51   double GetMaxSize() const { return _maxSize; }
52
53   void SetMinSize(double theSize);
54   double GetMinSize() const { return _minSize; }
55
56   void SetSecondOrder(bool theVal);
57   bool GetSecondOrder() const { return _secondOrder; }
58
59   void SetOptimize(bool theVal);
60   bool GetOptimize() const { return _optimize; }
61
62   enum Fineness
63   {
64     VeryCoarse,
65     Coarse,
66     Moderate,
67     Fine,
68     VeryFine,
69     UserDefined
70   };
71
72   void SetFineness(Fineness theFineness);
73   Fineness GetFineness() const { return _fineness; }
74
75   // the following parameters are controlled by Fineness
76
77   void SetGrowthRate(double theRate);
78   double GetGrowthRate() const { return _growthRate; }
79
80   void SetNbSegPerEdge(double theVal);
81   double GetNbSegPerEdge() const { return _nbSegPerEdge; }
82
83   void SetNbSegPerRadius(double theVal);
84   double GetNbSegPerRadius() const { return _nbSegPerRadius; }
85
86   void SetChordalErrorEnabled(bool value);
87   double GetChordalErrorEnabled() const { return _chordalErrorEnabled; }
88   void SetChordalError(double value);
89   double GetChordalError() const { return _chordalError; }
90
91   typedef std::map<std::string, double> TLocalSize;
92   static TLocalSize GetDefaultLocalSize() { return TLocalSize(); }
93   void SetLocalSizeOnEntry(const std::string& entry, double localSize);
94   double GetLocalSizeOnEntry(const std::string& entry);
95   const TLocalSize& GetLocalSizesAndEntries() const { return _localSize; }
96   void UnsetLocalSizeOnEntry(const std::string& entry);
97
98   void SetMeshSizeFile(const std::string& fileName);
99   const std::string& GetMeshSizeFile() const { return _meshSizeFile; }
100
101   void SetQuadAllowed(bool theVal);
102   bool GetQuadAllowed() const { return _quadAllowed; }
103
104   void SetSurfaceCurvature(bool theVal);
105   bool GetSurfaceCurvature() const { return _surfaceCurvature; }
106
107   void SetFuseEdges(bool theVal);
108   bool GetFuseEdges() const { return _fuseEdges; }
109
110   // the default values (taken from NETGEN 4.5 sources)
111
112   static double GetDefaultMaxSize();
113   static Fineness GetDefaultFineness();
114   static double GetDefaultGrowthRate();
115   static double GetDefaultNbSegPerEdge();
116   static double GetDefaultNbSegPerRadius();
117   static double GetDefaultChordalError();
118   static bool GetDefaultSecondOrder();
119   static bool GetDefaultOptimize();
120   static bool GetDefaultQuadAllowed();
121   static bool GetDefaultSurfaceCurvature();
122   static bool GetDefaultFuseEdges();
123
124   // Persistence
125   virtual std::ostream & SaveTo(std::ostream & save);
126   virtual std::istream & LoadFrom(std::istream & load);
127
128   /*!
129    * \brief Does nothing
130    * \param theMesh - the built mesh
131    * \param theShape - the geometry of interest
132    * \retval bool - always false
133    */
134   virtual bool SetParametersByMesh(const SMESH_Mesh* theMesh, const TopoDS_Shape& theShape);
135
136   /*!
137    * \brief Initialize my parameter values by default parameters.
138    *  \retval bool - true if parameter values have been successfully defined
139    */
140   virtual bool SetParametersByDefaults(const TDefaults& dflts, const SMESH_Mesh* theMesh=0);
141
142 private:
143   double        _maxSize, _minSize;
144   double        _growthRate;
145   double        _nbSegPerEdge;
146   double        _nbSegPerRadius;
147   Fineness      _fineness;
148   bool          _chordalErrorEnabled;
149   double        _chordalError;
150   bool          _secondOrder;
151   bool          _optimize;
152   TLocalSize    _localSize;
153   std::string   _meshSizeFile;
154   bool          _quadAllowed;
155   bool          _surfaceCurvature;
156   bool          _fuseEdges;
157 };
158
159 #endif