Chapter 19: Semiconductor Diodes

Example 19.1, Page 392

In [1]:
#Introduction
i=0.2                 #current in amp
C=0.01                #Capacitance in farad
t=20*10**-3           #time in sec

#Calculation
dv=i/C                #change in voltage w.r.t time
v=dv*t                #peak ripple voltage

#Result
print'Peak Ripple Voltage = %.1f V'%v
Peak Ripple Voltage = 0.4 V

Example 19.2, Page 406

In [2]:
#Introduction
i=0.2                 #current in amp
C=0.01                #Capacitance in farad
t=10*10**-3           #time in sec

#Calculation
dv=i/C                #change in voltage w.r.t time
v=dv*t                #peak ripple voltage

#Result
print'Peak Ripple Voltage = %.1f V'%v
Peak Ripple Voltage = 0.2 V
In [ ]: