Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# -*- coding: utf-8 -*-
""" Calculates the electrical mobility through Einstein-Smoluchowski relation.
Paraneters ---------- Dcoeff: float Diffusion coefficient charge: integer charge of the species Temp: float Absolute temperature kB: float (optional) Boltzmann's constant. Defaults to value with units (which requires the other parameters to have consistent units) elem_chg: float (optional) elementary charge. Defaults to value with units (which requires the other parameters to have consistent units)
Returns ------- Electrical mobility (with units unless kB/elem_chg are overridden) """ |