quench
Module to calculate quench protection limits for stellarator coils
calculate_quench_protection(coilcurrent)
Calculate quench protecion limits for stellarator coils Includes calculation of the vacuum vessel force density, quench protection current density and max dump voltage during quench
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
coilcurrent
|
Total coils current (MA) |
required |
Source code in process/models/stellarator/coils/quench.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | |
calculate_vv_max_force_density_from_W7X_scaling(rad_vv)
Actual VV force density from scaling [MN/m^3] Based on reference values from W-7X.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rad_vv
|
float
|
|
required |
Returns:
| Type | Description |
|---|---|
float
|
|
Source code in process/models/stellarator/coils/quench.py
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 | |
max_dump_voltage(tf_energy_stored, t_dump, current)
Max volatage during fast discharge of TF coil (V)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tf_energy_stored
|
float
|
Energy stored in one TF coil (J) |
required |
t_dump
|
float
|
Dump time (sec) |
required |
current
|
float
|
Operating current (A) |
required |
Source code in process/models/stellarator/coils/quench.py
148 149 150 151 152 153 154 155 156 157 158 159 160 161 | |
calculate_quench_protection_current_density(tau_quench, t_detect, f_cu, f_cond, temp, a_cable, a_turn)
Calculates the current density limited by the protection limit.
Simplified 0-D adiabatic heat balance "hotspot criterion" model.
This is slightly diffrent that tokamak version (also diffrent from the stellarator paper). We skip the superconduc6tor contribution (this should be more conservative in theory).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tau_quench
|
Quench time (s) |
required | |
t_detect
|
Detection time (s) |
required | |
f_cu
|
Copper fraction |
required | |
f_cond
|
Conductor fraction |
required | |
temp
|
peak helium coolant temperature in TF coils and PF coils (K) |
required | |
a_cable
|
Cable space area (per turn) [m2] (Includes the area of voids and central helium channel) |
required | |
a_turn
|
TF coil turn cross section area [m2] |
required |
Source code in process/models/stellarator/coils/quench.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 | |