BlackHole
- class dysmalpy.models.BlackHole(**kwargs)[source]
Bases:
MassModel
Central black hole. Treated as a point source at r = 0.
- Parameters:
BH_mass (float) – Log10 of the mass in solar units
Attributes Summary
Names of the parameters that describe models of this type.
Methods Summary
Circular velocity as a function of radius
Central black hole enclosed mass (treat as step function)
evaluate
(r, BH_mass)Mass surface density of a BH (treat like delta function)
Conversion from mass to light as a function of radius
Attributes Documentation
- BH_mass = DysmalParameter('BH_mass', value=1.0, bounds=(0.0, 12.0), prior=<dysmalpy.parameters.UniformPrior object>)
- baryon_type = 'blackhole'
- param_names = ('BH_mass',)
Names of the parameters that describe models of this type.
The parameters in this tuple are in the same order they should be passed in when initializing a model of a specific type. Some types of models, such as polynomial models, have a different number of parameters depending on some other property of the model, such as the degree.
When defining a custom model class the value of this attribute is automatically set by the
Parameter
attributes defined in the class body.
Methods Documentation