PowerLawFlux1D

class synphot.models.PowerLawFlux1D(amplitude, x_0, alpha, **kwargs)[source]

Bases: PowerLaw1D

One dimensional power law model with proper flux handling.

For multiple n_models, this model only accepts parameters of the same unit; e.g., amplitude=[1, 2] or amplitude=Quantity([1, 2], 'photlam').

Also see PowerLaw1D.

Parameters:
amplitudenumber or Quantity

Model amplitude at the reference point. If not Quantity, assume the unit of PHOTLAM.

x_0number or Quantity

Reference point. If not Quantity, assume the unit of Angstrom.

alphafloat

Power law index.

Methods Summary

evaluate(x, *args)

Return flux in PHOTLAM.

integrate(x)

Methods Documentation

evaluate(x, *args)[source]

Return flux in PHOTLAM. Assume input wavelength is in Angstrom.

integrate(x)[source]