import math
from .commons import Q
# Physical and mathematical constants.
[docs]R = Q(8.31446261815324e-3, "kJ / mol / K")
"""The gas constant."""
[docs]F = Q(96.48533212, "kC / mol")
"""The Faraday constant."""
"""The natural logarithm of 10."""
# Default parameters.
"""Default ionic strength of a compartment."""
"""Default pH of a compartment."""
"""Default pMg of a compartment."""
"""Default electrostatic potential of a compartment."""
[docs]DEFAULT_T = Q(298.15, "K")
"""Default temperature of the system."""
# Default numerical settings.
[docs]DEFAULT_RMSE = Q(3000, "kJ/mol")
"""Default uncertainty to use for unknown compounds and chemical groups."""
[docs]DEFAULT_SPONTANEOUS_GENES = {"s0001", "SPONTANEOUS"}
"""Default list of genes that denote spontaneous reactions."""