mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-12 14:10:34 +05:00
connected closeedgeenable and closeedgefact to mparam.closeedgefac, and added comments
This commit is contained in:
parent
b3bbc670a2
commit
30c48a8df0
@ -1116,7 +1116,7 @@ namespace nglib
|
|||||||
mparam.meshsizefilename = meshsize_filename;
|
mparam.meshsizefilename = meshsize_filename;
|
||||||
else
|
else
|
||||||
mparam.meshsizefilename = "";
|
mparam.meshsizefilename = "";
|
||||||
|
|
||||||
mparam.optsteps2d = optsteps_2d;
|
mparam.optsteps2d = optsteps_2d;
|
||||||
mparam.optsteps3d = optsteps_3d;
|
mparam.optsteps3d = optsteps_3d;
|
||||||
|
|
||||||
@ -1144,6 +1144,9 @@ namespace nglib
|
|||||||
stlparam.resthlinelengthfac = linelengthfact;
|
stlparam.resthlinelengthfac = linelengthfact;
|
||||||
|
|
||||||
stldoctor.geom_tol_fact = stlgeom_tol_fact;
|
stldoctor.geom_tol_fact = stlgeom_tol_fact;
|
||||||
|
|
||||||
|
if(closeedgeenable)
|
||||||
|
mparam.closeedgefac = closeedgefact;
|
||||||
}
|
}
|
||||||
// ------------------ End - Meshing Parameters related functions --------------------
|
// ------------------ End - Meshing Parameters related functions --------------------
|
||||||
|
|
||||||
|
@ -136,12 +136,12 @@ public:
|
|||||||
int parallel_meshing; //!< Enable / Disable parallel meshing
|
int parallel_meshing; //!< Enable / Disable parallel meshing
|
||||||
int nthreads; //!< Set number of threads to use
|
int nthreads; //!< Set number of threads to use
|
||||||
|
|
||||||
double opterrpow;
|
double opterrpow; //!< Set power of error (to approximate max err optimization)
|
||||||
int delaunayenable; //!< Enable / Disable delaunay
|
int delaunayenable; //!< Enable / Disable delaunay
|
||||||
int blockfillenable; //!< Enable / Disable block fill
|
int blockfillenable; //!< Enable / Disable block fill
|
||||||
double blockfilldist; //!< Enable / Disable block fill distance
|
double blockfilldist; //!< Enable / Disable block fill distance
|
||||||
int maxoutersteps; //!< Set max number of outer steps
|
int maxoutersteps; //!< Set max number of outer steps
|
||||||
int only3D_domain_nr;
|
int only3D_domain_nr; //!< Select domain to perform volume meshing ignoring others. (0 => ignore none)
|
||||||
int try_hexes; //!< Enable / Disable hex-meshing
|
int try_hexes; //!< Enable / Disable hex-meshing
|
||||||
|
|
||||||
double surfcurvfact; //!< Set STL - surface curvature
|
double surfcurvfact; //!< Set STL - surface curvature
|
||||||
@ -179,6 +179,13 @@ public:
|
|||||||
- #check_overlapping_boundary: 1
|
- #check_overlapping_boundary: 1
|
||||||
- #parallel_meshing: 1
|
- #parallel_meshing: 1
|
||||||
- #nthreads: 4
|
- #nthreads: 4
|
||||||
|
- #opterrpow: 2
|
||||||
|
- #delaunayenable: 1
|
||||||
|
- #blockfillenable = 1
|
||||||
|
- #blockfilldist = 0.1
|
||||||
|
- maxoutersteps = 10
|
||||||
|
- only3D_domain_nr = 0
|
||||||
|
- try_hexes = 1
|
||||||
- #surfcurvfact: 2
|
- #surfcurvfact: 2
|
||||||
- #chartdistfact: 1.2
|
- #chartdistfact: 1.2
|
||||||
- #edgeanglefact: 1
|
- #edgeanglefact: 1
|
||||||
|
Loading…
Reference in New Issue
Block a user