Skip to content

Commit 2f18553

Browse files
Add p_hcd_icrh_electric_mw to current drive data structure (#4125)
* remove variable reference that does not exist * Revert "remove variable reference that does not exist" This reverts commit 507432b. * Add missing variable in current_drive_variables.py
1 parent 67340b1 commit 2f18553

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

process/data_structure/current_drive_variables.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@
111111
p_hcd_ebw_electric_mw: float = None
112112
"""Electron bernstein wall plug power (MW)"""
113113

114+
p_hcd_icrh_electric_mw: float = None
115+
"""Ion cyclotron wall plug power (MW)"""
114116

115117
eta_cd_hcd_primary: float = None
116118
"""Current drive efficiency of primary HCD system (A/W)"""
@@ -405,6 +407,7 @@ def init_current_drive_variables():
405407
p_hcd_ecrh_injected_total_mw, \
406408
p_ebw_injected_mw, \
407409
p_hcd_ecrh_electric_mw, \
410+
p_hcd_icrh_electric_mw, \
408411
p_hcd_ebw_electric_mw, \
409412
eta_cd_hcd_primary, \
410413
eta_cd_hcd_secondary, \
@@ -535,6 +538,7 @@ def init_current_drive_variables():
535538
eta_cd_hcd_secondary = 0.0
536539
p_ebw_injected_mw = 0.0
537540
p_hcd_ecrh_electric_mw = 0.0
541+
p_hcd_icrh_electric_mw = 0.0
538542
p_hcd_ebw_electric_mw = 0.0
539543
c_hcd_primary_driven = 0.0
540544
c_hcd_secondary_driven = 0.0

0 commit comments

Comments
 (0)