diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3129/CH5/EX5.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3129/CH5/EX5.3')
-rwxr-xr-x | 3129/CH5/EX5.3/Ex5_3.sce | 18 |
1 files changed, 18 insertions, 0 deletions
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);
|