We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0110adb commit dab5052Copy full SHA for dab5052
1 file changed
src/hisp/model.py
@@ -217,7 +217,7 @@ def B_stepsize(self, t: float) -> float:
217
# the stepsize is 1/10 of the duration of the pulse
218
if pulse.pulse_type == "FP":
219
if relative_time_within_sub_pulse < pulse.duration_no_waiting:
220
- value = 0.01 # s # usually 0.01
+ value = 0.0001 # s # usually 0.01
221
else:
222
value = pulse.duration_no_waiting / 10
223
elif pulse.pulse_type == "BAKE":
@@ -341,7 +341,7 @@ def make_custom_rtol(self, t: float) -> float:
341
elif pulse.pulse_type == "FP_D":
342
rtol = 1e-9
343
344
- rtol = 1e-8 # 1e-6 or 1e-8 most recently
+ rtol = 1e-12 # 1e-6 or 1e-8 most recently
345
elif pulse.pulse_type == "RISP":
346
rtol = 1e-7
347
0 commit comments