We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15fe8c1 commit c101d68Copy full SHA for c101d68
scripts/tfim_validation.py
@@ -247,7 +247,7 @@ def main():
247
if len(sys.argv) > 4:
248
t1 = float(sys.argv[4])
249
else:
250
- t1 = dt * dt
+ t1 = dt * dt * dt
251
if len(sys.argv) > 5:
252
shots = int(sys.argv[5])
253
@@ -343,7 +343,7 @@ def main():
343
# Additionally, this same mean-field exponent is the amplitude of time-dependent oscillation (also in the geometric series exponent).
344
t = d * dt
345
# Determine how to weight closed-form vs. conventional simulation contributions:
346
- model = (1 - 1 / math.exp(t / t1)) if (t1 > 0) else 1
+ model = (1 - 1 / math.exp(t / t1)) if (t1 > 0) and ((t / t1) < 709) else 1
347
d_magnetization = 0
348
d_sqr_magnetization = 0
349
0 commit comments