diff --git a/doc/texinfo/opt_fields.texi b/doc/texinfo/opt_fields.texi index dd0e0fae192437e687929f11291999b4b956fcfc..c6d3ad21963d02c27dc5895601ad28b60649cd83 100644 --- a/doc/texinfo/opt_fields.texi +++ b/doc/texinfo/opt_fields.texi @@ -27,39 +27,29 @@ default value: @code{@{@}} @end table @item BoundaryLayer -F = LCMin if Field[IField] <= DistMin,@* -F = LCMax if Field[IField] >= DistMax,@* -F = interpolation between LcMin and LcMax if DistMin < Field[IField] < DistMax@* +hwall * ratio^(dist/hwall)@* Options:@* @table @code -@item DistMax -Distance from entity after which element size will be LcMax@* -type: float@* -default value: @code{10} -@item DistMin -Distance from entity up to which element size will be LcMin@* -type: float@* -default value: @code{1} @item IField -Index of the field to evaluate@* +Index of the field that contains the distance function@* type: integer@* default value: @code{0} -@item LcMax -Element size outside DistMax@* +@item hfar +Element size far from the wall@* type: float@* default value: @code{1} -@item LcMin -Element size inside DistMin@* +@item hwall_n +Mesh Size Normal to the The Wall@* type: float@* default value: @code{0.1} -@item Sigmoid -True to interpolate between LcMin and LcMax using a sigmoid, false to interpolate linearly@* -type: boolean@* -default value: @code{0} -@item StopAtDistMax -True to not impose element size outside DistMax (i.e., F = a very big value if Field[IField] > DistMax)@* -type: boolean@* -default value: @code{0} +@item hwall_t +Mesh Size Tangent to the Wall@* +type: float@* +default value: @code{0.5} +@item ratio +Size Ratio Between Two Successive Layers@* +type: float@* +default value: @code{1.1} @end table @item Box @@ -228,6 +218,36 @@ type: string@* default value: @code{"F2 + Sin(z)"} @end table +@item MathEvalAniso +Evaluate a metric expression. The expressions can contain x, y, z for spatial coordinates, F0, F1, ... for field values, and and mathematical functions.@* +Options:@* +@table @code +@item m11 +element 11 of the metric tensor.@* +type: string@* +default value: @code{"F2 + Sin(z)"} +@item m12 +element 12 of the metric tensor.@* +type: string@* +default value: @code{"F2 + Sin(z)"} +@item m13 +element 13 of the metric tensor.@* +type: string@* +default value: @code{"F2 + Sin(z)"} +@item m22 +element 22 of the metric tensor.@* +type: string@* +default value: @code{"F2 + Sin(z)"} +@item m23 +element 23 of the metric tensor.@* +type: string@* +default value: @code{"F2 + Sin(z)"} +@item m33 +element 33 of the metric tensor.@* +type: string@* +default value: @code{"F2 + Sin(z)"} +@end table + @item Max Take the maximum value of a list of fields.@* Options:@* @@ -285,6 +305,16 @@ type: list@* default value: @code{@{@}} @end table +@item MinAniso +Take the intersection of a list of possibly anisotropic fields.@* +Options:@* +@table @code +@item FieldsList +Field indices@* +type: list@* +default value: @code{@{@}} +@end table + @item Param Evaluate Field IField in parametric coordinates:@* @* diff --git a/doc/texinfo/opt_general.texi b/doc/texinfo/opt_general.texi index ca828cd3f090846874d29f91cb32c44070e2216f..af95f8af012d2829cf965ed8c724d658ad89a0c6 100644 --- a/doc/texinfo/opt_general.texi +++ b/doc/texinfo/opt_general.texi @@ -909,6 +909,11 @@ Vertical position (in pixels) of the upper left corner of the statistic window@* Default value: @code{150}@* Saved in: @code{General.SessionFileName} +@item General.Stereo +Use stereo rendering@* +Default value: @code{0}@* +Saved in: @code{General.OptionsFileName} + @item General.SystemMenuBar Use the system menu bar on Mac OS X?@* Default value: @code{1}@* diff --git a/doc/texinfo/opt_mesh.texi b/doc/texinfo/opt_mesh.texi index 9b34d8a1383f0bcee4e1d017b781c3c1f84606a6..6a5fedc76fbd456db9b7fb33e11b5e7193df84e7 100644 --- a/doc/texinfo/opt_mesh.texi +++ b/doc/texinfo/opt_mesh.texi @@ -19,6 +19,11 @@ Threshold angle below which normals are not smoothed@* Default value: @code{30}@* Saved in: @code{General.OptionsFileName} +@item Mesh.AnisoMax +Maximum anisotropy of the mesh@* +Default value: @code{1e+33}@* +Saved in: @code{General.OptionsFileName} + @item Mesh.AllowSwapAngle Treshold angle (in degrees) between faces normals under which we allow an edge swap@* Default value: @code{10}@* @@ -180,8 +185,8 @@ Default value: @code{1}@* Saved in: @code{General.OptionsFileName} @item Mesh.Format -Mesh output format (1=msh, 2=unv, 19=vrml, 27=stl, 30=mesh, 31=bdf, 32=cgns, 33=med)@* -Default value: @code{1}@* +Mesh output format (1=msh, 2=unv, 10=automatic, 19=vrml, 27=stl, 30=mesh, 31=bdf, 32=cgns, 33=med)@* +Default value: @code{10}@* Saved in: @code{General.OptionsFileName} @item Mesh.Hexahedra @@ -479,6 +484,11 @@ Smooth the mesh normals?@* Default value: @code{0}@* Saved in: @code{General.OptionsFileName} +@item Mesh.SmoothRatio +Ratio between mesh sizes at vertices of a same edeg (used in BAMG)@* +Default value: @code{1.8}@* +Saved in: @code{General.OptionsFileName} + @item Mesh.SubdivisionAlgorithm Mesh subdivision algorithm (0=none, 1=all quadrangles, 2=all hexahedra)@* Default value: @code{0}@* diff --git a/doc/texinfo/opt_plugin.texi b/doc/texinfo/opt_plugin.texi index 6ad45792391c4be5af85784f9574866d67469341..705d07d7c5e7574813585cc5fb8390c2d96f82ae 100644 --- a/doc/texinfo/opt_plugin.texi +++ b/doc/texinfo/opt_plugin.texi @@ -4,11 +4,6 @@ @c @ftable @code -@item Plugin(AnalyseCurvedMesh) -Plugin(AnalyseCurvedMesh) computes AnalyseCurvedMeshs to boundaries in a mesh. - -Plugin(AnalyseCurvedMesh) creates a bunch of files. - @item Plugin(Annotate) Plugin(Annotate) adds the text string `Text', in font `Font' and size `FontSize', in the view `View'. The string is aligned according to `Align'.