Open k-wolfinger opened 1 year ago
The laser pulse parameter, dist_waist is currently not used in calculating the laser pulse position
# self._pulse_pos = self.dist_waist - params.num_sig_long * self.sig_s + (slice_index + 0.5) * self.ds self._pulse_pos = ( -params.num_sig_long * self.sig_s + (slice_index + 0.5) * self.ds )
As such, we can only initialize a pulse from function that is at the waist
The parameter dist_waist could also be renamed for improved clarity
The laser pulse parameter, dist_waist is currently not used in calculating the laser pulse position
As such, we can only initialize a pulse from function that is at the waist