diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3816/CH8/EX8.7.a/8_7a.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3816/CH8/EX8.7.a/8_7a.sce')
-rw-r--r-- | 3816/CH8/EX8.7.a/8_7a.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3816/CH8/EX8.7.a/8_7a.sce b/3816/CH8/EX8.7.a/8_7a.sce new file mode 100644 index 000000000..fce834af5 --- /dev/null +++ b/3816/CH8/EX8.7.a/8_7a.sce @@ -0,0 +1,16 @@ +clc;
+clear;
+V=420;
+f=50;
+P=6;
+Z=1+(2*%i);//Both stator and rotor referred leakage impedance
+J=3;//Total inertia of the drive
+S1=1.96;
+S2=1;
+r1=1;
+r2=1;
+x1=4;
+ti=((((r1^2)+(x1^2))/(2*r2))*((S2^2)-(S1^2)))+(2*r1*(S2-S1))+(r2*log(S2/S1));
+Ws=2*%pi*(1000/60);
+t=J*(105^2)*(-ti/(V^2));
+disp(Ws,t,'The total time and speed is:')
|