Skip to content

Commit

Permalink
Deployed e23c3fb with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gassraphael committed Jan 20, 2025
1 parent 3e32e68 commit ae4a7f1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 2 additions & 4 deletions functions/model/cell_voltage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -299,11 +299,9 @@ <h2 id="model.cell_voltage.calculate_cell_voltage" class="doc doc-heading">
Rmem = Hmem / (0.1879 * np.exp(1268 * (1 / 303.15 - 1 / Tfc)))
# The proton resistance at the cathode catalyst layer : Rccl
if lambda_ccl &gt;= 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².

Expand Down
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ <h1 id="major-updates">Major updates</h1>
<ul>
<li>V1.0 - 2024.09.05 - This version of AlphaPEM corresponds to the one developed during Raphaël Gass's PhD from 2021 to 2024.</li>
</ul>
<h1 id="work-in-progress">Work in progress</h1>
<ul>
<li>The polarization curves from the EH-31 fuel cells, provided by default, are no longer calibrated due to recent modifications made to the equations. A calibration of the indeterminate parameters will be performed in the future to correct this issue.</li>
</ul>
<h1 id="related-publications">Related publications</h1>
<p>The detailed model description and simulation results can be found in the following articles and thesis.</p>
<ul>
Expand Down Expand Up @@ -254,5 +258,5 @@ <h1 id="related-publications">Related publications</h1>

<!--
MkDocs version : 1.6.1
Build Date UTC : 2025-01-06 21:12:33.553970+00:00
Build Date UTC : 2025-01-20 12:14:34.206467+00:00
-->
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

Binary file modified sitemap.xml.gz
Binary file not shown.

0 comments on commit ae4a7f1

Please sign in to comment.