app: multi-core-inverter: parameterize a few more cases

exploring how low control conductivity can go
This commit is contained in:
2022-08-26 04:17:01 -07:00
parent c90a73d395
commit 5b66c2bc26

View File

@@ -470,6 +470,56 @@ fn main() {
.with_ctl_conductivity(1e6)
.with_coupling_conductivity(1e4)
);
let deferred = || {deferred(); run_sim(
"49-80ns-4000ps-2e10A-1e3pctl-1e6pcpl",
drive_map_isolated_inv(),
params
.with_clock_phase_duration(ps(80000))
.with_clock_decay(ps(4000))
.with_input_magnitude(2e10)
.with_ctl_conductivity(1e3)
.with_coupling_conductivity(1e6)
)};
run_sim(
"50-80ns-4000ps-1e10A-1e3pctl-1e6pcpl",
drive_map_isolated_inv(),
params
.with_clock_phase_duration(ps(80000))
.with_clock_decay(ps(4000))
.with_input_magnitude(1e10)
.with_ctl_conductivity(1e3)
.with_coupling_conductivity(1e6)
);
run_sim(
"51-80ns-4000ps-5e9A-1e4pctl-5e6pcpl",
drive_map_isolated_inv(),
params
.with_clock_phase_duration(ps(80000))
.with_clock_decay(ps(4000))
.with_input_magnitude(5e9)
.with_ctl_conductivity(1e4)
.with_coupling_conductivity(5e6)
);
run_sim(
"52-80ns-4000ps-2e10A-1e3pctl-5e6pcpl",
drive_map_isolated_inv(),
params
.with_clock_phase_duration(ps(80000))
.with_clock_decay(ps(4000))
.with_input_magnitude(2e10)
.with_ctl_conductivity(1e3)
.with_coupling_conductivity(5e6)
);
run_sim(
"53-80ns-4000ps-5e10A-1e3pctl-5e6pcpl",
drive_map_isolated_inv(),
params
.with_clock_phase_duration(ps(80000))
.with_clock_decay(ps(4000))
.with_input_magnitude(5e10)
.with_ctl_conductivity(1e3)
.with_coupling_conductivity(5e6)
);
deferred();
}