File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -221,14 +221,14 @@ def B_stepsize(self, t: float) -> float:
221221 else :
222222 value = pulse .duration_no_waiting / 10
223223 elif pulse .pulse_type == "BAKE" :
224- value = pulse .duration_no_waiting / 1000 # usually /10
224+ value = pulse .duration_no_waiting / 10000 # usually /10
225225 elif pulse .pulse_type == "FP_D" :
226226 if relative_time_within_sub_pulse < pulse .duration_no_waiting :
227227 value = 0.001 # s
228228 else :
229229 value = pulse .duration_no_waiting / 10
230230 else :
231- value = pulse .duration_no_waiting / 100 # usually /100
231+ value = pulse .duration_no_waiting / 1000 # usually /100
232232 return periodic_step_function (
233233 relative_time ,
234234 period_on = pulse .duration_no_waiting ,
@@ -343,7 +343,7 @@ def make_custom_rtol(self, t: float) -> float:
343343 else :
344344 rtol = 1e-8 # 1e-6 or 1e-8 most recently
345345 elif pulse .pulse_type == "RISP" :
346- rtol = 1e-6
346+ rtol = 1e-7
347347 else :
348348 rtol = 1e-10
349349 return rtol
You can’t perform that action at this time.
0 commit comments