Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion electrolyzer/cell.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def calc_open_circuit_voltage(self, temperature):
"""Calculates open circuit voltage using the Nernst equation."""
T_K = convert_temperature([temperature], "C", "K")[0]
E_rev_0 = self.calc_reversible_voltage()
p_anode = P_ATMO # (Pa) assumed atmo
p_anode = 30 * P_ATMO # (Pa) assumed atmo
p_cathode = P_ATMO

# noqa: E501
Expand Down
Loading