Skip to content

Commit 355d7be

Browse files
authored
[mini] Fix stretch factor in Gaussian initialisation w/ spatial and angular chirps (#5494)
It seems to me that PR #2173 changed the actual terms of laser initialization in the presence of chirps. This PR proposes to revert back to the previous behavior, which I think is more correct. In this way, I think the advantage of #2173 regarding single-precision are preserved.
1 parent 65c4a3a commit 355d7be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Laser/LaserProfilesImpl/LaserProfileGaussian.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ WarpXLaserProfiles::GaussianLaserProfile::fill_amplitude (
117117
// Time stretching due to STCs and phi2 complex envelope
118118
// (1 if zeta=0, beta=0, phi2=0)
119119
const Complex stretch_factor = 1._rt + 4._rt *
120-
(m_params.zeta+m_params.beta*m_params.focal_distance*inv_tau2)
121-
* (m_params.zeta+m_params.beta*m_params.focal_distance*inv_complex_waist_2)
120+
((m_params.zeta+m_params.beta*m_params.focal_distance)*inv_tau2)
121+
* ((m_params.zeta+m_params.beta*m_params.focal_distance)*inv_complex_waist_2)
122122
+ 2._rt*I*(m_params.phi2-m_params.beta*m_params.beta*k0*m_params.focal_distance)*inv_tau2;
123123

124124
// Amplitude and monochromatic oscillations

0 commit comments

Comments
 (0)