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 /503/CH9/EX9.3/ch9_3.sci | |
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 '503/CH9/EX9.3/ch9_3.sci')
-rwxr-xr-x | 503/CH9/EX9.3/ch9_3.sci | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/503/CH9/EX9.3/ch9_3.sci b/503/CH9/EX9.3/ch9_3.sci new file mode 100755 index 000000000..28b75f95b --- /dev/null +++ b/503/CH9/EX9.3/ch9_3.sci @@ -0,0 +1,29 @@ +//to find slip at max torque,full load slip and rotor current at starting
+
+clc;
+//Tfl=(3/w_s)*(V^2*Rs/s_fl)/((R2/s_fl)^2+X2^2); (i)
+//Ts=(3/w_s)*(V^2*R2)/(R2^2+X2^2); (ii)
+//Tmax=(3/w_s)*(.5*V^2)/X2^2; (iii)
+//Tmax/Ts=2; k=R2/X2; (iii)/(ii)and solving
+//k^2-4*k+1=0;
+function [x]=quad(a,b,c)
+ d=sqrt(b^2-4*a*c);
+ x1=(-b+d)/(2*a);
+ x2=(-b-d)/(2*a);
+ if(x1>x2)
+ x=x2;
+ else
+ x=x1;
+ end
+endfunction
+k=quad(1,-4,1);
+disp(k,'s_max_T');
+
+//(iii)/(i)and solving
+//s_fl^2-1.072*s_fl+.072=0
+s_fl=quad(1,-1.072,.072);
+disp(s_fl,'s_fl');
+
+//a=I2_start/I2_fullload
+a=sqrt((k/s_fl)^2+1)/(k^2+1);
+disp(a,'I2_start/I2_fullload');
\ No newline at end of file |