-
Notifications
You must be signed in to change notification settings - Fork 72
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
Transformations of WavefrontError and subclasses don't do what is expected #229
Comments
Comment by mperrin That's definitely a bug. But luckily not a hard one to track down. The shifts weren't getting passed through to the call to the zernike basis function, so the above is an unshifted tilt intersected with a shifted circular mask around it. The reason the shifts weren't getting passed through was related to the use of the Meanwhile this reminds me of a related question, whether the transmission should be masked also. A while ago we changed the |
Comment by mperrin |
Comment by mperrin Stale issue, resolved a year ago. Going to close this now. |
Issue by corcoted
Wednesday Jul 12, 2017 at 02:57 GMT
Originally opened as mperrin/poppy#229
The
shift_x
,shift_y
, androtation
don't behave well for the WavefrontError subclasses. These are inherited from AnalyticOptics to do coordinate transformations on the optics.For example, trying
ZernikeWFE(radius=1*u.m, coefficients=[0,1,0], shift_x=0.6).display(what='opd')
gives me this:
The aperture seems to be chopped to an American football shape and the center of the opd pattern is at the origin. The expected behavior is to have a circular aperture and its opd shifted over by 0.6 in the x direction.
(The transmission is 1 everywhere.)
The text was updated successfully, but these errors were encountered: