model fonte_degrau parameter Real Vo = 10.0; parameter Real to = 0.05; pin p, n; equation p.v - n.v = if time < to then 0.0 else Vo; p.i + n.i = 0; end fonte_degrau;