blob: ff99963585b57db503600ada49819929b7e4f048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear
//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
printf("\n Peak Ripple Voltage = %.1f V",v)
|