Source code for wolfgpu.defaults

"""
This file contains defaults values that are used throughout the program. Most of
the defaults values are local to specific parts of the program btu sometimes,
some of them are reused across it. The latter comes down here.

The existence of this file is also justified by the need to avoid circular
dependencies in python's imports !
"""

[docs] DEFAULT_FROUDE_BC_TOLERANCE = 1.2
""" Default value for tge Froude tolerance in the Froude-limited height boundary condition. """
[docs] MAXIMUM_TIME_STEP = 1.0
""" Maximum duration for a time step in the simulation. The value is P.A.'s default (when no infiltration present). """