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
f328d297
Commit
f328d297
authored
13 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
52c913d2
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
tutorial/t12.geo
+1
-1
1 addition, 1 deletion
tutorial/t12.geo
tutorial/t13.geo
+6
-77
6 additions, 77 deletions
tutorial/t13.geo
tutorial/t14.geo
+84
-0
84 additions, 0 deletions
tutorial/t14.geo
with
91 additions
and
78 deletions
tutorial/t12.geo
+
1
−
1
View file @
f328d297
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
*
*
* Gmsh tutorial 12
* Gmsh tutorial 12
*
*
* Remeshing with compounds
* Remeshing
STL
with compounds
*
*
*********************************************************************/
*********************************************************************/
...
...
This diff is collapsed.
Click to expand it.
tutorial/t13.geo
+
6
−
77
View file @
f328d297
/*********************************************************************
/*********************************************************************
*
*
* Gmsh tutorial 13
* Gmsh tutorial 13
*
*
*
Homology computation
*
Cross-patch meshing with compounds
*
*
*********************************************************************/
*********************************************************************/
// Homology computation in Gmsh finds representative chains of
// (relative) homology spaces using a mesh of a model. Those
// representatives generate the (relative) homology spaces of the
// model. Alternatively, Gmsh can only look for the ranks of the
// (relative) homology spaces, the Betti numbers of the model.
// The generators chains are stored in a given .msh-file as physical
// groups, whose mesh elements are oriented such that their
// coefficients are 1 in the generator chain.
// Create an example geometry
m
=
0.5
;
// mesh characteristic length
h
=
2
;
// height in the z-direction
Point
(
1
)
=
{
0
,
0
,
0
,
m
};
Point
(
2
)
=
{
10
,
0
,
0
,
m
};
Point
(
3
)
=
{
10
,
10
,
0
,
m
};
Point
(
4
)
=
{
0
,
10
,
0
,
m
};
Point
(
5
)
=
{
4
,
4
,
0
,
m
};
Point
(
6
)
=
{
6
,
4
,
0
,
m
};
Point
(
7
)
=
{
6
,
6
,
0
,
m
};
Point
(
8
)
=
{
4
,
6
,
0
,
m
};
Point
(
9
)
=
{
2
,
0
,
0
,
m
};
Point
(
10
)
=
{
8
,
0
,
0
,
m
};
Point
(
11
)
=
{
2
,
10
,
0
,
m
};
Point
(
12
)
=
{
8
,
10
,
0
,
m
};
Line
(
1
)
=
{
1
,
9
};
Line
(
2
)
=
{
9
,
10
};
Line
(
3
)
=
{
10
,
2
};
Line
(
4
)
=
{
2
,
3
};
Line
(
5
)
=
{
3
,
12
};
Line
(
6
)
=
{
12
,
11
};
Line
(
7
)
=
{
11
,
4
};
Line
(
8
)
=
{
4
,
1
};
Line
(
9
)
=
{
5
,
6
};
Line
(
10
)
=
{
6
,
7
};
Line
(
11
)
=
{
7
,
8
};
Line
(
12
)
=
{
8
,
5
};
Line
Loop
(
13
)
=
{
6
,
7
,
8
,
1
,
2
,
3
,
4
,
5
};
Line
Loop
(
14
)
=
{
11
,
12
,
9
,
10
};
Plane
Surface
(
15
)
=
{
13
,
14
};
Extrude
{
0
,
0
,
h
}{
Surface
{
15
};
}
// Create physical groups, which are used to define the domain of the
// homology computation and the subdomain of the relative homology
// computation.
// Whole domain
Physical
Volume
(
1
)
=
{
1
};
// Four "terminals" of the model
Physical
Surface
(
70
)
=
{
36
};
Physical
Surface
(
71
)
=
{
44
};
Physical
Surface
(
72
)
=
{
52
};
Physical
Surface
(
73
)
=
{
60
};
// Whole domain surface
bnd
[]
=
Boundary
{
Volume
{
1
};
};
Physical
Surface
(
80
)
=
bnd
[];
// Complement of the domain surface respect to the four terminals
bnd
[]
-=
{
36
,
44
,
52
,
60
};
Physical
Surface
(
75
)
=
bnd
[];
// Create a mesh of the model
Mesh
3
;
// Find generators of relative homology spaces of the domain modulo
// the four terminals. Save the generator chains to t13_hom.msh.
HomGen
(
"t13_hom.msh"
)
=
{{
1
},
{
70
,
71
,
72
,
73
}};
// Find the corresponding thin cuts, generators of relative homology
// spaces modulo the non-terminal domain surface. Save the cut chains
// to t13_hom.msh.
HomGen
(
"t13_hom.msh"
)
=
{{
1
},
{
75
}};
// Find the corresponding thick cuts. Save the cut chains to
// Compound geometrical entities can be defined to compute a new
// t13_hom.msh.
// parametrization of groups of elementary geometrical entities. This
HomCut
(
"t13_hom.msh"
)
=
{{
1
},
{
70
,
71
,
72
,
73
}};
// parametrization can then be used for remeshing the compound as if
// it were a CAD entity.
// More examples:
// HomGen("t13_hom.msh") = {{1}, {}};
// HomGen("t13_hom.msh") = {{}, {}};
// HomGen("t13_hom.msh") = {{1}, {80}};
// HomGen("t13_hom.msh") = {{}, {80}};
This diff is collapsed.
Click to expand it.
tutorial/t14.geo
0 → 100644
+
84
−
0
View file @
f328d297
/*********************************************************************
*
* Gmsh tutorial 14
*
* Homology computation
*
*********************************************************************/
// Homology computation in Gmsh finds representative chains of
// (relative) homology spaces using a mesh of a model. Those
// representatives generate the (relative) homology spaces of the
// model. Alternatively, Gmsh can only look for the ranks of the
// (relative) homology spaces, the Betti numbers of the model.
// The generators chains are stored in a given .msh-file as physical
// groups, whose mesh elements are oriented such that their
// coefficients are 1 in the generator chain.
// Create an example geometry
m
=
0.5
;
// mesh characteristic length
h
=
2
;
// height in the z-direction
Point
(
1
)
=
{
0
,
0
,
0
,
m
};
Point
(
2
)
=
{
10
,
0
,
0
,
m
};
Point
(
3
)
=
{
10
,
10
,
0
,
m
};
Point
(
4
)
=
{
0
,
10
,
0
,
m
};
Point
(
5
)
=
{
4
,
4
,
0
,
m
};
Point
(
6
)
=
{
6
,
4
,
0
,
m
};
Point
(
7
)
=
{
6
,
6
,
0
,
m
};
Point
(
8
)
=
{
4
,
6
,
0
,
m
};
Point
(
9
)
=
{
2
,
0
,
0
,
m
};
Point
(
10
)
=
{
8
,
0
,
0
,
m
};
Point
(
11
)
=
{
2
,
10
,
0
,
m
};
Point
(
12
)
=
{
8
,
10
,
0
,
m
};
Line
(
1
)
=
{
1
,
9
};
Line
(
2
)
=
{
9
,
10
};
Line
(
3
)
=
{
10
,
2
};
Line
(
4
)
=
{
2
,
3
};
Line
(
5
)
=
{
3
,
12
};
Line
(
6
)
=
{
12
,
11
};
Line
(
7
)
=
{
11
,
4
};
Line
(
8
)
=
{
4
,
1
};
Line
(
9
)
=
{
5
,
6
};
Line
(
10
)
=
{
6
,
7
};
Line
(
11
)
=
{
7
,
8
};
Line
(
12
)
=
{
8
,
5
};
Line
Loop
(
13
)
=
{
6
,
7
,
8
,
1
,
2
,
3
,
4
,
5
};
Line
Loop
(
14
)
=
{
11
,
12
,
9
,
10
};
Plane
Surface
(
15
)
=
{
13
,
14
};
Extrude
{
0
,
0
,
h
}{
Surface
{
15
};
}
// Create physical groups, which are used to define the domain of the
// homology computation and the subdomain of the relative homology
// computation.
// Whole domain
Physical
Volume
(
1
)
=
{
1
};
// Four "terminals" of the model
Physical
Surface
(
70
)
=
{
36
};
Physical
Surface
(
71
)
=
{
44
};
Physical
Surface
(
72
)
=
{
52
};
Physical
Surface
(
73
)
=
{
60
};
// Whole domain surface
bnd
[]
=
Boundary
{
Volume
{
1
};
};
Physical
Surface
(
80
)
=
bnd
[];
// Complement of the domain surface respect to the four terminals
bnd
[]
-=
{
36
,
44
,
52
,
60
};
Physical
Surface
(
75
)
=
bnd
[];
// Create a mesh of the model
Mesh
3
;
// Find generators of relative homology spaces of the domain modulo
// the four terminals. Save the generator chains to t14_hom.msh.
HomGen
(
"t14_hom.msh"
)
=
{{
1
},
{
70
,
71
,
72
,
73
}};
// Find the corresponding thin cuts, generators of relative homology
// spaces modulo the non-terminal domain surface. Save the cut chains
// to t14_hom.msh.
HomGen
(
"t14_hom.msh"
)
=
{{
1
},
{
75
}};
// Find the corresponding thick cuts. Save the cut chains to
// t14_hom.msh.
HomCut
(
"t14_hom.msh"
)
=
{{
1
},
{
70
,
71
,
72
,
73
}};
// More examples:
// HomGen("t14_hom.msh") = {{1}, {}};
// HomGen("t14_hom.msh") = {{}, {}};
// HomGen("t14_hom.msh") = {{1}, {80}};
// HomGen("t14_hom.msh") = {{}, {80}};
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