radiation_power
RadpwrData
dataclass
DataClass which holds the output of the function radpwr
Source code in process/models/physics/radiation_power.py
12 13 14 15 16 17 18 19 | |
pden_plasma_sync_mw
instance-attribute
pden_plasma_core_rad_mw
instance-attribute
pden_plasma_outer_rad_mw
instance-attribute
pden_plasma_rad_mw
instance-attribute
calculate_radiation_powers(plasma_profile, nd_plasma_electron_on_axis, rminor, b_plasma_toroidal_on_axis, aspect, alphan, alphat, tbeta, temp_plasma_electron_on_axis_kev, f_sync_reflect, rmajor, kappa, vol_plasma)
Calculate the radiation powers in MW/m^3 by calling relevant routines.
This function computes the radiation power densities for the plasma, including impurity radiation and synchrotron radiation. It returns a dataclass containing the calculated radiation power densities.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
plasma_profile
|
PlasmaProfile
|
The parameterized temperature and density profiles of the plasma. |
required |
nd_plasma_electron_on_axis
|
float
|
Central electron density (m^-3). |
required |
rminor
|
float
|
Minor radius of the plasma (m). |
required |
b_plasma_toroidal_on_axis
|
float
|
Toroidal magnetic field (T). |
required |
aspect
|
float
|
Aspect ratio of the plasma. |
required |
alphan
|
float
|
Alpha parameter for density profile. |
required |
alphat
|
float
|
Alpha parameter for temperature profile. |
required |
tbeta
|
float
|
Beta parameter for temperature profile. |
required |
temp_plasma_electron_on_axis_kev
|
float
|
Central electron temperature (keV). |
required |
f_sync_reflect
|
float
|
Fraction of synchrotron radiation reflected. |
required |
rmajor
|
float
|
Major radius of the plasma (m). |
required |
kappa
|
float
|
Elongation of the plasma. |
required |
vol_plasma
|
float
|
Plasma volume (m^3). |
required |
Returns:
| Type | Description |
|---|---|
RadpwrData
|
A dataclass containing the following radiation power densities: - pden_plasma_sync_mw (float): Synchrotron radiation power per unit volume (MW/m^3). - pden_plasma_core_rad_mw (float): Total core radiation power per unit volume (MW/m^3). - pden_plasma_outer_rad_mw (float): Edge radiation power per unit volume (MW/m^3). - pden_plasma_rad_mw (float): Total radiation power per unit volume (MW/m^3). |
References
- F. Albajar, J. Johner, and G. Granata, “Improved calculation of synchrotron radiation losses in realistic tokamak plasmas,”
Nuclear Fusion, vol. 41, no. 6, pp. 665-678, Jun. 2001, doi: https://doi.org/10.1088/0029-5515/41/6/301.
- I. Fidone, G Giruzzi, and G. Granata, “Synchrotron radiation loss in tokamaks of arbitrary geometry,”
Nuclear Fusion, vol. 41, no. 12, pp. 1755-1758, Dec. 2001, doi: https://doi.org/10.1088/0029-5515/41/12/102.
Source code in process/models/physics/radiation_power.py
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 | |
psync_albajar_fidone(nd_plasma_electron_on_axis, rminor, b_plasma_toroidal_on_axis, aspect, alphan, alphat, tbeta, temp_plasma_electron_on_axis_kev, f_sync_reflect, rmajor, kappa, vol_plasma)
Calculate the synchrotron radiation power in MW/m^3.
This function computes the synchrotron radiation power density for the plasma based on the plasma shape, major and minor radii, electron density, and temperature profiles.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
nd_plasma_electron_on_axis
|
float
|
Central electron density (m^-3). |
required |
rminor
|
float
|
Minor radius of the plasma (m). |
required |
b_plasma_toroidal_on_axis
|
float
|
Toroidal magnetic field (T). |
required |
aspect
|
float
|
Aspect ratio of the plasma. |
required |
alphan
|
float
|
Alpha parameter for density profile. |
required |
alphat
|
float
|
Alpha parameter for temperature profile. |
required |
tbeta
|
float
|
Beta parameter for temperature profile. |
required |
temp_plasma_electron_on_axis_kev
|
float
|
Central electron temperature (keV). |
required |
f_sync_reflect
|
float
|
Fraction of synchrotron radiation reflected. |
required |
rmajor
|
float
|
Major radius of the plasma (m). |
required |
kappa
|
float
|
Elongation of the plasma. |
required |
vol_plasma
|
float
|
Plasma volume (m^3). |
required |
Returns:
| Type | Description |
|---|---|
float
|
Synchrotron radiation power per unit volume (MW/m^3). |
References
-
F. Albajar, J. Johner, and G. Granata, “Improved calculation of synchrotron radiation losses in realistic tokamak plasmas,” Nuclear Fusion, vol. 41, no. 6, pp. 665-678, Jun. 2001, doi: https://doi.org/10.1088/0029-5515/41/6/301.
-
I. Fidone, G Giruzzi, and G. Granata, “Synchrotron radiation loss in tokamaks of arbitrary geometry,” Nuclear Fusion, vol. 41, no. 12, pp. 1755-1758, Dec. 2001, doi: https://doi.org/10.1088/0029-5515/41/12/102.
Source code in process/models/physics/radiation_power.py
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 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 | |