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.78 | |
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.78')
-rwxr-xr-x | 1892/CH1/EX1.78/Example1_78.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/1892/CH1/EX1.78/Example1_78.sce b/1892/CH1/EX1.78/Example1_78.sce new file mode 100755 index 000000000..b690a3876 --- /dev/null +++ b/1892/CH1/EX1.78/Example1_78.sce @@ -0,0 +1,24 @@ +// Example 1.78
+
+clc;clear;close;
+
+// Given data
+format('v',6);
+P=4;//no. of poles
+f=50;//in Hz
+Tmax=110;//in N-m
+Nm=1360;//in rpm
+R2=0.25;//in ohm
+TstByTmax=1/2;//ratio
+
+//calculations
+Ns=120*f/P;//in rpm
+Sm=(Ns-Nm)/Ns;//slip at max speed
+X2=R2/Sm;//in ohm
+//Formula : Tmax=K*E2^2/2/X2 and Tst=K*E2^2*(R2+r)/((R2+r)^2+X2^2)
+//TstByTmax*RT^2+TstByTmax*X2^2-RT*2*X2=0;
+P=[TstByTmax -2*X2 X2^2*TstByTmax];//polynomial for RT
+RT=roots(P);//in ohm
+r=RT-R2;//in ohm
+r=r(2);//leaving higher value as Tmax goes with S>1 for this value
+disp(r,"Resistance required in series in ohm :");
|