Skip to content

Commit

Permalink
Update test_gaussian_propagator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerjolly authored Jan 15, 2024
1 parent d849dde commit 5a21323
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/test_gaussian_propagator.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ def check_gaussian_propagation(
def test_3D_case(gaussian):
# - 3D case
dim = "xyt"
lo = (-25e-6, -25e-6, -100e-15)
hi = (+25e-6, +25e-6, +100e-15)
npoints = (100, 100, 200)
lo = (-25e-6, -25e-6, -60e-15)
hi = (+25e-6, +25e-6, +60e-15)
npoints = (100, 100, 100)

laser = Laser(dim, lo, hi, npoints, gaussian)
check_gaussian_propagation(laser)
Expand All @@ -75,9 +75,9 @@ def test_3D_case(gaussian):
def test_RT_case(gaussian):
# - Cylindrical case
dim = "rt"
lo = (0e-6, -100e-15)
hi = (25e-6, +100e-15)
npoints = (100, 200)
lo = (0e-6, -60e-15)
hi = (25e-6, +60e-15)
npoints = (100, 100)

laser = Laser(dim, lo, hi, npoints, gaussian)
check_gaussian_propagation(laser)

0 comments on commit 5a21323

Please sign in to comment.