summaryrefslogtreecommitdiff
path: root/3754/CH19/EX19.13/19_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH19/EX19.13/19_13.sce')
-rw-r--r--3754/CH19/EX19.13/19_13.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3754/CH19/EX19.13/19_13.sce b/3754/CH19/EX19.13/19_13.sce
new file mode 100644
index 000000000..1f32a9fd2
--- /dev/null
+++ b/3754/CH19/EX19.13/19_13.sce
@@ -0,0 +1,18 @@
+clear//
+
+//Variables
+
+Idc = 0.2 //Average value of current (in Ampere)
+Vdc = 30.0 //Average value of voltage (in volts)
+C1=100.0;C2=100.0;
+L = 5.0 //Inductance (in Henry)
+f = 50.0 //Frequency (in Hertz)
+
+//Calculation
+
+RL = Vdc / Idc //Load resistance (in ohm)
+gamma = 5700.0 / (C1 * C2 * RL * L) //Ripple factor
+
+//Result
+
+printf("\n Ripple factor for 50 Hz supply is %0.3f .",gamma)