app: stacked_cores: 41-xx: start some new sims based on findings

higher current seems to _decrease_ tx at x=0, generally a good thing.
This commit is contained in:
2022-10-01 16:48:21 -07:00
parent 8484ab7de5
commit 2ac34f0753
2 changed files with 9 additions and 1 deletions

View File

@@ -118,8 +118,12 @@ sims = [
(SimParams41(10, 3, 800, "25e8"), None, 20000),
(SimParams41(9, 1, 400, "5e9"), None, 20000),
(SimParams41(9, 1, 400, "2e9"), None, 20000),
(SimParams41(9, 1, 400, "1e10"), None, 20000),
(SimParams41(10, 3, 800, "3e9"), None, 20000),
(SimParams41(9, 1, 400, "1e10"), None, 20000),
(SimParams41(9, 3, 600, "1e10"), None, 20000),
(SimParams41(10, 3, 800, "1e10"), None, 20000),
(SimParams41(9, 1, 400, "2e10"), None, 20000),
]
measurements = { real.machine_name: [human, norm, None, None] for (real, human, norm) in sims }