Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Docs/source/ode_integrators.rst
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,11 @@ constraint on the intermediate states during the integration.
The default is ``1.e-30``.

* ``integrator.do_species_clip`` : this enforces that the mass fractions
all in $[\mathtt{SMALL\_X\_SAFE}, 1.0]$.
all in $[\mathtt{SMALL\_X\_SAFE}, 1.0]$ before calling the network righthand
side function.

This is enabled by default.
This is off by default. Turning this on can sometimes make the integrator
work a lot harder.



Expand Down
2 changes: 1 addition & 1 deletion integration/_parameters
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ retry_atol_enuc real -1

# in the clean_state process, do we clip the species such that they
# are in [0, 1]?
do_species_clip bool 1
do_species_clip bool 0

# flag for turning on the use of number densities for all species
use_number_densities bool 0
Expand Down
Loading