Open jenniferyee opened 1 year ago
Why do you want to move "methods" and "limb_darkeningcoefficients" to mm.Model.__init_\()?
- Creating a new class TwoParamLimbDarkeningCoeffs that inherits from LimbDarkeningCoeffs
I've learned about open-closed principle recently (from the book by an author that you suggested to me :). Now I would say that both these classes should inherit from new abstract class, e.g., LimbDarkening.
- Do you have any comments on the use case?
The plotting part has lots of copy-pasted code - I would prefer to avoid it.
- It would be better for you to write the unit tests if I am implementing the 2-parameter limb-darkening algorithm.
OK.
I updated example 25 to reduce copy-pasted code.
It also reminded me that I want to add "plot_properties" as a keyword for models, so I added that to the use case to show how it would work.
I created a new use case for passing limb-darkening coefficients to models and proposed implementation of models.
The major issues are:
Next step: write unit tests, including making sure that both (Gamma, Lambda) and (c, d) implementations work the same.
@rpoleski: