You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Hapke photometric model to sbpy.photometry submodule.
Explain the relevance to sbpy
The Hapke photometric model is in the original development plan for sbpy.
Proposal details
The Hapke photometric model will be implemented in the sbpy.photometry.hapke submodule. It will include both disk-resolved model and disk-integrated model. Given the complicated nature and various versions of the Hapke model, the design of the module is still TBD.
Example (pseudo-)code
An example API of the disk-resolved photometric model could be as follows:
fromsbpy.photometry.hapkeimportHapke# generate modelmodel=Hapke(ssa=0.1, g=-0.2, theta=20*u.deg, B0=1, h=0.01)
# calculate bidirectional reflectancebdr=model.bdr(i, e, a)
# calculate RADFradf=model.radf(i, e, a)
# geometric albedoalb_g=model.geomalb# Bond albedoalb_b=model.bondalb
The text was updated successfully, but these errors were encountered:
This is a request for
The requested changes will be implemented by
High-level concept
Add Hapke photometric model to
sbpy.photometry
submodule.Explain the relevance to sbpy
The Hapke photometric model is in the original development plan for
sbpy
.Proposal details
The Hapke photometric model will be implemented in the
sbpy.photometry.hapke
submodule. It will include both disk-resolved model and disk-integrated model. Given the complicated nature and various versions of the Hapke model, the design of the module is still TBD.Example (pseudo-)code
An example API of the disk-resolved photometric model could be as follows:
The text was updated successfully, but these errors were encountered: