convolution
Convolution
Bases: NumericalConvolutionBase
Convolution class that combines analytical and numerical convolution methods to efficiently perform convolutions of ComponentCollections with ResolutionComponents.
Supports analytical convolution for pairs of analytical model components (DeltaFunction, Gaussian, Lorentzian, Voigt), while using numerical convolution for other components. If temperature is provided, detailed balance correction is applied to the sample model. In this case, all convolutions are handled numerically. Includes a setting to normalize the detailed balance correction. Includes optional upsampling and extended range to improve accuracy of the numerical convolutions. Also warns about numerical instabilities if peaks are very wide or very narrow.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample components to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution components to convolve with. |
required |
upsample_factor
|
int | None
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float | None
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit | None
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit | None
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool | None
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Attributes:
| Name | Type | Description |
|---|---|---|
energy |
Variable
|
1D array of energy values where the convolution is evaluated. |
sample_components |
ComponentCollection
|
The sample components to be convolved. |
resolution_components |
ComponentCollection
|
The resolution components to convolve with. |
energy_offset |
Parameter
|
Energy offset to apply to the energy values before convolution. |
upsample_factor |
int
|
The factor by which to upsample the input data before convolution. |
extension_factor |
float
|
The factor by which to extend the input data range before convolution. |
temperature |
Parameter | None
|
The temperature to use for detailed balance correction. |
temperature_unit |
str | Unit
|
The unit of the temperature parameter. |
energy_unit |
str | Unit
|
The unit of the energy. |
normalize_detailed_balance |
bool
|
Whether to normalize the detailed balance correction. |
Source code in src/easydynamics/convolution/convolution.py
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 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 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 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 | |
__init__(energy, sample_components, resolution_components, energy_offset=0.0, upsample_factor=5, extension_factor=0.2, temperature=None, temperature_unit='K', energy_unit='meV', normalize_detailed_balance=True)
Initialize the Convolution class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample components to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution components to convolve with. |
required |
upsample_factor
|
int | None
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float | None
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit | None
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit | None
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool | None
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Source code in src/easydynamics/convolution/convolution.py
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 | |
__setattr__(name, value)
Custom setattr to invalidate convolution plan on relevant attribute changes, and build a new plan.
The new plan is only built after initialization (when _reactions_enabled is True) to avoid issues during init.
Source code in src/easydynamics/convolution/convolution.py
326 327 328 329 330 331 332 333 334 335 336 337 338 339 | |
convolution()
Perform convolution using analytical convolutions where possible, and numerical convolutions for the remaining components.
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray: The convolved values evaluated at energy. |
Source code in src/easydynamics/convolution/convolution.py
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 | |
analytical_convolution
AnalyticalConvolution
Bases: ConvolutionBase
Analytical convolution of a ModelComponent or ComponentCollection with a ResolutionModel.
Possible analytical convolutions are any combination of delta functions, Gaussians, Lorentzians and Voigt profiles.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
None
|
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
None
|
energy_offset
|
Numeric | Parameter
|
An offset to shift the energy values by. Default is 0.0. |
0.0
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
Source code in src/easydynamics/convolution/analytical_convolution.py
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 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 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 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 356 357 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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 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 | |
__init__(energy, energy_unit='meV', sample_components=None, resolution_components=None, energy_offset=0.0)
Initialize an AnalyticalConvolution.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
None
|
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
None
|
energy_offset
|
Numeric | Parameter
|
An offset to shift the energy values by. Default is 0.0. |
0.0
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
Source code in src/easydynamics/convolution/analytical_convolution.py
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 | |
convolution()
Convolve sample with resolution analytically if possible. Accepts ComponentCollection or single ModelComponent for each. Possible analytical convolutions are any combination of delta functions, Gaussians, Lorentzians and Voigt profiles.
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray: The convolution of the sample_components and resolution_components values evaluated at self.energy. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If resolution_components contains delta functions. |
ValueError
|
If component pair cannot be handled analytically. |
Source code in src/easydynamics/convolution/analytical_convolution.py
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 | |
convolution
Convolution
Bases: NumericalConvolutionBase
Convolution class that combines analytical and numerical convolution methods to efficiently perform convolutions of ComponentCollections with ResolutionComponents.
Supports analytical convolution for pairs of analytical model components (DeltaFunction, Gaussian, Lorentzian, Voigt), while using numerical convolution for other components. If temperature is provided, detailed balance correction is applied to the sample model. In this case, all convolutions are handled numerically. Includes a setting to normalize the detailed balance correction. Includes optional upsampling and extended range to improve accuracy of the numerical convolutions. Also warns about numerical instabilities if peaks are very wide or very narrow.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample components to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution components to convolve with. |
required |
upsample_factor
|
int | None
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float | None
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit | None
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit | None
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool | None
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Attributes:
| Name | Type | Description |
|---|---|---|
energy |
Variable
|
1D array of energy values where the convolution is evaluated. |
sample_components |
ComponentCollection
|
The sample components to be convolved. |
resolution_components |
ComponentCollection
|
The resolution components to convolve with. |
energy_offset |
Parameter
|
Energy offset to apply to the energy values before convolution. |
upsample_factor |
int
|
The factor by which to upsample the input data before convolution. |
extension_factor |
float
|
The factor by which to extend the input data range before convolution. |
temperature |
Parameter | None
|
The temperature to use for detailed balance correction. |
temperature_unit |
str | Unit
|
The unit of the temperature parameter. |
energy_unit |
str | Unit
|
The unit of the energy. |
normalize_detailed_balance |
bool
|
Whether to normalize the detailed balance correction. |
Source code in src/easydynamics/convolution/convolution.py
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 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 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 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 | |
__init__(energy, sample_components, resolution_components, energy_offset=0.0, upsample_factor=5, extension_factor=0.2, temperature=None, temperature_unit='K', energy_unit='meV', normalize_detailed_balance=True)
Initialize the Convolution class.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample components to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution components to convolve with. |
required |
upsample_factor
|
int | None
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float | None
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit | None
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit | None
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool | None
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Source code in src/easydynamics/convolution/convolution.py
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 | |
__setattr__(name, value)
Custom setattr to invalidate convolution plan on relevant attribute changes, and build a new plan.
The new plan is only built after initialization (when _reactions_enabled is True) to avoid issues during init.
Source code in src/easydynamics/convolution/convolution.py
326 327 328 329 330 331 332 333 334 335 336 337 338 339 | |
convolution()
Perform convolution using analytical convolutions where possible, and numerical convolutions for the remaining components.
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray: The convolved values evaluated at energy. |
Source code in src/easydynamics/convolution/convolution.py
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 | |
convolution_base
ConvolutionBase
Base class for convolutions of sample and resolution models. This base class has no convolution functionality.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
None
|
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
None
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
energy_offset
|
Numeric | Parameter
|
The energy offset applied to the convolution. Default is 0.0. |
0.0
|
Attributes:
| Name | Type | Description |
|---|---|---|
energy |
Variable
|
1D array of energy values where the convolution is evaluated |
sample_components |
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
resolution_components |
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
energy_unit |
str | Unit
|
The unit of the energy. |
energy_offset |
Parameter
|
The energy offset applied to the convolution. |
Source code in src/easydynamics/convolution/convolution_base.py
13 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 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 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 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 | |
__init__(energy, sample_components=None, resolution_components=None, energy_unit='meV', energy_offset=0.0)
Initialize the ConvolutionBase.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
None
|
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
None
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
energy_offset
|
Numeric | Parameter
|
The energy offset applied to the convolution. Default is 0.0. |
0.0
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If energy is not a numpy ndarray or a scipp Variable. |
TypeError
|
If energy_unit is not a string or scipp unit. |
TypeError
|
If energy_offset is not a number or a Parameter. |
TypeError
|
If sample_components is not a ComponentCollection or ModelComponent. |
TypeError
|
If resolution_components is not a ComponentCollection or ModelComponent. |
Source code in src/easydynamics/convolution/convolution_base.py
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 | |
convert_energy_unit(energy_unit)
Convert the energy and energy_offset to the specified unit.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy_unit
|
str | Unit
|
The unit of the energy. |
required |
Raises:
| Type | Description |
|---|---|
TypeError
|
If energy_unit is not a string or scipp unit. |
UnitError
|
If energy cannot be converted to the specified unit. |
Source code in src/easydynamics/convolution/convolution_base.py
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 | |
energy
property
writable
Get the energy.
Returns:
| Type | Description |
|---|---|
Variable
|
sc.Variable: The energy values where the convolution is evaluated. |
energy_offset
property
writable
Get the energy offset.
Returns:
| Name | Type | Description |
|---|---|---|
Parameter |
Parameter
|
The energy offset applied to the convolution. |
energy_unit
property
writable
Get the energy unit.
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
The unit of the energy. |
energy_with_offset
property
writable
Get the energy with the offset applied.
Returns:
| Type | Description |
|---|---|
Variable
|
sc.Variable: The energy values with the offset applied. |
resolution_components
property
writable
Get the resolution model.
Returns:
| Type | Description |
|---|---|
ComponentCollection | ModelComponent
|
ComponentCollection or ModelComponent: The resolution model to be convolved. |
sample_components
property
writable
Get the sample model.
Returns:
| Type | Description |
|---|---|
ComponentCollection | ModelComponent
|
ComponentCollection or ModelComponent: The sample model to be convolved. |
energy_grid
EnergyGrid
dataclass
Container for the dense energy grid and related metadata.
Attributes:
| Name | Type | Description |
|---|---|---|
energy_dense |
ndarray
|
The upsampled and extended energy array. |
energy_dense_centered |
ndarray
|
The centered version of energy_dense (used for resolution evaluation). |
energy_dense_step |
float
|
The spacing of energy_dense (used for width checks and normalization). |
energy_span_dense |
float
|
The total span of energy_dense. (used for width checks). |
energy_even_length_offset |
float
|
The offset to apply if energy_dense has even length (used for convolution alignment). |
Source code in src/easydynamics/convolution/energy_grid.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
numerical_convolution
NumericalConvolution
Bases: NumericalConvolutionBase
Numerical convolution of a ComponentCollection with a ComponentCollection using FFT. Includes optional upsampling and extended range to improve accuracy. Warns about very wide or very narrow peaks in the models. If temperature is provided, detailed balance correction is applied to the sample model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
required |
upsample_factor
|
int
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Attributes:
| Name | Type | Description |
|---|---|---|
energy |
ndarray | Variable
|
The energy values where the convolution is evaluated. |
sample_components |
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
resolution_components |
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
energy_offset |
Parameter
|
The energy offset to apply to the sample model before convolution. |
upsample_factor |
int
|
The factor by which to upsample the input data before convolution. |
extension_factor |
float
|
The factor by which to extend the input data range before convolution. |
temperature |
Parameter | float | None
|
The temperature to use for detailed balance correction. |
temperature_unit |
str | Unit
|
The unit of the temperature parameter. |
energy_unit |
str | Unit
|
The unit of the energy. |
normalize_detailed_balance |
bool
|
Whether to normalize the detailed balance correction. |
Source code in src/easydynamics/convolution/numerical_convolution.py
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 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 | |
__init__(energy, sample_components, resolution_components, energy_offset=0.0, upsample_factor=5, extension_factor=0.2, temperature=None, temperature_unit='K', energy_unit='meV', normalize_detailed_balance=True)
Initialize the NumericalConvolution object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The sample model to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution model to convolve with. |
required |
upsample_factor
|
int
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If temperature is not None, a number, or a Parameter. |
TypeError
|
If temperature_unit is not a string or sc.Unit. |
TypeError
|
If upsample_factor is not a number or None. |
ValueError
|
If upsample_factor is not greater than 1. |
TypeError
|
If extension_factor is not a number. |
ValueError
|
If extension_factor is negative. |
TypeError
|
If normalize_detailed_balance is not a bool. |
Source code in src/easydynamics/convolution/numerical_convolution.py
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 | |
convolution()
Calculate the convolution of the sample and resolution models at the values given in energy. Includes detailed balance correction if temperature is provided.
Returns:
| Type | Description |
|---|---|
ndarray
|
np.ndarray The convolved values evaluated at energy. |
Source code in src/easydynamics/convolution/numerical_convolution.py
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 | |
numerical_convolution_base
NumericalConvolutionBase
Bases: ConvolutionBase
Base class for numerical convolutions of sample and resolution models. Provides methods to handle upsampling, extension, and detailed balance correction. This base class has no convolution functionality.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The components to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution components to convolve with. |
required |
upsample_factor
|
int | None
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float | None
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Attributes:
| Name | Type | Description |
|---|---|---|
energy |
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
sample_components |
ComponentCollection | ModelComponent
|
The components to be convolved. |
resolution_components |
ComponentCollection | ModelComponent
|
The resolution components to convolve with. |
upsample_factor |
int | None
|
The factor by which to upsample the input data before convolution. |
extension_factor |
float | None
|
The factor by which to extend the input data range before convolution. |
temperature |
Parameter | None
|
The temperature parameter for detailed balance correction, or None if detailed balance is disabled. |
temperature_unit |
str | Unit
|
The unit of the temperature parameter. |
energy_unit |
str | Unit
|
The unit of the energy. |
normalize_detailed_balance |
bool
|
Whether to normalize the detailed balance correction. |
Source code in src/easydynamics/convolution/numerical_convolution_base.py
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 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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 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 356 357 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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | |
__init__(energy, sample_components, resolution_components, energy_offset=0.0, upsample_factor=5, extension_factor=0.2, temperature=None, temperature_unit='K', energy_unit='meV', normalize_detailed_balance=True)
Initialize the NumericalConvolutionBase.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray | Variable
|
1D array of energy values where the convolution is evaluated. |
required |
sample_components
|
ComponentCollection | ModelComponent
|
The components to be convolved. |
required |
resolution_components
|
ComponentCollection | ModelComponent
|
The resolution components to convolve with. |
required |
upsample_factor
|
int | None
|
The factor by which to upsample the input data before convolution. Default is 5. |
5
|
extension_factor
|
float | None
|
The factor by which to extend the input data range before convolution. Default is 0.2. |
0.2
|
temperature
|
Parameter | float | None
|
The temperature to use for detailed balance correction. Default is None. |
None
|
temperature_unit
|
str | Unit
|
The unit of the temperature parameter. Default is 'K'. |
'K'
|
energy_unit
|
str | Unit
|
The unit of the energy. Default is 'meV'. |
'meV'
|
normalize_detailed_balance
|
bool
|
Whether to normalize the detailed balance correction. Default is True. |
True
|
Raises:
| Type | Description |
|---|---|
TypeError
|
If temperature is not None, a number, or a Parameter. |
TypeError
|
If temperature_unit is not a string or sc.Unit. |
TypeError
|
If upsample_factor is not a number or None. |
ValueError
|
If upsample_factor is not greater than 1. |
TypeError
|
If extension_factor is not a number. |
ValueError
|
If extension_factor is negative. |
TypeError
|
If normalize_detailed_balance is not a bool. |
Source code in src/easydynamics/convolution/numerical_convolution_base.py
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 | |
__repr__()
Return a string representation of the NumericalConvolutionBase.
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
A string representation of the NumericalConvolutionBase. |
Source code in src/easydynamics/convolution/numerical_convolution_base.py
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 | |
energy(energy)
Set the energy array and recreate the dense grid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
energy
|
ndarray
|
The new energy array. |
required |
Source code in src/easydynamics/convolution/numerical_convolution_base.py
151 152 153 154 155 156 157 158 159 160 | |
extension_factor
property
writable
Get the extension factor.
The extension factor determines how much the energy range is extended on both sides before convolution. 0.2 means extending by 20% of the original energy span on each side
Returns:
| Name | Type | Description |
|---|---|---|
float |
float
|
The extension factor. |
normalize_detailed_balance
property
writable
Get whether to normalize the detailed balance factor.
If True, the detailed balance factor is divided by temperature.
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
Whether to normalize the detailed balance factor. |
temperature
property
writable
Get the temperature.
Returns:
| Type | Description |
|---|---|
Optional[Parameter]
|
Optional[Parameter]: The temperature parameter, or None if detailed balance correction is disabled. |
upsample_factor
property
writable
Get the upsample factor.
Returns:
| Name | Type | Description |
|---|---|---|
Numerical |
Numerical
|
The upsample factor. |