diff --git a/crates/applications/stacked_cores/scripts/stacked_cores_40xx_db.py b/crates/applications/stacked_cores/scripts/stacked_cores_40xx_db.py index 81f7699..8116d9c 100755 --- a/crates/applications/stacked_cores/scripts/stacked_cores_40xx_db.py +++ b/crates/applications/stacked_cores/scripts/stacked_cores_40xx_db.py @@ -5,11 +5,18 @@ from inverter_characteristics import Piecewise import subprocess import sys +def sim_name(couplings: int, wrappings: int, um: int, drive: str) -> str: + um_str = { + 400: "0.0004", + 600: "0.0059999997", + }[um] + sims = [ # real name, human friendly, normalization ("40-0.0004rad-12coupling-3_1_winding-5e10-drive", "fwd_40_12_3_1_5e10", 17000), ("40-0.0004rad-6coupling-3_1_winding-5e10-drive", "fwd_40_6_3_1_5e10", 17000), ("40-0.0004rad-6coupling-7_1_winding-5e10-drive", "fwd_40_6_7_1_5e10", 15000), + ("40-0.00059999997rad-20coupling-3_1_winding-3e10-drive", "fwd_40_600um_20_3_1_3e10", 10000), ("40-0.00059999997rad-20coupling-3_1_winding-5e10-drive", "fwd_40_600um_20_3_1_5e10", 19000), ("40-0.00059999997rad-20coupling-3_1_winding-1e11-drive", "fwd_40_600um_20_3_1_1e11", 15000), @@ -22,6 +29,19 @@ sims = [ ("40-0.00059999997rad-6coupling-9_1_winding-5e10-drive", "fwd_40_600um_6_9_1_5e10", 12000), ("40-0.00059999997rad-6coupling-9_1_winding-1e11-drive", "fwd_40_600um_6_9_1_1e11", 12000), ("40-0.00059999997rad-6coupling-11_1_winding-5e10-drive", "fwd_40_600um_6_11_1_5e10", 10000), + + # not yet analyzed: + (sim_name(6, 3, 600, "5e10"), "fwd_40_600um_6_7_1_5e10", 20000), + (sim_name(10, 3, 600, "5e10"), "fwd_40_600um_10_7_1_5e10", 20000), + (sim_name(6, 2, 600, "5e10"), "fwd_40_600um_6_5_1_5e10", 20000), + (sim_name(8, 2, 600, "5e10"), "fwd_40_600um_8_5_1_5e10", 20000), + (sim_name(10, 2, 600, "5e10"), "fwd_40_600um_10_5_1_5e10", 20000), + # sim_name(12, 3, 800, "5e10", norm=20000), + # sim_name(12, 3, 800, "1e11", norm=20000), + # sim_name(12, 2, 800, "5e10", norm=20000), + # sim_name(12, 2, 800, "1e11", norm=20000), + # sim_name(8, 1, 600, "5e10", norm=20000), + # sim_name(12, 1, 600, "5e10", norm=20000), ] measurements = { real: [human, norm, None, None] for (real, human, norm) in sims }