app: stacked_cores: 50-xx: complete a run with high *control* conductivity, and schedule a few more

This commit is contained in:
2022-10-25 05:37:54 -07:00
parent f4f672aab6
commit cba2db6b10
3 changed files with 23 additions and 0 deletions

View File

@@ -198,6 +198,9 @@ _49xx_study = from_params(
# SimParams50(1e3, 2e4, 2000, 100, 5, 1, 400, "5e9"),
# SimParams50(1e3, 2e4, 2000, 100, 5, 1, 400, "1e10"),
# SimParams50(1e3, 2e4, 2000, 100, 5, 1, 400, "2e10"),
# SimParams50(2e3, 2e4, 2000, 100, 5, 1, 400, "1e10"),
# SimParams50(5e3, 2e4, 2000, 100, 5, 1, 400, "1e10"),
# SimParams50(1e4, 2e4, 2000, 100, 5, 1, 400, "1e10"),
]
)

View File

@@ -431,6 +431,9 @@ sims = [
(SimParams50(1e3, 2e4, 2000, 100, 5, 1, 400, "5e9"), None, 20000),
(SimParams50(1e3, 2e4, 2000, 100, 5, 1, 400, "1e10"), None, 20000),
(SimParams50(1e3, 2e4, 2000, 100, 5, 1, 400, "2e10"), None, 20000),
(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),
]
measurements = { real.machine_name: [human, norm, None, None] for (real, human, norm) in sims }
@@ -4879,6 +4882,7 @@ set_meas("50-0.0004rad-1000ctl_cond-20000coupling_cond-2000ps-100ps-5ctl-5coupli
Piecewise(
[
[ -17260, -3784 ], # -1.000, M1=-13550
[ 1294, -1671 ], # 0.000, M1=-8291
[ 16709, -676 ], # 1.000, M1=-4803
]
)
@@ -4888,6 +4892,7 @@ set_meas("50-0.0004rad-1000ctl_cond-20000coupling_cond-2000ps-100ps-5ctl-5coupli
Piecewise(
[
[ -17427, 4252 ], # -1.000, M1=-12305
[ 6604, 10894 ], # 0.000, M1=-4913
[ 16740, 13291 ], # 1.000, M1=-1934
]
)
@@ -4903,4 +4908,15 @@ Piecewise(
)
""")
set_meas("50-0.0004rad-2000ctl_cond-20000coupling_cond-2000ps-100ps-5ctl-5coupling-3_1_winding-1e10-drive", """
Piecewise(
[
[ -17555, 2961 ], # -1.000, M1=-12179
[ -17243, 3193 ], # -0.200, M1=-11947
[ 7967, 10735 ], # 0.000, M1=-4212
[ 16755, 13090 ], # 1.000, M1=-1516
]
)
""")
if __name__ == '__main__': main()

View File

@@ -5457,6 +5457,10 @@ 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),
(2e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 1e10),
(1e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 5e9),
(1e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 1e10),
(1e3, 2e4, ps(2000), ps(100), 5, 1, um(400), 2e10),