ADocumentation Index
Fetch the complete documentation index at: https://docs.ionworks.com/llms.txt
Use this file to discover all available pages before exploring further.
DirectEntry populates parameter values without doing any calculation or fitting — useful for dropping a coherent literature parameter set into a pipeline. ionworkspipeline provides four direct entries in iwp.direct_entries for the four electrolyte transport properties needed by a binary-electrolyte DFN model.
Available entries
constant_electrolyte
Just sets the initial salt concentration; everything else is left to defaults or other entries.
nyman_electrolyte
Full set for LiPF in EC:EMC from Nyman et al. 2008. Concentration-dependent and , constant and . Isothermal.
landesfeind_electrolyte
Full set with concentration and temperature dependence for three solvent systems (
EC:DMC (1:1), EC:EMC (3:7), EMC:FEC (19:1)) from Landesfeind & Gasteiger 2019.arrhenius_electrolyte_*
arrhenius_electrolyte_diffusivity and arrhenius_electrolyte_conductivity wrap a reference or in an Arrhenius temperature factor. Useful when you have isothermal data and need to bolt on -dependence.landesfeind_electrolyte looks like:
DirectEntry populates the initial concentration plus all four transport-property functions and the coefficients those functions reference. Plugging it into a pipeline is enough to fully specify the electrolyte block of a DFN model.
Fitting your own coefficients
The six conductivity coefficients (and the diffusivity, thermodynamic-factor and transference-number coefficients) are stored aspybamm.Parameters inside landesfeind_electrolyte precisely so they can be replaced with fit unknowns. To fit them, override the relevant parameter names with iwp.Parameter in the data-fit parameters dict and run a pipeline that includes the direct entry — the published values act as the base and the optimizer searches over the overridden ones.
The Landesfeind electrolyte fit notebook walks through this for the conductivity coefficients on a single isotherm: it loads digitized paper data alongside the published equation (no fit needed — the values come straight from the direct entry) and re-fits the identifiable subset of coefficients to a synthetic noisy dataset.
For the physics behind the four transport properties and how they are measured experimentally, see Electrolyte transport properties.