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
51 changes: 51 additions & 0 deletions autogalaxy/config/priors/mass/dark/yang24.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
YangSIDMSph:
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
kappa_s:
type: Uniform
lower_limit: 0.0
upper_limit: 1.0
width_modifier:
type: Relative
value: 0.2
limits:
lower: 0.0
upper: inf
scale_radius:
type: Uniform
lower_limit: 0.0
upper_limit: 30.0
width_modifier:
type: Relative
value: 0.2
limits:
lower: 0.0
upper: inf
tau:
type: Uniform
lower_limit: 0.0
upper_limit: 1.0
width_modifier:
type: Relative
value: 0.2
limits:
lower: 0.0
upper: 1.0
91 changes: 91 additions & 0 deletions autogalaxy/config/priors/mass/dark/yang24_mcr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
YangSIDMMCRLudlowSph:
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
mass_at_200:
type: LogUniform
lower_limit: 100000000.0
upper_limit: 1000000000000000.0
width_modifier:
type: Relative
value: 0.5
limits:
lower: 0.0
upper: inf
sigma_over_m:
type: Uniform
lower_limit: 0.0
upper_limit: 10.0
width_modifier:
type: Relative
value: 0.5
limits:
lower: 0.0
upper: inf
velocity_exponent:
type: Uniform
lower_limit: 0.0
upper_limit: 4.0
width_modifier:
type: Relative
value: 0.5
limits:
lower: 0.0
upper: 8.0
velocity_ref:
type: Uniform
lower_limit: 1.0
upper_limit: 100.0
width_modifier:
type: Relative
value: 0.5
limits:
lower: 0.0
upper: inf
t_age:
type: Uniform
lower_limit: 0.0
upper_limit: 13.8
width_modifier:
type: Relative
value: 0.2
limits:
lower: 0.0
upper: inf
redshift_object:
type: Uniform
lower_limit: 0.0
upper_limit: 1.0
width_modifier:
type: Relative
value: 0.5
limits:
lower: 0.0
upper: inf
redshift_source:
type: Uniform
lower_limit: 0.0
upper_limit: 1.0
width_modifier:
type: Relative
value: 0.5
limits:
lower: 0.0
upper: inf
2 changes: 2 additions & 0 deletions autogalaxy/profiles/mass/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@
cNFWMCRScatterLudlowSph,
KaplinghatCoredNFWSph,
KaplinghatCoredNFWMCRLudlowSph,
YangSIDMSph,
YangSIDMMCRLudlowSph,
)
from .stellar import (
Gaussian,
Expand Down
2 changes: 2 additions & 0 deletions autogalaxy/profiles/mass/dark/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@
from .cnfw_mcr_scatter import cNFWMCRScatterLudlow, cNFWMCRScatterLudlowSph
from .kaplinghat import KaplinghatCoredNFWSph
from .kaplinghat_mcr import KaplinghatCoredNFWMCRLudlowSph
from .yang24 import YangSIDMSph
from .yang24_mcr import YangSIDMMCRLudlowSph
Loading