Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
126 changes: 126 additions & 0 deletions autogalaxy/config/priors/mass/total/dual_pseudo_isothermal_mass.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
dPIEMass:
centre_0:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
centre_1:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
ell_comps_0:
type: TruncatedGaussian
mean: 0.0
sigma: 0.3
lower_limit: -1.0
upper_limit: 1.0
width_modifier:
type: Absolute
value: 0.2
limits:
lower: -1.0
upper: 1.0
ell_comps_1:
type: TruncatedGaussian
mean: 0.0
sigma: 0.3
lower_limit: -1.0
upper_limit: 1.0
width_modifier:
type: Absolute
value: 0.2
limits:
lower: -1.0
upper: 1.0
ra:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
rs:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
b0:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
dPIEMassSph:
centre_0:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
centre_1:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
ra:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
rs:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
b0:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
dPIEPotential:
centre_0:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
centre_1:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
ell_comps_0:
type: TruncatedGaussian
mean: 0.0
sigma: 0.3
lower_limit: -1.0
upper_limit: 1.0
width_modifier:
type: Absolute
value: 0.2
limits:
lower: -1.0
upper: 1.0
ell_comps_1:
type: TruncatedGaussian
mean: 0.0
sigma: 0.3
lower_limit: -1.0
upper_limit: 1.0
width_modifier:
type: Absolute
value: 0.2
limits:
lower: -1.0
upper: 1.0
ra:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
rs:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
b0:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
dPIEPotentialSph:
centre_0:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
centre_1:
type: Gaussian
mean: 0.0
sigma: 0.1
width_modifier:
type: Absolute
value: 0.05
limits:
lower: -inf
upper: inf
ra:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
rs:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
b0:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.25
limits:
lower: 0.0
upper: inf
1 change: 1 addition & 0 deletions autogalaxy/operate/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ def visibilities_from(

return aa.Visibilities.zeros(shape_slim=(transformer.uv_wavelengths.shape[0],))


class OperateImageList(OperateImage):
"""
Packages methods which operate on the list of 2D images returned from the `image_2d_list_from` function of a light
Expand Down
10 changes: 5 additions & 5 deletions autogalaxy/profiles/mass/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from .abstract.abstract import MassProfile
from .point import PointMass, SMBH, SMBHBinary
from .total import (
dPIEMD,
dPIEMDSph,
PIEMD,
dPIEP,
dPIEPSph,
dPIEMass,
dPIEMassSph,
PIEMass,
dPIEPotential,
dPIEPotentialSph,
PowerLawCore,
PowerLawCoreSph,
PowerLawBroken,
Expand Down
4 changes: 2 additions & 2 deletions autogalaxy/profiles/mass/total/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .dual_pseudo_isothermal import dPIE, dPIESph
from .pseudo_isothermal import PIEMD, dPIEMD, dPIEMDSph, dPIEP, dPIEPSph
from .dual_pseudo_isothermal_potential import dPIEPotential, dPIEPotentialSph
from .dual_pseudo_isothermal_mass import PIEMass, dPIEMass, dPIEMassSph
from .isothermal import Isothermal, IsothermalSph
from .isothermal_core import IsothermalCore, IsothermalCoreSph
from .power_law import PowerLaw, PowerLawSph
Expand Down
Loading
Loading