impurity_radiation
Module for impurity radiation calculations and data handling.
ImpurityDataHeader
dataclass
Represents a header or metadata section of an impurity data file.
If this is a header for some section of data then the data section will be populated with the array of data for which this is a header of.
Source code in process/models/physics/impurity_radiation.py
194 195 196 197 198 199 200 201 202 203 204 205 | |
content
instance-attribute
data = None
class-attribute
instance-attribute
ImpurityRadiation
Calculates the impurity radiation losses for given temperature and density profiles. The considers the total impurity radiation from the core (pden_impurity_core_rad_total_mw) and total impurity radiation (pden_impurity_rad_total_mw) [MW/(m^3)]. The class is used to sum the impurity radiation loss from each impurity element to find the total impurity radiation loss.
Source code in process/models/physics/impurity_radiation.py
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 | |
plasma_profile = plasma_profile
instance-attribute
rho = plasma_profile.neprofile.profile_x
instance-attribute
rhodx = plasma_profile.neprofile.profile_dx
instance-attribute
imp = np.nonzero(impurity_radiation_module.f_nd_impurity_electron_array > 1e-30)[0]
instance-attribute
pimp_profile = np.zeros(self.plasma_profile.profile_size)
instance-attribute
pden_impurity_rad_profile = np.zeros(self.plasma_profile.profile_size)
instance-attribute
pden_impurity_core_rad_profile = np.zeros(self.plasma_profile.profile_size)
instance-attribute
pden_impurity_rad_total_mw = 0.0
instance-attribute
pden_impurity_core_rad_total_mw = 0.0
instance-attribute
map_imprad_profile()
Map imprad_profile() over each impurity element index.
Source code in process/models/physics/impurity_radiation.py
603 604 605 | |
imprad_profile(imp_element_index)
Calculates the impurity radiation losses for given temperature and density profiles.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
imp_element_index
|
Int
|
Index used to access different impurity radiation elements |
required |
References
Bremsstrahlung equation from Johner, L(z) data (coronal equilibrium)
from Marco Sertoli, Asdex-U, ref. Kallenbach et al.
Johner, Fusion Science and Technology 59 (2011), pp 308-349
Sertoli, private communication
Kallenbach et al., Plasma Phys. Control. Fus. 55(2013) 124041
Source code in process/models/physics/impurity_radiation.py
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 | |
calculate_radiation_loss_profiles()
Calculate the Bremsstrahlung (radb), line radiation (radl), total impurity radiation from the core (pden_impurity_core_rad_total_mw) and total impurity radiation (pden_impurity_rad_total_mw). Update the stored arrays with the values.
Source code in process/models/physics/impurity_radiation.py
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 | |
integrate_radiation_loss_profiles()
Integrate the radiation loss profiles using the Simpson rule. Store the total values for each aspect of impurity radiation loss.
Source code in process/models/physics/impurity_radiation.py
655 656 657 658 659 660 661 662 663 664 665 666 | |
calculate_imprad()
Call the map function to calculate impurity radiation parameters for each impurity element. Calculate the radiation loss profiles, and integrate them to find the total values for radiation loss.
Source code in process/models/physics/impurity_radiation.py
668 669 670 671 672 673 674 675 | |
initialise_imprad()
Initialises the impurity radiation data structure
This routine initialises the impurity radiation data.
Source code in process/models/physics/impurity_radiation.py
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 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 155 156 157 158 159 160 161 162 163 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 | |
read_impurity_file(impurity_file)
Reads an impurity data file and returns a list of ImpurityDataHeader objects representing the headers and associated data in the file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
impurity_file
|
Path
|
Path to the impurity data file to read. |
required |
Returns:
| Type | Description |
|---|---|
list[ImpurityDataHeader]
|
A list of ImpurityDataHeader objects representing the headers and associated data in the impurity data file. |
Source code in process/models/physics/impurity_radiation.py
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | |
init_imp_element(n_species_index, name_label, z, m_species_amu, f_nd_species_electron, len_tab, error)
Initialise the impurity radiation data for a species.
This routine initialises the impurity radiation data structure for a given impurity species. The Lz versus temperature data are read in from file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_species_index
|
int
|
Position of species in impurity array |
required |
name_label
|
str
|
Species name |
required |
z
|
int
|
Species charge number |
required |
m_species_amu
|
float
|
Species atomic mass (amu) |
required |
f_nd_species_electron
|
float
|
Number density / electron density |
required |
len_tab
|
int
|
Length of temperature and Lz tables |
required |
error
|
int
|
Error flag; 0 = okay, 1 = missing impurity data |
required |
Raises:
| Type | Description |
|---|---|
ProcessValueError
|
If illegal impurity number is provided |
FileNotFoundError
|
If impurity data files are missing |
ProcessError
|
If required data cannot be located in files |
Source code in process/models/physics/impurity_radiation.py
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 | |
z2index(zimp)
Finds the index of the impurity element with the given charge number.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
zimp
|
int
|
Charge number of the impurity element |
required |
Returns:
| Type | Description |
|---|---|
int
|
Index of the impurity element in the impurity array |
Raises:
| Type | Description |
|---|---|
ProcessValueError
|
If the element with the given charge is not found in the impurity array |
Source code in process/models/physics/impurity_radiation.py
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 | |
fradcore(rho, radius_plasma_core_norm, f_p_plasma_core_rad_reduction)
Finds the fraction of radiation from the core that is subtracted in impurity radiation model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rho
|
array
|
normalised minor radius |
required |
radius_plasma_core_norm
|
float
|
normalised radius defining the 'core' region |
required |
f_p_plasma_core_rad_reduction
|
float
|
fraction of radiation from the core region |
required |
Returns:
| Type | Description |
|---|---|
array
|
fradcore - array filled with the f_p_plasma_core_rad_reduction |
Source code in process/models/physics/impurity_radiation.py
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 | |
zav_of_te(imp_element_index, teprofile)
Calculates electron temperature dependent average atomic number
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
imp_element_index
|
int
|
Impurity element index |
required |
teprofile
|
array
|
temperature profile |
required |
Returns:
| Type | Description |
|---|---|
array
|
zav_of_te - electron temperature dependent average atomic number |
Source code in process/models/physics/impurity_radiation.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 | |
pimpden(imp_element_index, neprofile, teprofile)
Calculates the impurity radiation density (W/m3)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
imp_element_index
|
int
|
Impurity element index |
required |
neprofile
|
array
|
electron density profile |
required |
teprofile
|
array
|
electron temperature profile |
required |
Returns:
| Type | Description |
|---|---|
array
|
pimpden - total impurity radiation density (W/m3) |
Source code in process/models/physics/impurity_radiation.py
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 | |
element2index(element)
Returns the index of the element in the impurity array with
a given name
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
element
|
str
|
|
required |
Raises:
| Type | Description |
|---|---|
ProcessValueError
|
If the element is not found in impurity_arr_label |
Source code in process/models/physics/impurity_radiation.py
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | |