Salome HOME
Now filling param _hypParameters and _stdMaxvolume
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_DriverParam.hxx
1 // Copyright (C) 2007-2021  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 //  File   : NETGENPlugin_DriverParam.hxx
24 //  Author : Yoann AUDOUIN, EDF
25 //  Module : NETGEN
26 //
27
28 #ifndef _NETGENPLUGIN_DRIVERPARAM_HXX_
29 #define _NETGENPLUGIN_DRIVERPARAM_HXX_
30
31 #include <string>
32
33 class NETGENPlugin_Hypothesis;
34 class StdMeshers_MaxElementVolume;
35 class StdMeshers_ViscousLayers;
36 class SMESH_Gen;
37
38 struct netgen_params{
39   // Params from NETGENPlugin_Mesher
40   // True if _hypParameters is not null
41   bool has_netgen_param=true;
42   double maxh;
43   double minh;
44   double segmentsperedge;
45   double grading;
46   double curvaturesafety;
47   int secondorder;
48   int quad;
49   bool optimize;
50   int fineness;
51   bool uselocalh;
52   bool merge_solids;
53   double chordalError;
54   int optsteps2d;
55   int optsteps3d;
56   double elsizeweight;
57   int opterrpow;
58   bool delaunay;
59   bool checkoverlap;
60   bool checkchartboundary;
61   int closeedgefac;
62
63
64   // True if we have a mesh size file or local size info
65   bool has_local_size = false;
66   std::string meshsizefilename;
67
68   // Params from NETGEN3D
69   // True if _hypMaxElementVolume is not null
70   bool has_maxelementvolume_hyp=false;
71   double maxElementVolume=0.0;
72
73   NETGENPlugin_Hypothesis *    _hypParameters=nullptr;
74   StdMeshers_MaxElementVolume* _hypMaxElementVolume=nullptr;
75   StdMeshers_ViscousLayers*    _viscousLayersHyp=nullptr;
76   double                       _progressByTic;
77   bool _quadraticMesh=false;
78   int _error=0;
79   std::string _comment;
80
81   // Params from NETGEN2D
82   bool has_LengthFromEdges_hyp=false;
83
84   // Number of threads for the mesher
85   int nbThreads;
86 };
87
88 void printNetgenParams(netgen_params& aParams);
89
90 void importNetgenParams(const std::string param_file, netgen_params& aParams, SMESH_Gen * gen);
91 void exportNetgenParams(const std::string param_file, netgen_params& aParams);
92
93 #endif