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

No commit message

No commit message
parent aa0e8b0a
No related branches found
No related tags found
No related merge requests found
...@@ -194,7 +194,7 @@ PView *GMSH_CrackPlugin::execute(PView *view) ...@@ -194,7 +194,7 @@ PView *GMSH_CrackPlugin::execute(PView *view)
crackEntity->physicals.push_back(physical); crackEntity->physicals.push_back(physical);
// duplicate crack vertices // duplicate crack vertices
std::map<MVertex *, MVertex*> vxv; std::map<MVertex*, MVertex*> vxv;
for(std::set<MVertex*>::iterator it = crackVertices.begin(); for(std::set<MVertex*>::iterator it = crackVertices.begin();
it != crackVertices.end(); it++){ it != crackVertices.end(); it++){
MVertex *v = *it; MVertex *v = *it;
......
...@@ -49,6 +49,11 @@ Apply lloyd optimization on surface meshes@* ...@@ -49,6 +49,11 @@ Apply lloyd optimization on surface meshes@*
Default value: @code{0}@* Default value: @code{0}@*
Saved in: @code{General.OptionsFileName} Saved in: @code{General.OptionsFileName}
@item Mesh.SmoothCrossField
Apply n barycentric smoothing passes to the cross field@*
Default value: @code{0}@*
Saved in: @code{General.OptionsFileName}
@item Mesh.CgnsImportOrder @item Mesh.CgnsImportOrder
Enable the creation of high-order mesh from CGNS structured meshes.(1, 2, 4, 8, ...)@* Enable the creation of high-order mesh from CGNS structured meshes.(1, 2, 4, 8, ...)@*
Default value: @code{1}@* Default value: @code{1}@*
......
...@@ -92,6 +92,16 @@ Numeric options: ...@@ -92,6 +92,16 @@ Numeric options:
Default value: @code{0} Default value: @code{0}
@end table @end table
@item Plugin(Crack)
Plugin(Crack) creates a crack around the physical group
Numeric options:
@table @code
@item Dimension
Default value: @code{1}
@item PhysicalGroup
Default value: @code{1}
@end table
@item Plugin(Curl) @item Plugin(Curl)
Plugin(Curl) computes the curl of the field in the view `View'. Plugin(Curl) computes the curl of the field in the view `View'.
...@@ -494,7 +504,7 @@ Default value: @code{1} ...@@ -494,7 +504,7 @@ Default value: @code{1}
@item ReductionOmit @item ReductionOmit
Default value: @code{1} Default value: @code{1}
@item ReductionCombine @item ReductionCombine
Default value: @code{2} Default value: @code{3}
@item PostProcessSimplify @item PostProcessSimplify
Default value: @code{1} Default value: @code{1}
@item ReductionHeuristic @item ReductionHeuristic
...@@ -515,7 +525,8 @@ Plugin(HomologyPostProcessing) operates on representative basis chains of homolo ...@@ -515,7 +525,8 @@ Plugin(HomologyPostProcessing) operates on representative basis chains of homolo
Results a new basis for the homology space such that the incidence matrix of the new basis and the basis of the cohomology space is the identity matrix. Results a new basis for the homology space such that the incidence matrix of the new basis and the basis of the cohomology space is the identity matrix.
Options: Options:
'PhysicalGroupsToTraceResults': Trace the resulting cochains to the given physical groups. 'PhysicalGroupsToTraceResults': Trace the resulting (co)chains to the given physical groups.
'PhysicalGroupsToProjectResults': Project the resulting (co)chains to the complement of the given physical groups.
'NameForResultChains': Post-processing view name prefix for the results. 'NameForResultChains': Post-processing view name prefix for the results.
'ApplyBoundaryOperatorToResults': Apply boundary operator to the resulting chains. 'ApplyBoundaryOperatorToResults': Apply boundary operator to the resulting chains.
...@@ -529,6 +540,8 @@ Default value: @code{"1, 2"} ...@@ -529,6 +540,8 @@ Default value: @code{"1, 2"}
Default value: @code{""} Default value: @code{""}
@item PhysicalGroupsToTraceResults @item PhysicalGroupsToTraceResults
Default value: @code{""} Default value: @code{""}
@item PhysicalGroupsToProjectResults
Default value: @code{""}
@item NameForResultChains @item NameForResultChains
Default value: @code{"c"} Default value: @code{"c"}
@end table @end table
...@@ -963,6 +976,11 @@ Default value: @code{-1} ...@@ -963,6 +976,11 @@ Default value: @code{-1}
@item Plugin(SimplePartition) @item Plugin(SimplePartition)
Plugin(SimplePartition) partitions the current mesh into `NumSlices' slices, along the X-, Y- or Z-axis depending on the value of `Direction' (0,1,2). The plugin creates partition boundaries if `CreateBoundaries' is set. Plugin(SimplePartition) partitions the current mesh into `NumSlices' slices, along the X-, Y- or Z-axis depending on the value of `Direction' (0,1,2). The plugin creates partition boundaries if `CreateBoundaries' is set.
String options:
@table @code
@item Mapping
Default value: @code{"t"}
@end table
Numeric options: Numeric options:
@table @code @table @code
@item NumSlices @item NumSlices
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment