Skip to content

Commit 53e894b

Browse files
committed
fix: better default number of bins
1 parent d668610 commit 53e894b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ess/amor/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def qgrid(
9191
qmin = reflectometry_q(wavelength=wmax, theta=theta_min)
9292
qmax = reflectometry_q(wavelength=wmin, theta=theta_max)
9393
qmin = max(qmin, sc.scalar(1e-3, unit='1/angstrom'))
94-
return QBins(sc.geomspace('Q', qmin, qmax, 499))
94+
return QBins(sc.geomspace('Q', qmin, qmax, 501))
9595

9696

9797
providers = (theta_grid, qgrid)

0 commit comments

Comments
 (0)