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 /1892/CH1/EX1.82 | |
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 '1892/CH1/EX1.82')
-rwxr-xr-x | 1892/CH1/EX1.82/Example1_82.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/1892/CH1/EX1.82/Example1_82.sce b/1892/CH1/EX1.82/Example1_82.sce new file mode 100755 index 000000000..a1e5401e1 --- /dev/null +++ b/1892/CH1/EX1.82/Example1_82.sce @@ -0,0 +1,27 @@ +// Example 1.82
+
+clc;clear;close;
+
+// Given data
+format('v',7);
+TstByTfl=1;//ratio
+TmaxByTfl=2;//ratio
+
+//calculations
+TstByTmax=TstByTfl/TmaxByTfl;//ratio
+//Formula : TstByTmax=2*Sm/(1+Sm^2)
+//TstByTmax*Sm^2-2*Sm+TstByTmax=0
+P=[TstByTmax -2 TstByTmax];//polynomial for Sm
+Sm=roots(P);//slip at max torque
+Sm=Sm(2);//neglecting the higher value
+disp(Sm,"(a) Slip at which max torque occurs : ");
+//Formula : TflByTmax=2*S*Sm/(S^2+Sm^2)
+//S^2-TmaxByTfl*2*S*Sm+Sm^2=0
+P=[1 -TmaxByTfl*2*Sm Sm^2];//polynomial for S
+S=roots(P);//slip at max torque
+//Sm=Sm(2);//neglecting the higher value
+S=S(2);//neglecting the higher value
+disp(S,"(b) Full load slip : ");
+//I2stByI2fl^2=(Sm^2+S^2)/S^2/(1+Sm^2)
+I2stByI2fl=sqrt((Sm^2+S^2)/S^2/(1+Sm^2));//ratio
+disp(I2stByI2fl,"(c) Rotor current at starting ag full load current : ");
|