-
Notifications
You must be signed in to change notification settings - Fork 54
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
interference pattern with a focused x-ray beam (spherical coordinates propagation & Steps) #79
Comments
Hello, def TestLensFarField(Fin, f):
"""
Use a direct FFT approach to calculate the far field of the input field.
Given the focal length f, the correct scaling is applied and the
output field will have it's values for size and dx correctly set.
Also applies correct prefactors to field as calculated from Fresnel
approximation and lens as square phase.
Parameters
----------
f : double
Focal length in meters/ global units
Fin : lp.Field
The input field.
Returns
-------
The output field.
"""
dx = Fin.dx
lam = Fin.lam
k = 2*_np.pi/lam
L_prime = lam * f / dx
Fout = PipFFT(Fin, index=1)
Fout.siz = L_prime
Fout.field *= Fin.dx**2 # hope this is correct, should be as long as numpy normalization = backward (none for forward)
Fout.field *= 1/(1j*lam*f) * _np.exp(1j*k*f)
Fout.field *= np.exp(1j*k/(2*f)*(Fout.mgrid_Rsquared))
Fout._IsGauss=False
return Fout Getting a nice image in the Lens far field requires playing with number of grid points and grid size (bigger beam in the image at the start => smaller beam in the image in the lens far field) As to the propagation from KB somewhere closer to focus with LensForvard/LensFresnel. The thing is that the real dimension [m] of your grid is getting smaller while the image is not changing that much. I think that this is your problem for the steps vs. x[mm] plots, where you don't see the focusing. You probably plot steps vs. pixels, but the scaling of pixels to mm changes and you don't reflect this in your plots and can't see the focusing. I gained this result of beam dimension against propagation distance (it is distance from the focus at 3m from the KB, so 0 um is at 3 m from KB, -1000um is at 2.999m from KB). Green dotted lines show positions where propagation for (something like) LensForvard was changed to propagation around focus by LensFarField and Forvard, red dotted line is change from LensFarField to "LensForvard". I something like LensForvard, but not quite that, so I can't tell you the parameters to set, however getting a nice image should requite playing with f2, grid_size, number of grid points. And lastly to the physics. I have some experience with X-ray beams focused by KB optics and the beam in the focus is quite different from Gaussian. There is always astigmatism from KB, the beam itself has wavefront distortions that show in the close to the focal plane. You can use this simulation as a best case scenario but you should count with having a different beam in the focus. A reconstruction of a beam profile in the focus can be found for example here: https://doi.org/10.1364/OE.21.026363. |
Hello,
In the first place I would like to thank you very much for the LightPipes package. It is very useful!
I am currently using it to simulate the propagation of a soft X-ray gaussian beam (1.42 nm). We focus the beam with a pair KB mirrors at f=3m. I want to simulate the intensity distribution around the focus with and without a spatial mask and I have a few questions.
I use the spherical coordinates. Without spatial mask and propagating with LensFresnel or lensForvard I get a similar result, a very tight focus, as expected.
This is my code:
The only difference in the results using LensFresnel or LensForvard comes in the beam size (calculated as FWHM).
Fresnel gives systematically larger values than Forvard. I tested it with optical beams and non-spherical coordinates, and it seems to happen always. However, their intensities at the focus overlap (see figure below). I don’t really understand why this happens, any idea? It seems that Forvard gives the correct value, according to the intensity distribution plot. In my case the beamsize in the focus (FWHM) is 1.15e-06 m according to lensFresnel and 8.55e-07 m according to lensForvard.
For the spatial mask I just add these lines to the code before the propagation:
Single-step propagation to the focus gives also similar results with both methods:
Then I try to explore what happens around the focus, so I propagate to different points close to the focus. To do so, I change the propagation section by the following:
Here already the issue is that I don’t see the focusing of the beam for most of the steps, only when getting really close to the focus.
With No mask, LensFresnel or No mask, lensForvard I get similar results:
The beam focusing is only visible when we are very close to the focus. Further away from it, we are not really simulating the focusing, looks like a collimated beam. Any idea why?
Is the idea to simulate the approach to the focus incorrect? I don’t really understand why it does not work… The final grid size is fixed and the same in all cases since it is given by the choice of f1 and f.
The intensity, if not normalized, does change, but the beam diameter does not.
With mask and lensFresnel or lendForvard I get:
Which seems to be rather diverging than focusing. For Fresnel I cannot go after the focus, so I use lensForvard to simulate the beam across the focus (steps_focus = np.arange(2.95m,3.05m,0.001*m) ):
No mask, with lensForvard:
With mask:
I understand the weird behavior in the focus happens because of what is mentioned in the manual “ As the coordinates follow the geometrical section of the light beam, operator LensForvard(10,10,Field) will produce floating exception because the calculations can not be conducted in a grid with zero size (that is so in the geometrical approximation of a focal point).”
But then my question is until which point the simulation is correct? Until the propagation distance is equal to f? without the mask the beam is converging, but with the mask it starts to diverge already when approaching the focus.
And from where is it correct? From where we do observe focusing of the beam? because far from the focus, no focusing is observed.
Then to propagate across the focus, I thought I could do something like propagate close to the focus with spherical coordinates and then around the focus, go back to normal coordinates and use Steps.
So I tried the following:
The propagation across the focus looks reasonable and the interference pattern in the focus is actually similar as before. However, the size of the features is significantly smaller (approx. 100 nm vs. 1 micron) than with mask and lensFresnel or lendForvard (see above). I am a bit puzzled why. Any idea? I would assume this last case is more correct but why the other fails and is so different in the simulated size?
Is this propagation scheme consistent?
Sorry for the very long question, and thanks a lot in advance for any help!!!
The text was updated successfully, but these errors were encountered: