Skip to content
Merged
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
4 changes: 4 additions & 0 deletions process/data_structure/current_drive_variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@
p_hcd_ebw_electric_mw: float = None
"""Electron bernstein wall plug power (MW)"""

p_hcd_icrh_electric_mw: float = None
"""Ion cyclotron wall plug power (MW)"""

eta_cd_hcd_primary: float = None
"""Current drive efficiency of primary HCD system (A/W)"""
Expand Down Expand Up @@ -405,6 +407,7 @@ def init_current_drive_variables():
p_hcd_ecrh_injected_total_mw, \
p_ebw_injected_mw, \
p_hcd_ecrh_electric_mw, \
p_hcd_icrh_electric_mw, \
p_hcd_ebw_electric_mw, \
eta_cd_hcd_primary, \
eta_cd_hcd_secondary, \
Expand Down Expand Up @@ -535,6 +538,7 @@ def init_current_drive_variables():
eta_cd_hcd_secondary = 0.0
p_ebw_injected_mw = 0.0
p_hcd_ecrh_electric_mw = 0.0
p_hcd_icrh_electric_mw = 0.0
p_hcd_ebw_electric_mw = 0.0
c_hcd_primary_driven = 0.0
c_hcd_secondary_driven = 0.0
Expand Down
Loading