|
452 | 452 | "source": [ |
453 | 453 | "total_gaussians = 30\n", |
454 | 454 | "\n", |
455 | | - "# The sigma values of the Gaussians will be fixed to values spanning 0.01 to the mask radius, 3.0\".\n", |
| 455 | + "# The sigma values of the Gaussians will be fixed to values spanning a tenth of the pixel scale to the mask radius, 3.0\".\n", |
456 | 456 | "mask_radius = 3.0\n", |
457 | | - "log10_sigma_list = np.linspace(-2, np.log10(mask_radius), total_gaussians)\n", |
| 457 | + "log10_sigma_list = np.linspace(np.log10(dataset.pixel_scales[0] / 10.0), np.log10(mask_radius), total_gaussians)\n", |
458 | 458 | "\n", |
459 | 459 | "# By defining the centre here, it creates two free parameters that are assigned below to all Gaussians.\n", |
460 | 460 | "\n", |
|
560 | 560 | "source": [ |
561 | 561 | "total_gaussians = 30\n", |
562 | 562 | "\n", |
563 | | - "# The sigma values of the Gaussians will be fixed to values spanning 0.01 to the mask radius, 3.0\".\n", |
| 563 | + "# The sigma values of the Gaussians will be fixed to values spanning a tenth of the pixel scale to the mask radius, 3.0\".\n", |
564 | 564 | "mask_radius = 3.0\n", |
565 | | - "log10_sigma_list = np.linspace(-2, np.log10(mask_radius), total_gaussians)\n", |
| 565 | + "log10_sigma_list = np.linspace(np.log10(dataset.pixel_scales[0] / 10.0), np.log10(mask_radius), total_gaussians)\n", |
566 | 566 | "\n", |
567 | 567 | "# By defining the centre here, it creates two free parameters that are assigned below to all Gaussians.\n", |
568 | 568 | "\n", |
|
621 | 621 | "source": [ |
622 | 622 | "total_gaussians = 10\n", |
623 | 623 | "\n", |
624 | | - "# The sigma values of the Gaussians will be fixed to values spanning 0.01 to the mask radius, 3.0\".\n", |
| 624 | + "# The sigma values of the Gaussians will be fixed to values spanning a tenth of the pixel scale to the mask radius, 3.0\".\n", |
625 | 625 | "mask_radius = 3.0\n", |
626 | | - "log10_sigma_list = np.linspace(-2, np.log10(mask_radius), total_gaussians)\n", |
| 626 | + "log10_sigma_list = np.linspace(np.log10(dataset.pixel_scales[0] / 10.0), np.log10(mask_radius), total_gaussians)\n", |
627 | 627 | "\n", |
628 | 628 | "disk_gaussian_list = []\n", |
629 | 629 | "\n", |
|
0 commit comments