Skip to content

Commit

Permalink
Merge pull request #152 from robelgeda/fitting
Browse files Browse the repository at this point in the history
Minor Updates to `GenSersic2D`
  • Loading branch information
robelgeda committed Aug 22, 2022
2 parents 5a52766 + 6ebf265 commit 39db6dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion petrofit/modeling/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get_default_sersic_bounds(override={}):

def get_default_gen_sersic_bounds(override={}):
bounds = get_default_sersic_bounds()
bounds['c_0'] = (-1.0, 1.0)
bounds['c_0'] = (0, 2.0)
bounds.update(override)
return bounds

Expand Down Expand Up @@ -598,6 +598,7 @@ class GenSersic2D(models.Sersic2D):
References
----------
.. [1] http://ned.ipac.caltech.edu/level5/March05/Graham/Graham2.html
.. [2] https://ui.adsabs.harvard.edu/abs/2010AJ....139.2097P/abstract
"""

c_0 = Parameter(default=0, description="General boxiness of isophote")
Expand Down

0 comments on commit 39db6dc

Please sign in to comment.