Mean Free Path¶
Minimal reproducible cell to verify execution.
In [ ]:
Copied!
import particula as par
mean_free_path = par.gas.get_molecule_mean_free_path(
molar_mass=28.97e-3,
temperature=298.15,
pressure=101325,
dynamic_viscosity=par.gas.get_dynamic_viscosity(temperature=298.15),
)
print(mean_free_path)
import particula as par
mean_free_path = par.gas.get_molecule_mean_free_path(
molar_mass=28.97e-3,
temperature=298.15,
pressure=101325,
dynamic_viscosity=par.gas.get_dynamic_viscosity(temperature=298.15),
)
print(mean_free_path)