Skip to content

power_variables

qmisc = None module-attribute

qac = None module-attribute

qcl = None module-attribute

qss = None module-attribute

p_shld_coolant_pump_elec_mw = None module-attribute

p_div_coolant_pump_elec_mw = None module-attribute

p_coolant_pump_total_mw = None module-attribute

p_fw_blkt_heat_deposited_mw = None module-attribute

p_fw_blkt_coolant_pump_elec_mw = None module-attribute

p_blkt_breeder_pump_elec_mw = None module-attribute

p_div_heat_deposited_mw = None module-attribute

p_fw_heat_deposited_mw = None module-attribute

p_blkt_heat_deposited_mw = None module-attribute

p_blkt_liquid_breeder_heat_deposited_mw = None module-attribute

p_shld_heat_deposited_mw = None module-attribute

p_cp_coolant_pump_elec_mw = None module-attribute

p_plant_core_systems_elec_mw = None module-attribute

e_plant_net_electric_pulse_mj = None module-attribute

Net electric energy output per pulse (MJ)

e_plant_net_electric_pulse_kwh = None module-attribute

Net electric energy output per pulse (kWh)

f_p_div_primary_heat = None module-attribute

delta_eta = None module-attribute

i_div_primary_heat = None module-attribute

p_turbine_loss_mw = None module-attribute

p_hcd_electric_total_profile_mw = None module-attribute

Profile of total HCD electric power (MW) over pulse

p_tf_electric_supplies_profile_mw = None module-attribute

Profile of total TF coil electric power (MW) over pulse

p_pf_electric_supplies_profile_mw = None module-attribute

Profile of total PF coil electric power (MW) over pulse

p_coolant_pump_elec_total_profile_mw = None module-attribute

Profile of total coolant pump electric power (MW) over pulse

vachtmw_profile_mw = None module-attribute

Profile of total active vacuum pump power (MW) over pulse

p_tritium_plant_electric_profile_mw = None module-attribute

Profile of total tritium plant electric power (MW) over pulse

p_cryo_plant_electric_profile_mw = None module-attribute

Profile of total cryo plant electric power (MW) over pulse

p_plant_electric_base_total__profile_mw = None module-attribute

Profile of total plant electric base power (MW) over pulse

p_plant_electric_gross_profile_mw = None module-attribute

Profile of total plant electric gross power (MW) over pulse

p_plant_electric_net_profile_mw = None module-attribute

Profile of total plant electric net power (MW) over pulse

p_fusion_total_profile_mw = None module-attribute

Profile of total fusion power (MW) over pulse

init_power_variables()

Source code in process/data_structure/power_variables.py
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
def init_power_variables():
    global qmisc
    qmisc = 0.0

    global qac
    qac = 0.0

    global qcl
    qcl = 0.0

    global qss
    qss = 0.0

    global p_shld_coolant_pump_elec_mw
    p_shld_coolant_pump_elec_mw = 0.0

    global p_div_coolant_pump_elec_mw
    p_div_coolant_pump_elec_mw = 0.0

    global p_coolant_pump_total_mw
    p_coolant_pump_total_mw = 0.0

    global p_fw_blkt_heat_deposited_mw
    p_fw_blkt_heat_deposited_mw = 0.0

    global p_fw_blkt_coolant_pump_elec_mw
    p_fw_blkt_coolant_pump_elec_mw = 0.0

    global p_blkt_breeder_pump_elec_mw
    p_blkt_breeder_pump_elec_mw = 0.0

    global p_div_heat_deposited_mw
    p_div_heat_deposited_mw = 0.0

    global p_fw_heat_deposited_mw
    p_fw_heat_deposited_mw = 0.0

    global p_blkt_heat_deposited_mw
    p_blkt_heat_deposited_mw = 0.0

    global p_blkt_liquid_breeder_heat_deposited_mw
    p_blkt_liquid_breeder_heat_deposited_mw = 0.0

    global p_shld_heat_deposited_mw
    p_shld_heat_deposited_mw = 0.0

    global p_cp_coolant_pump_elec_mw
    p_cp_coolant_pump_elec_mw = 0.0

    global p_plant_core_systems_elec_mw
    p_plant_core_systems_elec_mw = 0.0

    global e_plant_net_electric_pulse_mj
    e_plant_net_electric_pulse_mj = 0.0

    global e_plant_net_electric_pulse_kwh
    e_plant_net_electric_pulse_kwh = 0.0

    global f_p_div_primary_heat
    f_p_div_primary_heat = 0.0

    global delta_eta
    delta_eta = 0.0

    global i_div_primary_heat
    i_div_primary_heat = 0.0

    global p_turbine_loss_mw
    p_turbine_loss_mw = 0.0

    global p_hcd_electric_total_profile_mw
    p_hcd_electric_total_profile_mw = []