Joint Models¶
Models that fit donut and spot images simultaneously for a shared set of wavefront coefficients.
Base class¶
danish.joint_model.JointModel ¶
Joint donut + spot model for simultaneous fitting.
Composes a donut sub-model and a spot sub-model that share atmospheric and wavefront parameters. Per-star parameters (fluxes, dxs, dys, bkgs) are independent between the two modalities.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
donut_model
|
BaseMultiDonutModel subclass
|
Pre-constructed donut fitter. |
required |
spot_model
|
BaseMultiSpotModel subclass
|
Pre-constructed spot fitter. |
required |
spot_weight
|
float
|
Relative weight of spot chi residuals. The spot chi values are multiplied by sqrt(spot_weight) so that the cost contribution is scaled by spot_weight. Default 1.0. |
1.0
|
Source code in danish/joint_model.py
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 | |
pack_params ¶
pack_params(*, d_fluxes, d_dxs, d_dys, s_fluxes, s_dxs, s_dys, fwhm=None, Ixx=None, Ixy=None, Iyy=None, wavefront_params, d_bkgs=None, s_bkgs=None)
Pack joint parameters into a single tuple.
Layout: [d_fluxes | d_dxs | d_dys | s_fluxes | s_dxs | s_dys | atm(natm) | wavefront | d_bkgs | s_bkgs]
Source code in danish/joint_model.py
unpack_params ¶
Unpack joint parameters from optimization tuple.
Returns:
| Type | Description |
|---|---|
dict with keys:
|
d_fluxes, d_dxs, d_dys, s_fluxes, s_dxs, s_dys, fwhm or (Ixx, Ixy, Iyy), wavefront_params, d_bkgs, s_bkgs |
Source code in danish/joint_model.py
model ¶
Compute model images for both donuts and spots.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
**kwargs
|
as returned by unpack_params
|
|
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
donut_imgs |
(array, shape(nd, npix_d, npix_d))
|
|
spot_imgs |
(array, shape(ns, npix_s, npix_s))
|
|
Source code in danish/joint_model.py
chi ¶
Compute joint chi residuals.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
sequence of float
|
Joint packed parameters. |
required |
donut_data
|
(array, shape(nd, npix_d, npix_d))
|
|
required |
donut_vars
|
sequence of float or array
|
|
required |
spot_data
|
(array, shape(ns, npix_s, npix_s))
|
|
required |
spot_vars
|
sequence of float or array
|
|
required |
Returns:
| Name | Type | Description |
|---|---|---|
chi |
array of float
|
Concatenated [donut_chi, sqrt_spot_weight * spot_chi]. |
Source code in danish/joint_model.py
jac ¶
Compute joint jacobian d(chi)/d(param).
Uses block-sparse structure: donut per-star params only affect donut rows, spot per-star params only affect spot rows, shared atm+wavefront params affect all rows.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
params
|
sequence of float
|
|
required |
donut_data
|
arrays
|
|
required |
donut_vars
|
arrays
|
|
required |
spot_data
|
arrays
|
|
required |
spot_vars
|
arrays
|
|
required |
Returns:
| Name | Type | Description |
|---|---|---|
jac |
array of float, shape (nchi_d + nchi_s, nparams)
|
|
Source code in danish/joint_model.py
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 | |
Concrete models¶
danish.joint_model.DZJointModel ¶
Bases: JointModel
Joint donut + spot model using double Zernike parameterization.
Both sub-models must be DZMultiDonutModel and DZMultiSpotModel with identical dz_terms.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
donut_model
|
DZMultiDonutModel
|
Pre-constructed donut fitter. |
required |
spot_model
|
DZMultiSpotModel
|
Pre-constructed spot fitter. Must have the same |
required |
spot_weight
|
float
|
Relative weight of spot chi residuals. Default 1.0. |
1.0
|
Source code in danish/joint_model.py
danish.joint_model.DZBasisJointModel ¶
Bases: JointModel
Joint donut + spot model using sensitivity matrix parameterization.
Both sub-models must be DZBasisMultiDonutModel and DZBasisMultiSpotModel with identical sensitivity matrices.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
donut_model
|
DZBasisMultiDonutModel
|
Pre-constructed donut fitter. |
required |
spot_model
|
DZBasisMultiSpotModel
|
Pre-constructed spot fitter. Must have the same |
required |
spot_weight
|
float
|
Relative weight of spot chi residuals. Default 1.0. |
1.0
|