Skip to content
Snippets Groups Projects
Commit d44b0b90 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

full pass on the documentation to clarify general concepts, introduce the API...

full pass on the documentation to clarify general concepts, introduce the API and mention the new algorithms (including parallel features)
parent af3514d3
No related branches found
No related tags found
No related merge requests found
......@@ -30,10 +30,11 @@ is set; fixed packing of parallelograms regression in 4.1.1.
4.1.1 (January 20, 2019): added support for general affine transformations with
OpenCASCADE kernel; improved handling of boolean tolerance (snap vertices);
faster crossfield calculation by default (e.g. for DelQuad algorithm); fixed
face vertices for PyramidN; renamed ONELAB "Action" and "Button" parameters
"ONELAB/Action" and "ONELAB/Button"; added support for actions on any ONELAB
button; added API functions for selections in user interface.
faster crossfield calculation by default (e.g. for Frontal-Delauany for quads
algorithm); fixed face vertices for PyramidN; renamed ONELAB "Action" and
"Button" parameters "ONELAB/Action" and "ONELAB/Button"; added support for
actions on any ONELAB button; added API functions for selections in user
interface.
4.1.0 (January 13, 2019): improved ONELAB and Fltk support in API; improved
renumbering of mesh nodes/elements; major code refactoring.
......@@ -200,16 +201,16 @@ Delaunay/Frontal algorithms; full option viewer/editor; many bug fixes.
2.6.1 (Jul 15, 2012): minor improvements and bug fixes.
2.6.0 (Jun 19, 2012): new quadrilateral meshing algorithms (Blossom and
DelQuad); new solver module based on ONELAB project (requires FLTK 1.3); new
tensor field visualization modes (eigenvectors, ellipsoid, etc.); added support
for interpolation schemes in .msh file; added support for MED3 format; rescale
viewport around visible entities (shift+1:1 in GUI); unified post-processing
field export; new experimental stereo+camera visualization mode; added
experimental BAMG & MMG3D support for anisotropic mesh generation; new OCC cut &
merge algorithm imported from Salome; new ability to connect extruded meshes to
tetrahedral grids using pyramids; new homology solver; Abaqus (INP) mesh export;
new Python and Java wrappers; bug fixes and small improvements all over the
place.
Delaunay-Frontal for quads); new solver module based on ONELAB project (requires
FLTK 1.3); new tensor field visualization modes (eigenvectors, ellipsoid, etc.);
added support for interpolation schemes in .msh file; added support for MED3
format; rescale viewport around visible entities (shift+1:1 in GUI); unified
post-processing field export; new experimental stereo+camera visualization mode;
added experimental BAMG & MMG3D support for anisotropic mesh generation; new OCC
cut & merge algorithm imported from Salome; new ability to connect extruded
meshes to tetrahedral grids using pyramids; new homology solver; Abaqus (INP)
mesh export; new Python and Java wrappers; bug fixes and small improvements all
over the place.
2.5.0 (Oct 15, 2010): new compound geometrical entities (for remeshing and/or
trans-patch meshing); improved mesh reclassification tool; new client/server
......
......@@ -40,7 +40,7 @@ p1 = newp; Point(p1) = {r1*Exp(delta*t)*Cos(t), -r1*Exp(delta*t)*Sin(t), 0, L
Return
/*Mesh Algorithms*/
Mesh.Algorithm = 6; // (1) MeshAdapt (2) Auto (5) Delaunay (6) frontal (7) BAMG (8) DelQuad
Mesh.Algorithm = 6;
Mesh.Smoothing = 100;
Mesh.OptimizeNetgen = 1;
Mesh.HighOrderOptimize = 0;
......
......@@ -307,7 +307,7 @@ information.
parametrizations for surface remeshing</a></em>. Engineering with
Computers, December 2012, pp. 1-20.
</ul>
Quad meshing (Blossom and DelQuad)
Quad meshing
<ul class="small">
<li>
J.-F. Remacle, J. Lambrechts, B. Seny, E. Marchandise, A. Johnen and
......
This diff is collapsed.
......@@ -758,7 +758,9 @@ Default value: @code{2000}
@item Plugin(MeshVolume)
Plugin(MeshVolume) computes the volume of the mesh.@*
@*
Only the elements in the physical group `Physical' of dimension `Dimension' are taken into account, unless 'Physical' is negative, in which case all the elements of the given `Dimension' are considered.
Only the elements in the physical group `Physical' of dimension `Dimension' are taken into account, unless 'Physical' is negative, in which case all the elements of the given `Dimension' are considered. If `Dimension` is negative, all the elments are considered.@*
@*
Plugin(MeshVolume) creates one new view.
Numeric options:
@table @code
@item Physical
......
......@@ -39,13 +39,13 @@ Recombine Surface{100};
// Journal for Numerical Methods in Engineering 89, pp. 1102-1119, 2012.
// For even better 2D (planar) quadrilateral meshes, you can try the
// experimental "Delaunay for quads" (DelQuad) meshing algorithm: DelQuad is a
// experimental "Frontal-Delaunay for quads" meshing algorithm, which is a
// triangulation algorithm that enables to create right triangles almost
// everywhere: J.-F. Remacle, F. Henrotte, T. Carrier-Baudouin, E. Bechet,
// E. Marchandise, C. Geuzaine and T. Mouton. A frontal Delaunay quad mesh
// generator using the L^inf norm. International Journal for Numerical Methods
// in Engineering, 94, pp. 494-512, 2013. Uncomment the following line to try
// DelQuad:
// the Frontal-Delaunay algorithms for quads:
//
// Mesh.Algorithm = 8;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment