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
Package registry
Model registry
Operate
Terraform modules
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
Romin Tomasetti
gmsh
Commits
b1271b30
Commit
b1271b30
authored
7 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
disable parts of cases
parent
4b300a24
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
Geo/discreteDiskFace.cpp
+2
-2
2 additions, 2 deletions
Geo/discreteDiskFace.cpp
benchmarks/extrude/sphere_discrete.geo
+5
-6
5 additions, 6 deletions
benchmarks/extrude/sphere_discrete.geo
tutorial/t13.geo
+3
-3
3 additions, 3 deletions
tutorial/t13.geo
with
10 additions
and
11 deletions
Geo/discreteDiskFace.cpp
+
2
−
2
View file @
b1271b30
...
...
@@ -1245,7 +1245,7 @@ double triangulation::geodesicDistance ()
if
(
Fixed
.
size
()
==
v2t
.
size
())
break
;
}
/*
char name[256];
sprintf(name,"geodesicDistance%d.pos",iter);
FILE *f = fopen(name,"w");
...
...
@@ -1262,7 +1262,7 @@ double triangulation::geodesicDistance ()
}
fprintf(f,"};\n");
fclose(f);
*/
return
CLOSEST
;
}
...
...
This diff is collapsed.
Click to expand it.
benchmarks/extrude/sphere_discrete.geo
+
5
−
6
View file @
b1271b30
General
.
MeshDiscrete
=
1
;
Merge
"sphere.stl"
;
// FIXME: re-add this once we have a good reparam
//Merge "sphere.stl";
//out[] = Extrude{
// Surface{1}; Layers{5, 0.1}; Recombine;
//};
//the volume of the boundary layer is created
//with the extrusion
//here we create the volume of the inside of the sphere
// the volume of the boundary layer is created with the extrusion
// here we create the volume of the inside of the sphere
//Surface Loop(100)={1};
//Volume(101)={100};
This diff is collapsed.
Click to expand it.
tutorial/t13.geo
+
3
−
3
View file @
b1271b30
...
...
@@ -26,9 +26,9 @@ ss[] = Surface {:};
// discrete):
Compound
Surface
{
ss
[]};
//
And we can create the volume based on the new compound entities
Surface
Loop
(
1
)
=
{
ss
[]};
Volume
(
1
)
=
{
1
};
//
FIXME: re-add this when we use a good parametrization
//
Surface Loop(1) = {ss[]};
//
Volume(1) = {1};
// element size imposed by a size field
Field
[
1
]
=
MathEval
;
...
...
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