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
969a42c0
Commit
969a42c0
authored
5 years ago
by
Ann Almgren
Browse files
Options
Downloads
Patches
Plain Diff
remove cpp file
parent
831995dc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/source/InputsMultigrid.cpp
+0
-76
0 additions, 76 deletions
docs/source/InputsMultigrid.cpp
with
0 additions
and
76 deletions
docs/source/InputsMultigrid.cpp
deleted
100644 → 0
+
0
−
76
View file @
831995dc
..
_Chap
:
InputsMultigrid
:
Multigrid
Inputs
================
The
following
inputs
can
be
set
directly
in
the
AMReX
solver
classes
but
we
set
them
via
the
MFiX
-
Exa
routines
because
we
may
want
different
inputs
for
the
differnt
solvers
called
by
MFiX
-
Exa
.
These
control
the
nodal
projection
and
must
be
preceded
by
"mfix"
:
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
|
Description
|
Type
|
Default
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_verbose
|
Verbosity
of
multigrid
solver
in
nodal
projection
|
Int
|
0
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_cg_verbose
|
Verbosity
of
BiCGStab
solver
in
nodal
projection
|
Int
|
0
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_rtol
|
Relative
tolerance
in
nodal
projection
|
Real
|
1.e-11
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_atol
|
Absolute
tolerance
in
nodal
projection
|
Real
|
1.e-14
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_maxiter
|
Maximum
number
of
iterations
in
the
nodal
projection
|
Int
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_cg_maxiter
|
Maximum
number
of
iterations
in
the
nodal
projection
|
Int
|
|
|
|
bottom
solver
if
using
bicg
,
cg
,
bicgcg
or
cgbicg
|
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_max_coarsening_level
|
Maximum
number
of
coarser
levels
to
allowin
the
nodal
projection
|
Int
|
|
|
|
If
set
to
0
,
the
bottom
solver
will
be
called
at
the
current
level
|
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
bottom_solver_type
|
Which
bottom
solver
to
use
in
the
nodal
projection
|
String
|
bicgcg
|
|
|
Options
are
bicgstab
,
cg
,
cgbicg
,
smoother
or
hypre
|
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
These
control
the
MAC
projection
and
must
be
preceded
by
"mac"
:
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
|
Description
|
Type
|
Default
|
+======================+=======================================================================+=============+=================+
|
mg_verbose
|
Verbosity
of
multigrid
solver
in
MAC
projection
|
Int
|
0
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_cg_verbose
|
Verbosity
of
BiCGStab
solver
in
MAC
projection
|
Int
|
0
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_rtol
|
Relative
tolerance
in
MAC
projection
|
Real
|
1.e-11
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_atol
|
Absolute
tolerance
in
MAC
projection
|
Real
|
1.e-14
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_maxiter
|
Maximum
number
of
iterations
in
the
MAC
projection
|
Int
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_cg_maxiter
|
Maximum
number
of
iterations
in
the
MAC
projection
|
Int
|
|
|
|
bottom
solver
if
using
bicg
,
cg
,
bicgcg
or
cgbicg
|
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_max_coarsening_level
|
Maximum
number
of
coarser
levels
to
allowin
the
nodal
projection
|
Int
|
|
|
|
If
set
to
0
,
the
bottom
solver
will
be
called
at
the
current
level
|
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
|
bottom_solver_type
|
Which
bottom
solver
to
use
in
the
MAC
projection
|
String
|
bicgcg
|
|
|
Options
are
bicgstab
,
cg
,
cgbicg
,
smoother
or
hypre
|
|
|
+-------------------------+-----------------------------------------------------------------------+-------------+--------------+
These
control
the
diffusion
solver
and
must
be
preceded
by
"diff"
:
The
following
inputs
must
be
preceded
by
"diff"
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
|
|
Description
|
Type
|
Default
|
+======================+=======================================================================+=============+==============+
|
mg_verbose
|
Verbosity
of
linear
solver
for
diffusion
solve
|
Int
|
0
|
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_cg_verbose
|
Verbosity
of
BiCGStab
solver
in
diffusion
solve
|
Int
|
0
|
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_rtol
|
Relative
tolerance
in
diffusion
solve
|
Real
|
1.e-11
|
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
|
mg_atol
|
Absolute
tolerance
in
diffusion
solve
|
Real
|
1.e-14
|
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
|
bottom_solver_type
|
Which
bottom
solver
to
use
in
the
diffusion
solve
|
String
|
bicgcg
|
|
|
Options
are
bicgstab
,
cg
,
cgbicg
,
smoother
or
hypre
|
|
|
+----------------------+-----------------------------------------------------------------------+-------------+--------------+
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