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
71b7a197
Commit
71b7a197
authored
6 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[doc] Update parallel model creation workflow.
parent
8391481f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
web/content/docs/tools/workflows/create-a-simple-parallel-model/index.pandoc
+20
-2
20 additions, 2 deletions
...ols/workflows/create-a-simple-parallel-model/index.pandoc
with
20 additions
and
2 deletions
web/content/docs/tools/workflows/create-a-simple-parallel-model/index.pandoc
+
20
−
2
View file @
71b7a197
...
...
@@ -41,12 +41,30 @@ where `a`, `b`, and `c` should be choosen according to the needs.
| 422 | 422 | 422 | ~ 75.15 | 240 | yes |
| 465 | 465 | 465 | ~ 100.54 | 320 | |
For the boundary conditions, if they are simple (_i.e._ homogeneous), the
simplest `.gml` file is sufficient for the serial case, but for heterogeneous
boundary conditions and parallelization boundary mesh files are needed. There
are two possibilities to create such files:
- If there is a `.gml` file, use [`constructMeshesFromGeometry`
tool](../../model-preparation/constructmeshesfromgeometry/), which takes the
mesh file and geometry and creates all the boundaries which are named in the
`.gml` file with the required `bulk_node_ids` and `bulk_element_ids`
mappings.
- If there is a boundary mesh (generated by gmsh or salome, or extracted in
paraview, for example) use the [`identifySubdomains`
tool](../../model-preparation/identifysubdomains/) to create or verify the
needed `bulk_node_ids` and `bulk_element_ids` mappings.
## Partition the mesh
Convert vtu mesh into metis input mesh
```bin/partmesh -i cube_1x1x1_hex_axbxc.vtu --ogs2metis```
=> results in a file cube_1x1x1_hex_axbxc.mesh
```bin/partmesh -n number_of_partitions -m -i cube_1x1x1_hex_axbxc```
=> results in a file `cube_1x1x1_hex_axbxc.mesh`
Then partition the mesh and the corresponding boundaries.
```bin/partmesh -n number_of_partitions -m -i cube_1x1x1_hex_axbxc.vtu -- boundary_meshes*.vtu```
This will result in a bunch of `.bin` files.
## Deciding the part to benchmark
...
...
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