Electrochemical Properties
membrane_toolkit.core.potential.apparent_permselectivity(E_mem, E_ideal, t_counter=0.5)
¶
Calculate the apparent permselectivity of a membrane from the membrane potential.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
E_mem |
float |
Electrical potential across the membrane [V] |
required |
E_ideal |
float |
Electrical potential across an ideally-selective membrane, usually calculated via the Nernst equation [V] |
required |
t_counter |
float |
bulk solution transport number of the counter ion. [dimensionless]. Must be between 0 and 1. |
0.5 |
Returns:
Type | Description |
---|---|
float |
float: Apparent permselectivity of the membrane, [dimensionless] |
Notes
Apparent permselectivity ranges from 0 to 1, where 0 represents a non-selective membrane and 1 represents a perfectly-selective membrane. Apparent permselectivity is calculated from the membrane potential and differs from the "true" permselectivity. The equation is:
References
Kingsbury, R. S.; Coronell, O. Modelling and validation of concentration dependence of ion exchange membrane permselectivity: significance of convection and Manning’s counter-ion condensation theory. Submitted.
Source code in membrane_toolkit/core/potential.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
|
membrane_toolkit.core.potential.nernst_potential(a0, aL, z_ct=1, temperature=25)
¶
Calculate the ideal membrane or interface potential according to the Nernst equation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
a0 |
float |
Activity (or concentration) of the electrolyte on the left (x=0) side of the membrane. The units of a0 and aL must match. |
required |
aL |
float |
Activity (or concentration) of the electrolyte on the left (x=0) side of the membrane. The units of a0 and aL must match. |
required |
z_ct |
int |
signed charge of the counter-ion species. Default = +1 |
1 |
temperature |
float |
Temperature of the electrolyte [C]. Default = 25 C |
25 |
Returns:
Type | Description |
---|---|
float |
The potential [V] of the left (x=0) interface with respect to the right (x=L) interface, according to the Nernst equation. |
Notes
The Nernst equation gives the electrical potential across an ideally-selective membrane separating two electrolyte solutions.
where R (8.314 J/mol K) is the ideal gas constant and F (96485 C/mol) is the Faraday constant.
References
Bard, A. J.; Faulkner, L. R. Electrochemical Methods: Fundamentals and Applications, 2nd ed.; John Wiley & Sons, 2001.
Helfferich, F. Ion Exchange; McGraw-Hill: New York, 1962.
Winger, A.; Bodamer, G.; Kunin, R. Some electrochemical properties of new synthetic ion exchange memebranes. J. Electrochem. Soc 1953, 100 (4), 178–184.
Source code in membrane_toolkit/core/potential.py
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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
|