Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
33b8f132
Commit
33b8f132
authored
15 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
add option to save ghost cells
parent
a7b2a59d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Mesh/meshPartition.cpp
+2
-2
2 additions, 2 deletions
Mesh/meshPartition.cpp
Mesh/meshPartitionOptions.h
+2
-0
2 additions, 0 deletions
Mesh/meshPartitionOptions.h
doc/texinfo/gmsh.texi
+4
-4
4 additions, 4 deletions
doc/texinfo/gmsh.texi
with
8 additions
and
6 deletions
Mesh/meshPartition.cpp
+
2
−
2
View file @
33b8f132
...
@@ -296,8 +296,8 @@ int PartitionMesh(GModel *const model, meshPartitionOptions &options)
...
@@ -296,8 +296,8 @@ int PartitionMesh(GModel *const model, meshPartitionOptions &options)
model
->
recomputeMeshPartitions
();
model
->
recomputeMeshPartitions
();
if
(
options
.
createPartitionBoundaries
)
if
(
options
.
createPartitionBoundaries
||
options
.
createGhostCells
)
CreatePartitionBoundaries
(
model
,
true
);
CreatePartitionBoundaries
(
model
,
options
.
createGhostCells
);
Msg
::
Info
(
"Partitioning complete"
);
Msg
::
Info
(
"Partitioning complete"
);
Msg
::
StatusBar
(
1
,
false
,
"Mesh"
);
Msg
::
StatusBar
(
1
,
false
,
"Mesh"
);
...
...
This diff is collapsed.
Click to expand it.
Mesh/meshPartitionOptions.h
+
2
−
0
View file @
33b8f132
...
@@ -17,6 +17,7 @@ struct meshPartitionOptions
...
@@ -17,6 +17,7 @@ struct meshPartitionOptions
int
renumber
;
int
renumber
;
bool
createPartitionBoundaries
;
bool
createPartitionBoundaries
;
bool
createGhostCells
;
//--Chaco
//--Chaco
...
@@ -107,6 +108,7 @@ struct meshPartitionOptions
...
@@ -107,6 +108,7 @@ struct meshPartitionOptions
edge_matching
=
3
;
edge_matching
=
3
;
refine_algorithm
=
3
;
refine_algorithm
=
3
;
createPartitionBoundaries
=
true
;
createPartitionBoundaries
=
true
;
createGhostCells
=
true
;
}
}
};
};
...
...
This diff is collapsed.
Click to expand it.
doc/texinfo/gmsh.texi
+
4
−
4
View file @
33b8f132
...
@@ -4964,14 +4964,14 @@ image file.
...
@@ -4964,14 +4964,14 @@ image file.
@item How can I save MPEG, AVI, ..., animations?
@item How can I save MPEG, AVI, ..., animations?
Yes, u
sing script
s
. Have a look at @file
{
tutorial/t8.geo
}
or
U
sing
a
script. Have a look at @file
{
tutorial/t8.geo
}
or
@file
{
demos/anim.script
}
for some examples.
@file
{
demos/anim.script
}
for some examples.
@item Can I change values in input fields with the mouse in the GUI?
@item Can I change values in input fields with the mouse in the GUI?
Yes: dragging the mouse in a numeric input field slides the value! The
Yes: dragging the mouse in a numeric input field slides the value! The
left button moves one step per pixel, the middle by 10
*
step, and the
left button moves one step per pixel, the middle by
`
10
*
step
'
, and the
right button by 100
*
step.
right button by
`
100
*
step
'
.
@item Can I copy messages to the clipboard?
@item Can I copy messages to the clipboard?
...
@@ -5047,7 +5047,7 @@ files in your main project file.
...
@@ -5047,7 +5047,7 @@ files in your main project file.
@item What should I do when the 2D unstructured algorithm fails?
@item What should I do when the 2D unstructured algorithm fails?
Verify that the curves in the model do not self-intersect. If
Verify that the curves in the model do not self-intersect. If
Mesh.RandomFactor
*
size(triangle)/size(model) approaches machine
`
Mesh.RandomFactor
*
size(triangle)/size(model)
'
approaches machine
accuracy, increase Mesh.RandomFactor.
accuracy, increase Mesh.RandomFactor.
If everything fails file a bug report with the version of your operating
If everything fails file a bug report with the version of your operating
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment