Network
jaff.core.network.Network
The Network class is the most important class in JAFF. It reads a reaction network file, auto-detects its format, validates mass and charge conservation, and assembles the full species and reaction catalogues along with stoichiometry matrices. It also handles optional radiation transport, photochemistry cross-sections, and auxiliary function files.
Constructor
Network(fname, config=None, errors=False, label=None, funcfile=True, replace_nH=True, rad_bands=[], rad_powerlaw_index=0, rad_energy_density=False, c=constants.c.cgs.value)
Parameters
- fname : str or Path
- Path to a network file, or the name of a built-in network (a sub-directory of
networks/containing a single.jetfile). A built-in network name wins over a same-named path on disk. Supported formats: KIDA, UDFA, PRIZMO, KROME, UCLCHEM, a combination of the above and the.jafffile (Refer to to_jaff for more details). - config : str, Path, or None, optional
- Path to a TOML configuration file. When
None(default), JAFF looks forjaff.tomlin the network file's directory. - errors : bool, optional
- Exit on validation errors. Default
False. - label : str or None, optional
- Network identifier. Defaults to the file stem.
- funcfile : bool, str, or Path, optional
- Path to .jfunc auxiliary functions file.
True(default) scans the network directory;Falseskips. - replace_nH : bool, optional
- Replace nH/nHe symbols with species density sums. Default
True. - rad_bands : list, optional
- Radiation band boundaries enabling radiation transport. Default
[]. - rad_powerlaw_index : int or float, optional
- Spectral power-law index. Default
0. - rad_energy_density : bool, optional
- Interpret radiation as energy density. Default
False. - c : float, optional
- Speed of light in CGS. Default
constants.c.cgs.value.
Raises
- FileNotFoundError
- If
fnamedoes not exist.
Attributes
| Attribute | Type | Description |
|---|---|---|
label |
str |
Human-readable network identifier; defaults to the source file stem |
filename |
Path |
Resolved absolute path to the source network file |
spec |
NetworkSpec |
Normalized construction parameters (resolved fname, parsed config dict, funcfile, aux_funcs, ...) |
species |
Species |
Ordered catalogue of the network's core (real) species; special pseudo-species (_PHOTON, _CR, ...) are excluded |
reactions |
Reactions |
Ordered catalogue of all reactions in the network |
elements |
Elements |
Element catalogue derived from all species; used for composition matrices |
reactant_matrix |
ndarray |
Shape (n_reactions, n_species) stoichiometry matrix for reactants |
product_matrix |
ndarray |
Shape (n_reactions, n_species) stoichiometry matrix for products |
mass_dict |
dict |
Mapping from element symbol to mass properties, used for conservation checks |
dEdt_chem |
sympy.Basic |
Total chemical heating/cooling rate (erg cm⁻³ s⁻¹), accumulated over all reactions |
dEdt_other |
sympy.Basic |
Additional heating/cooling rate from the heatingcoolingrate auxiliary function, if present |
dRad_dt_extra |
sympy.Basic |
Extra radiation moment source terms from @function definitions |
radiation |
Radiation or None |
Radiation field object; None when no radiation bands are specified |
ndens |
sympy.MatrixSymbol |
Symbolic nden column vector of species number densities, shape (n_species, 1); nden[i] is species i |
ntot |
sympy.Expr |
Total number density, Σ_i nden[i] over all species |
rho |
sympy.Expr |
Mass density, Σ_i m_i · nden[i]; species with unset mass contribute 0 |