Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docstring in drift.py #158

Merged
merged 2 commits into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions chandra_aca/drift.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ def calc(self, times, t_ccd):
``times`` and ``t_ccd``. The two arrays are broadcasted to match.

The returned drifts are in arcsec and provide the expected aspect solution
SIM DY or DZ values in mm. This can be converted to a drift in arcsec via
the scale factor 20.493 arcsec/mm.
SIM DY or DZ values in arcsec. This can be converted to a drift in mm
(corresponding to units in an ASOL file) via the scale factor 20.493 arcsec/mm.

Parameters
----------
Expand All @@ -131,7 +131,7 @@ def calc(self, times, t_ccd):

Returns
-------
array of ASOL SIM DY/DZ (mm)
array of ASOL SIM DY/DZ (arcsec)
"""
# The drift model is calibrated assuming t_ccd is in degF, but we want inputs
# in degC, so convert at this point.
Expand Down