Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kale-j committed Dec 19, 2024
1 parent d8b5baa commit f48c336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lasy/utils/laser_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def normalize_peak_intensity(peak_intensity, grid):
if input_peak_intensity == 0.0:
print("Field is zero everywhere, normalization will be skipped")
else:
field *= np.sqrt(peak_intensity / input_peak_intensity))
field *= np.sqrt(peak_intensity / input_peak_intensity)
grid.set_temporal_field(field)


Expand Down

0 comments on commit f48c336

Please sign in to comment.