Salome HOME
Updated copyright comment
[plugins/netgenplugin.git] / src / NETGENPlugin / NETGENPlugin_DriverParam.hxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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 enum hypoType{
34   Hypo = 1, /*the default hypo common for 1D2D,1D2D3D && 3D*/
35   Simple2D,
36   Simple3D
37 };
38
39 struct netgen_params{
40   // Params from NETGENPlugin_Mesher
41   // True if _hypParameters is not null
42   bool has_netgen_param=true;
43   hypoType myType;
44   double maxh;
45   double minh;
46   double segmentsperedge;
47   double grading;
48   double curvaturesafety;
49   int secondorder;
50   int quad;
51   bool optimize;
52   int fineness;
53   bool uselocalh;
54   bool merge_solids;
55   double chordalError;
56   int optsteps2d;
57   int optsteps3d;
58   double elsizeweight;
59   int opterrpow;
60   bool delaunay;
61   bool checkoverlap;
62   bool checkchartboundary;
63   int closeedgefac;
64
65   // Number of threads for the mesher
66   int nbThreads;
67
68   // True if we have a mesh size file or local size info
69   bool has_local_size = false;
70   std::string meshsizefilename;
71
72   // Params from NETGEN3D
73   // True if _hypMaxElementVolume is not null
74   bool has_maxelementvolume_hyp=false;
75   double maxElementVolume=0.0;
76
77   // Params from NETGEN2D
78   bool has_LengthFromEdges_hyp=false;
79
80   /////////////////////////////////////
81   // Quantities proper of Simple2D
82   int numberOfSegments; // maybe reuse segmentsperedge (?)
83   double localLength;
84   double maxElementArea;
85   bool allowQuadrangles;
86   //// Quantities proper of Simple3D
87   double maxElementVol;
88 };
89
90 void printNetgenParams(netgen_params& aParams);
91
92 void importNetgenParams(const std::string param_file, netgen_params& aParams);
93 void importDefaultNetgenParams(const std::string param_file, netgen_params& aParams);
94 void importSimple2D3DNetgenParams(const std::string param_file, netgen_params& aParams, bool is3D );
95 void exportNetgenParams(const std::string param_file, netgen_params& aParams);
96 // TODO symple param to be used with netgen1d2d
97
98
99 #endif