polykin.kinetics.emulsion¤
kentry_diffusion ¤
kentry_diffusion(
r: float, Dw: float, f: float = 1.0
) -> float
Radical entry coefficient assuming irreversible diffusion-controlled entry.
The entry coefficient is given by:
where \(r\) is the particle radius, \(D_w\) is the diffusion coefficient of the radical in the aqueous phase, \(N_A\) is Avogadro's number, and \(f\) is an efficiency factor.
| PARAMETER | DESCRIPTION |
|---|---|
r
|
Particle radius [m].
TYPE:
|
Dw
|
Diffusion coefficient of the radical in the aqueous phase [m²/s].
TYPE:
|
f
|
Efficiency factor.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
float
|
Radical entry coefficient [m³/(mol·s)]. |
See Also
kentry_diffusion_reversible: Related method assuming reversible diffusion-controlled entry.
Examples:
Evaluate the radical entry coefficient for a particle radius of 100 nm and a diffusion coefficient of 1e-9 m²/s.
>>> from polykin.kinetics import kentry_diffusion
>>> ke = kentry_diffusion(r=100e-9, Dw=1e-9)
>>> print(f"ke = {ke:.2e} m³/(mol·s)")
ke = 7.57e+08 m³/(mol·s)
Source code in src/polykin/kinetics/emulsion/entry.py
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | |