diff --git a/crates/applications/multi_core_inverter/src/main.rs b/crates/applications/multi_core_inverter/src/main.rs index e9135ad..84c756e 100644 --- a/crates/applications/multi_core_inverter/src/main.rs +++ b/crates/applications/multi_core_inverter/src/main.rs @@ -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(); }