Salome HOME
Integration of run_mesher code
[plugins/netgenplugin.git] / src / NETGENPlugin / netgen_param.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   : netgen_param.hxx
24 //  Author : Yoann AUDOUIN, EDF
25 //  Module : SMESH
26 //
27
28 #ifndef _NETGEN_PARAM_HXX_
29 #define _NETGEN_PARAM_HXX_
30
31 #include <string>
32
33 class NETGENPlugin_Hypothesis;
34 class StdMeshers_MaxElementVolume;
35 class StdMeshers_ViscousLayers;
36
37 struct netgen_params{
38   // Params from NETGENPlugin_Mesher
39   // True if _hypParameters is not null
40   bool has_netgen_param=true;
41   double maxh;
42   double minh;
43   double segmentsperedge;
44   double grading;
45   double curvaturesafety;
46   int secondorder;
47   int quad;
48   bool optimize;
49   int fineness;
50   bool uselocalh;
51   bool merge_solids;
52   double chordalError;
53   int optsteps2d;
54   int optsteps3d;
55   double elsizeweight;
56   int opterrpow;
57   bool delaunay;
58   bool checkoverlap;
59   bool checkchartboundary;
60   int closeedgefac;
61
62
63   // TODO: add localsize (pass through local size file ?)
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   // to replace
74   //NETGENPlugin_Hypothesis *    _hypParameters=nullptr;
75   // to remove ?
76   StdMeshers_MaxElementVolume* _hypMaxElementVolume=nullptr;
77   // to remove ?
78   StdMeshers_ViscousLayers*    _viscousLayersHyp=nullptr;
79   //double                       _progressByTic;
80   bool _quadraticMesh=false;
81 };
82
83 void print_netgen_params(netgen_params& aParams);
84
85 void import_netgen_params(const std::string param_file, netgen_params& aParams);
86 void export_netgen_params(const std::string param_file, netgen_params& aParams);
87
88 bool diff_netgen_params(netgen_params params1, netgen_params params2);
89
90 #endif