diff options
Diffstat (limited to '3636/CH14/EX14.3/Ex14_3.sce')
-rw-r--r-- | 3636/CH14/EX14.3/Ex14_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3636/CH14/EX14.3/Ex14_3.sce b/3636/CH14/EX14.3/Ex14_3.sce new file mode 100644 index 000000000..232868a93 --- /dev/null +++ b/3636/CH14/EX14.3/Ex14_3.sce @@ -0,0 +1,13 @@ +clear;
+clc;
+RL=500 //load resistance in ohm
+C1=100*10^-6 //capacitance in F
+C2=50*10^-6 //capacitance in F
+L=5 //in H
+f=50 //frequency in Hz
+
+//Calculation
+Y=0.216/(RL*C1*C2*L*(2*%pi*f)^3)
+
+format("v",8)
+disp(Y,"Ripple factor Y= ") //The answers vary due to round off error
|