diff options
Diffstat (limited to '2534/CH5/EX5.15/Ex5_15.sce')
-rwxr-xr-x | 2534/CH5/EX5.15/Ex5_15.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2534/CH5/EX5.15/Ex5_15.sce b/2534/CH5/EX5.15/Ex5_15.sce new file mode 100755 index 000000000..a7a81b905 --- /dev/null +++ b/2534/CH5/EX5.15/Ex5_15.sce @@ -0,0 +1,18 @@ +//Ex5_15
+clc
+C = 600*10^-6
+T = 20*10^-3
+Vr = 1.2
+Vdc = 9
+Vac =Vr/(2*(3^.5))
+r = Vac/Vdc
+Idc = (Vr*C)/(T/2)
+RL = Vdc/Idc
+disp("C = "+string(C)+"F")//rectifier capacitance
+disp("T = "+string(T)+"s")//time
+disp("Vr = "+string(Vr)+"V")//ripple voltage
+disp("Vdc = "+string(Vdc)+"V")//D.C. voltage
+disp("Vac = "+string(Vac)+"V")//A.C. voltage
+disp("r = "+string(r))//ripple factor
+disp("Idc = "+string(Idc)+"A")//D.C. current
+disp("RL = "+string(RL)+"ohm")//load resistance
|