Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docs
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
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
exa
docs
Commits
92d5d2bb
Commit
92d5d2bb
authored
3 years ago
by
Deepak Rangarajan
Browse files
Options
Downloads
Patches
Plain Diff
add section for hypre settings
parent
7fdc3d4b
No related branches found
Branches containing commit
No related tags found
1 merge request
!14
add section for hypre settings
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/source/Inputs_Chapter.rst
+1
-0
1 addition, 0 deletions
docs/source/Inputs_Chapter.rst
docs/source/inputs/InputsHypre.rst
+74
-0
74 additions, 0 deletions
docs/source/inputs/InputsHypre.rst
docs/source/inputs/InputsMultigrid.rst
+24
-0
24 additions, 0 deletions
docs/source/inputs/InputsMultigrid.rst
with
99 additions
and
0 deletions
docs/source/Inputs_Chapter.rst
+
1
−
0
View file @
92d5d2bb
...
...
@@ -45,6 +45,7 @@ keywords such as ``mfix``, ``amr``, ``geometry``, ``nodal_proj`` etc.
inputs/InputsInitialization
inputs/InputsLoadBalancing
inputs/InputsMultigrid
inputs/InputsHypre
inputs/InputsPlotFiles
inputs/InputsCheckpoint
inputs/InputsMonitors
...
...
This diff is collapsed.
Click to expand it.
docs/source/inputs/InputsHypre.rst
0 → 100644
+
74
−
0
View file @
92d5d2bb
.. _Chap:InputsHypre:
Hypre Inputs
=============
The following inputs control the hypre settings and are read directly
by AMReX when we use hypre as the bottom solver.
NOTE: Default uses the same hypre namespace "hypre" for all solvers. However,
the hypre namespace can be set at the solver level and the hypre settings
can be configured for each MLMG solver.
These settings must be preceded by the hypre_namespace setting corresponding to the solver (see :ref:`Chap:InputsMultigrid`)
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| | Description | Type | Default |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| verbose | Verbosity of hypre | Int | 0 |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| adjust_singular_matrix | Should be true if the problem to be solved has singular matrix | Bool | false |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_solver | Type of hypre solver | String | BoomerAMG |
| | | | |
| | Options are BoomerAMG, GMRES, COGMRES, LGMRES, FlexGMRES, BiCGSTAB, | | |
| | PCG or Hybrid | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_preconditioner | Type of preconditioner | String | none |
| | | | |
| | Options are BoomerAMG or euclid | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| recompute_preconditioner | Recompute preconditioner during runs | Bool | true |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| write_matrix_files | Write out matrix into text files | Bool | false |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| overwrite_existing_matrix_files | Over-write existing matrix files | Bool | false |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_verbose | Verbosity of BoomerAMG preconditioner | Int | 0 |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_logging | When using BoomerAMG preconditioner | Int | 0 |
| | | | |
| | See HYPRE_BoomerAMGSetLogging | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_coarsen_type | When using BoomerAMG preconditioner | Int | 6 |
| | | | |
| | See HYPRE_BoomerAMGSetCoarsenType | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_cycle_type | When using BoomerAMG preconditioner | Int | 1 |
| | | | |
| | See HYPRE_BoomerAMGSetCycleType | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_relax_type | When using BoomerAMG preconditioner | Int | 6 |
| | | | |
| | See HYPRE_BoomerAMGSetRelaxType | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_relax_order | When using BoomerAMG preconditioner | Int | 1 |
| | | | |
| | See HYPRE_BoomerAMGSetRelaxOrder | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_num_sweeps | When using BoomerAMG preconditioner | Int | 2 |
| | | | |
| | See HYPRE_BoomerAMGSetNumSweeps | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_max_levels | When using BoomerAMG preconditioner | Int | 20 |
| | | | |
| | See HYPRE_BoomerAMGSetMaxLevels | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_strong_threshold | When using BoomerAMG preconditioner | Real | 0.57 |
| | | | |
| | See HYPRE_BoomerAMGSetStrongThreshold | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bamg_interp_type | When using BoomerAMG preconditioner | Int | 0 |
| | | | |
| | HYPRE_BoomerAMGSetInterpType | | |
+-----------------------------------+-----------------------------------------------------------------------+-------------+--------------+
This diff is collapsed.
Click to expand it.
docs/source/inputs/InputsMultigrid.rst
+
24
−
0
View file @
92d5d2bb
...
...
@@ -31,8 +31,16 @@ These control the nodal projection and must be preceded by "nodal_proj":
| | If set to 0, the bottom solver will be called at the current level | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bottom_solver | Which bottom solver to use in the nodal projection | String | bicgcg |
| | | | |
| | Options are bicgcg, bicgstab, cg, cgbicg, smoother or hypre | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_namespace | Namespace to use in the nodal projection when using hypre | String | hypre |
| | to control hypre specific settings. It can be any string. | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_interface | Which interface to use in the nodal projection when using hypre | String | ij |
| | | | |
| | Options are ij, semi_structured or structured | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
These control the MAC projection and must be preceded by "mac_proj":
...
...
@@ -56,8 +64,16 @@ These control the MAC projection and must be preceded by "mac_proj":
| | If set to 0, the bottom solver will be called at the current level | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bottom_solver | Which bottom solver to use in the MAC projection | String | bicgcg |
| | | | |
| | Options are bicgcg, bicgstab, cg, cgbicg, smoother or hypre | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_namespace | Namespace to use in the MAC projection when using hypre | String | hypre |
| | to control hypre specific settings. It can be any string. | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_interface | Which interface to use in the MAC projection when using hypre | String | ij |
| | | | |
| | Options are ij, semi_structured or structured | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
These control the diffusion solver and must be preceded by "diffusion":
...
...
@@ -81,5 +97,13 @@ These control the diffusion solver and must be preceded by "diffusion":
| | If set to 0, the bottom solver will be called at the current level | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| bottom_solver | Which bottom solver to use in the diffusion solve | String | bicgcg |
| | | | |
| | Options are bicgcg, bicgstab, cg, cgbicg, smoother or hypre | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_namespace | Namespace to use in the diffusion solve when using hypre | String | hypre |
| | to control hypre specific settings. It can be any string. | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
| hypre_interface | Which interface to use in the diffusion solve when using hypre | String | ij |
| | | | |
| | Options are ij, semi_structured or structured | | |
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
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