Runtime Options¶
Common Options¶
HONEE is controlled via command-line options. The following options are common among all problem types:
Option |
Description |
Default value |
---|---|---|
|
CEED resource specifier |
|
|
Problem to solve ( |
|
|
Use implicit time integrator formulation |
|
|
Polynomial degree of tensor product basis (must be >= 1) |
|
|
Number of extra quadrature points |
|
|
Viewer for the force on each no-slip wall, e.g., |
|
|
Viewer for the total kinetic energy in the domain and other terms, e.g., |
|
|
Number of timesteps between calculating and printing the total kinetic energy |
|
|
Viewer for the min/max CFL in the domain e.g., |
|
|
Number of timesteps between calculating and printing the min/max CFL |
|
|
Number of time steps between checking the solution for Nans. Negative interval indicates it will not run. |
|
|
Wall clock duration of simulation before it should be stopped. Acceptable formats are |
|
|
Approximate time required to exit simulation cleanly (write checkpoints, etc.) |
|
|
Number of time steps between checking whether simulation should stop based on |
|
|
Transform the mesh, usually for an initial box mesh. |
|
|
View comprehensive information about run-time options |
File I/O Options¶
Option |
Description |
Default value |
---|---|---|
|
Filename of mesh file to load in |
|
|
PETSc output format, such as |
|
|
Number of time steps between visualization output frames. |
|
|
Number of frames written per CGNS file if the CGNS file name includes a format specifier ( |
|
|
Number of steps between writing binary checkpoints. |
|
|
Checkpoints include VTK ( |
|
|
Use regular refinement for VTK visualization |
|
|
Output directory for binary checkpoints and VTK files (if enabled). |
|
|
Whether to add step numbers to output binary files |
|
|
Path to file from which to continue from. Either binary file or CGNS |
|
|
Sets intermediate time points to evaluate the solution at. See PETSc documentation for more details. |
|
|
PETSc output format for |
Note that to use -continue_filename
with CGNS files, the same file must be used with -dm_plex_filename
and -dm_plex_cgns_parallel
.
Testing Options¶
Option |
Description |
Default value |
---|---|---|
|
Run in test mode and specify whether solution ( |
|
|
Test absolute tolerance |
|
|
Test filename |
|
|
Run unit tests of Newtonian state variable transformation functions |
|
|
Run unit tests of Riemann problem solver and it’s Jacobian |
|
Logging Options¶
Some of these are PETSc options here as reference, while others are custom to HONEE.
Option |
Description |
Default value |
---|---|---|
|
View PETSc |
|
|
View mass KSP once before |
|
|
View log for every timestep taken by the |
|
|
View log for every iteration taken by the |
|
|
View convergence reason for every iteration taken by the |
|
|
View convergence reason for every iteration taken by the |
|
|
View PETSc performance log |
|
|
Print KSP residual summary information after each |
Nondimensionalization¶
These options allow the units used during solving to be changed. For problems where solution components can differ by many orders of magnitude, this can help problem conditioning
Caution
This feature may be broken for certain use cases. If you discover a bug related to nondimensionalization, please submit a issue to the HONEE repo so that we can address it.
Option |
Description |
Default value |
---|---|---|
|
1 meter in scaled length units |
|
|
1 second in scaled time units |
|
|
1 kilogram in scaled mass units |
|
|
1 Kelvin in scaled temperature units |
|
Boundary conditions¶
Option |
Description |
---|---|
|
Use wall boundary conditions on this list of faces |
|
An array of constrained component numbers for wall BCs |
|
Use weak slip boundary condition on this list of faces |
|
Use symmetry boundary conditions, for the x component, on this list of faces |
|
Use symmetry boundary conditions, for the y component, on this list of faces |
|
Use symmetry boundary conditions, for the z component, on this list of faces |
|
Use inflow boundary conditions on this list of faces |
|
Use outflow boundary conditions on this list of faces |
|
Use freestream boundary conditions on this list of faces |
For the case of a square/cubic mesh, the list of face indices to be used with -bc_wall
, bc_inflow
, bc_outflow
, bc_freestream
and/or -bc_symmetry_x
, -bc_symmetry_y
, and -bc_symmetry_z
are:
PETSc Face Name |
Cartesian direction |
Face ID |
---|---|---|
faceMarkerBottom |
-z |
1 |
faceMarkerRight |
+x |
2 |
faceMarkerTop |
+z |
3 |
faceMarkerLeft |
-x |
4 |
PETSc Face Name |
Cartesian direction |
Face ID |
---|---|---|
faceMarkerBottom |
-z |
1 |
faceMarkerTop |
+z |
2 |
faceMarkerFront |
-y |
3 |
faceMarkerBack |
+y |
4 |
faceMarkerRight |
+x |
5 |
faceMarkerLeft |
-x |
6 |
Boundary conditions for compressible viscous flows are notoriously tricky. Here we offer some recommendations.
Inflow¶
If in a region where the flow velocity is known (e.g., away from viscous walls), use bc_freestream
, which solves a Riemann problem and can handle inflow and outflow (simultaneously and dynamically).
It is stable and the least reflective boundary condition for acoustics.
If near a viscous wall, you may want a specified inflow profile.
Use bc_inflow
and see Laminar Boundary Layer - Blasius and discussion of synthetic turbulence generation for ways to analytically generate developed inflow profiles.
These conditions may be either weak or strong, with the latter specifying velocity and temperature as essential boundary conditions and evaluating a boundary integral for the mass flux.
The strong approach gives sharper resolution of velocity structures.
We have described the primitive variable formulation here; the conservative variants are similar, but not equivalent.
Outflow¶
If you know the complete exterior state, bc_freestream
is the least reflective boundary condition, but is disruptive to viscous flow structures.
If thermal anomalies must exit the domain, the Riemann solver must resolve the contact wave to avoid reflections.
The default Riemann solver, HLLC, is sufficient in this regard while the simpler HLL converts thermal structures exiting the domain into grid-scale reflecting acoustics.
If acoustic reflections are not a concern and/or the flow is impacted by walls or interior structures that you wish to resolve to near the boundary, choose bc_outflow
. This condition (with default outflow_type: riemann
) is stable for both inflow and outflow, so can be used in areas that have recirculation and lateral boundaries in which the flow fluctuates.
The simpler bc_outflow
variant, outflow_type: pressure
, requires that the flow be a strict outflow (or the problem becomes ill-posed and the solver will diverge).
In our experience, riemann
is slightly less reflective but produces similar flows in cases of strict outflow.
The pressure
variant is retained to facilitate comparison with other codes, such as PHASTA-C, but we recommend riemann
for general use.
Periodicity¶
PETSc provides two ways to specify periodicity:
Topological periodicity, in which the donor and receiver dofs are the same, obtained using:
dm_plex:
shape: box
box_faces: 10,12,4
box_bd: none,none,periodic
The coordinates for such cases are stored as a new field with special cell-based indexing to enable wrapping through the boundary. This choice of coordinates prevents evaluating boundary integrals that cross the periodicity, such as for the outflow Riemann problem in the presence of spanwise periodicity.
Isoperiodicity, in which the donor and receiver dofs are distinct in local vectors. This is obtained using
zbox
, as in:
dm_plex:
shape: zbox
box_faces: 10,12,4
box_bd: none,none,periodic
Isoperiodicity enables standard boundary integrals, and is recommended for general use.
At the time of this writing, it only supports one direction of periodicity.
The zbox
method uses Z-ordering to construct the mesh in parallel and provide an adequate initial partition, which makes it higher performance and avoids needing a partitioning package.
Newtonian viscosity, Ideal Gas¶
For the Density Current, Channel, and Blasius problems, the following common command-line options are available:
Option |
Description |
Default value |
Unit |
---|---|---|---|
|
Stabilization method ( |
|
|
|
Stabilization constant, \(c_\tau\) |
|
|
|
Stabilization time constant, \(C_t\) |
|
|
|
Stabilization viscous constant, \(C_v\) |
|
|
|
Stabilization continuity constant, \(C_c\) |
|
|
|
Stabilization momentum constant, \(C_m\) |
|
|
|
Stabilization energy constant, \(C_E\) |
|
|
|
Method used to calculate divergence of diffusive flux projection ( |
|
|
|
Control the KSP object for the projection of the divergence of diffusive flux |
N/A |
|
|
Heat capacity at constant volume |
|
|
|
Heat capacity at constant pressure |
|
|
|
Gravitational acceleration vector |
|
|
|
Stokes hypothesis second viscosity coefficient |
|
|
|
Shear dynamic viscosity coefficient |
|
|
|
Thermal conductivity |
|
|
|
State variables to solve solution with. |
|
string |