diff --git a/functions/model/cell_voltage/index.html b/functions/model/cell_voltage/index.html index f8a6514..9ec79be 100644 --- a/functions/model/cell_voltage/index.html +++ b/functions/model/cell_voltage/index.html @@ -299,11 +299,9 @@

Rmem = Hmem / (0.1879 * np.exp(1268 * (1 / 303.15 - 1 / Tfc))) # The proton resistance at the cathode catalyst layer : Rccl if lambda_ccl >= 1: - Rccl = 1 / 3 * 1 / (epsilon_mc / tau) * \ - Hcl / ((0.5139 * lambda_ccl - 0.326) * np.exp(1268 * (1 / 303.15 - 1 / Tfc))) + Rccl = Hcl / ((epsilon_mc ** tau) * (0.5139 * lambda_ccl - 0.326) * np.exp(1268 * (1 / 303.15 - 1 / Tfc))) else: - Rccl = 1 / 3 * 1 / (epsilon_mc / tau) * \ - Hcl / (0.1879 * np.exp(1268 * (1 / 303.15 - 1 / Tfc))) + Rccl = Hcl / ((epsilon_mc ** tau) * 0.1879 * np.exp(1268 * (1 / 303.15 - 1 / Tfc))) # The total proton resistance Rp = Rmem + Rccl # its value is around [4-7]e-6 ohm.m². diff --git a/index.html b/index.html index 227432a..2410ccb 100644 --- a/index.html +++ b/index.html @@ -167,6 +167,10 @@

Major updates

+

Work in progress

+

Related publications

The detailed model description and simulation results can be found in the following articles and thesis.