From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3754/CH19/EX19.13/19_13.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3754/CH19/EX19.13/19_13.sce (limited to '3754/CH19/EX19.13/19_13.sce') 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) -- cgit