app: multi-core-inverter: tune drive current and conductivity

This commit is contained in:
2022-08-27 03:14:41 -07:00
parent 1be2dc2419
commit 19f08fce9f

View File

@@ -592,6 +592,26 @@ fn main() {
.with_ctl_conductivity(5e3)
.with_coupling_conductivity(1e5)
);
run_sim(
"61-20ns-1000ps-4e9A-5e3pctl-1e5pcpl",
drive_map_isolated_inv(),
params
.with_clock_phase_duration(ps(20000))
.with_clock_decay(ps(1000))
.with_input_magnitude(4e9)
.with_ctl_conductivity(5e3)
.with_coupling_conductivity(1e5)
);
run_sim(
"62-20ns-500ps-2e9A-5e3pctl-5e4pcpl",
drive_map_isolated_inv(),
params
.with_clock_phase_duration(ps(20000))
.with_clock_decay(ps(500))
.with_input_magnitude(2e9)
.with_ctl_conductivity(5e3)
.with_coupling_conductivity(5e4)
);
deferred();
}