From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 3129/CH5/EX5.3/Ex5_3.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 3129/CH5/EX5.3/Ex5_3.sce (limited to '3129/CH5/EX5.3') diff --git a/3129/CH5/EX5.3/Ex5_3.sce b/3129/CH5/EX5.3/Ex5_3.sce new file mode 100755 index 000000000..e03140057 --- /dev/null +++ b/3129/CH5/EX5.3/Ex5_3.sce @@ -0,0 +1,18 @@ +//Finding the load inductance to limit the load Ripple current +//Example 5.3(Page No- 175) +clc +clear +//given data +Vs = 550;//V +R = 0.25;//Ohm +E = 0;//V +f = 250;//Hz +T = 1/f; +Ia = 200;//A +del_i = Ia*(10/100);//Current is limited to 10% of Ia +// d(del_I)/dk = 0 +//gives k = 0.5 +k = 0.5; + +L = (Vs*(1-k)*k*T)/del_i ; +printf('Required value of inductance L: %.2f mH',L*10^3); -- cgit