Skip to content
Open
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
6 changes: 4 additions & 2 deletions process/costs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3026,7 +3026,8 @@ def coelc(self):
# Annual cost of operation and maintenance

annoam = cost_variables.ucoam[cost_variables.lsa - 1] * np.sqrt(
heat_transport_variables.p_plant_electric_net_mw / 1200.0e0
np.clip(heat_transport_variables.p_plant_electric_net_mw, 0, np.inf)
/ 1200.0e0
)

# Additional cost due to pulsed reactor thermal storage
Expand Down Expand Up @@ -3097,7 +3098,8 @@ def coelc(self):
# Annual cost of waste disposal

annwst = cost_variables.ucwst[cost_variables.lsa - 1] * np.sqrt(
heat_transport_variables.p_plant_electric_net_mw / 1200.0e0
np.clip(heat_transport_variables.p_plant_electric_net_mw, 0, np.inf)
/ 1200.0e0
)

# Cost of electricity due to waste disposal
Expand Down