Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
dynamic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MostafaMollaali
dynamic
Commits
35f8eae2
Commit
35f8eae2
authored
5 years ago
by
joergbuchwald
Browse files
Options
Downloads
Patches
Plain Diff
improving the documentation related to removing cell types and surplus elements in the mesh
parent
67fd192c
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NumLib/Fem/CoordinatesMapping/NaturalCoordinatesMapping.cpp
+6
-2
6 additions, 2 deletions
NumLib/Fem/CoordinatesMapping/NaturalCoordinatesMapping.cpp
web/content/docs/tools/meshing/remove-mesh-elements/index.pandoc
+2
-1
2 additions, 1 deletion
...tent/docs/tools/meshing/remove-mesh-elements/index.pandoc
with
8 additions
and
3 deletions
NumLib/Fem/CoordinatesMapping/NaturalCoordinatesMapping.cpp
+
6
−
2
View file @
35f8eae2
...
...
@@ -112,7 +112,9 @@ static void checkJacobianDeterminant(const double detJ,
#ifndef NDEBUG
std
::
cerr
<<
element
<<
"
\n
"
;
#endif // NDEBUG
OGS_FATAL
(
"Please check the node numbering of the element."
);
OGS_FATAL
(
"Please check whether the node numbering of the element is correct,"
"or additional elements (like boundary elements) are still present in the mesh."
);
}
if
(
detJ
==
0
)
...
...
@@ -125,7 +127,9 @@ static void checkJacobianDeterminant(const double detJ,
"Please check whether:
\n
"
"
\t
the element nodes may have the same coordinates,
\n
"
"
\t
or the coordinates of all nodes are not given on the x-axis "
"for a 1D problem or in the xy-plane in the 2D case."
);
"for a 1D problem or in the xy-plane in the 2D case.
\n
"
"The first case can occurr, if not all boundary elements"
"were removed from the bulk mesh."
);
}
}
...
...
This diff is collapsed.
Click to expand it.
web/content/docs/tools/meshing/remove-mesh-elements/index.pandoc
+
2
−
1
View file @
35f8eae2
...
...
@@ -29,7 +29,8 @@ removeMeshElements -i <input-mesh> -o <output-mesh>
[--zero-volume]
[--x-min <value>] [--x-max <value>] [--y-min <value>] [--y-max <value>] [--z-min <value>] [--z-max <value>]
```
Each particular line with optional arguments refere to one of the different removal criterions mentioned in the general section.
Each particular line with optional arguments refers to one of the different removal criteria mentioned in the general section.
The corresponding element types differ from vtk cell types and can be found in MeshLib/MeshEnums.cpp.
## Examples
...
...
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