app: stacked_cores: complete some more 50-xx runs

This commit is contained in:
colin 2022-10-25 15:29:33 -07:00
parent cba2db6b10
commit 6af2d1d9e3
2 changed files with 63 additions and 0 deletions

View File

@ -434,6 +434,8 @@ sims = [
(SimParams50(2e3, 2e4, 2000, 100, 5, 1, 400, "1e10"), None, 20000),
(SimParams50(5e3, 2e4, 2000, 100, 5, 1, 400, "1e10"), None, 20000),
(SimParams50(1e4, 2e4, 2000, 100, 5, 1, 400, "1e10"), None, 20000),
(SimParams50(1e4, 2e4, 2000, 100, 5, 1, 400, "2e10"), None, 20000),
(SimParams50(2e4, 2e4, 2000, 100, 5, 1, 400, "1e10"), None, 20000),
]
measurements = { real.machine_name: [human, norm, None, None] for (real, human, norm) in sims }
@ -4919,4 +4921,63 @@ Piecewise(
)
""")
set_meas("50-0.0004rad-5000ctl_cond-20000coupling_cond-2000ps-100ps-5ctl-5coupling-3_1_winding-1e10-drive", """
Piecewise(
[
[ -17874, -336 ], # -1.000, M1=-12353
[ -17709, -216 ], # -0.350, M1=-12199
[ -17685, -199 ], # -0.300, M1=-12177
[ -17658, -180 ], # -0.250, M1=-12153
[ -17621, -156 ], # -0.200, M1=-12122
[ -17563, -121 ], # -0.150, M1=-12078
[ -17436, -58 ], # -0.100, M1=-11997
[ -8261, 2237 ], # -0.050, M1=-9027
[ 8890, 6091 ], # 0.000, M1=-4131
[ 16207, 7754 ], # 0.100, M1=-2005
[ 16491, 7861 ], # 0.200, M1=-1869
[ 16811, 8050 ], # 1.000, M1=-1626
]
)
""")
set_meas("50-0.0004rad-10000ctl_cond-20000coupling_cond-2000ps-100ps-5ctl-5coupling-3_1_winding-1e10-drive", """
Piecewise(
[
[ -18342, -3636 ], # -1.000, M1=-12916
[ -18115, -3533 ], # -0.350, M1=-12746
[ -18084, -3519 ], # -0.300, M1=-12723
[ -18051, -3503 ], # -0.250, M1=-12695
[ -18014, -3484 ], # -0.200, M1=-12662
[ -17961, -3460 ], # -0.150, M1=-12623
[ -17887, -3424 ], # -0.100, M1=-12563
[ -17632, -3334 ], # -0.050, M1=-12415
[ 8753, 735 ], # 0.000, M1=-5331
[ 16488, 1959 ], # 0.100, M1=-3107
[ 16640, 2024 ], # 0.200, M1=-2992
[ 16754, 2075 ], # 0.350, M1=-2899
[ 17009, 2174 ], # 1.000, M1=-2717
]
)
""")
set_meas("50-0.0004rad-10000ctl_cond-20000coupling_cond-2000ps-100ps-5ctl-5coupling-3_1_winding-2e10-drive", """
Piecewise(
[
[ -18603, -61 ], # -1.000, M1=-11774
[ 10164, 4652 ], # 0.000, M1=-3814
[ 17128, 6016 ], # 1.000, M1=-1449
]
)
""")
set_meas("50-0.0004rad-20000ctl_cond-20000coupling_cond-2000ps-100ps-5ctl-5coupling-3_1_winding-1e10-drive", """
Piecewise(
[
[ -19216, -6910 ], # -1.000, M1=-13886
[ 7843, -4486 ], # 0.000, M1=-7707
[ 17714, -3467 ], # 1.000, M1=-5023
]
)
""")
if __name__ == '__main__': main()

View File

@ -5459,7 +5459,9 @@ fn main() {
for (ctl_cond, coupling_cond, clock_duration, clock_decay, coupling_loops, s0_loops, s_major, cur_flt) in [
(1e4, 2e4, ps(2000), ps(100), 5, 1, um(400), 1e10),
(5e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 1e10),
(2e4, 2e4, ps(2000), ps(100), 5, 1, um(400), 1e10),
(2e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 1e10),
(1e4, 2e4, ps(2000), ps(100), 5, 1, um(400), 2e10),
(1e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 5e9),
(1e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 1e10),