blob: 60719212e1263277d1773315045f69631d6dfec1 (
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=10*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)
|