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.50 | |
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.50')
-rwxr-xr-x | 1892/CH1/EX1.50/Example1_50.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1892/CH1/EX1.50/Example1_50.sce b/1892/CH1/EX1.50/Example1_50.sce new file mode 100755 index 000000000..6c35a5de4 --- /dev/null +++ b/1892/CH1/EX1.50/Example1_50.sce @@ -0,0 +1,23 @@ +// Example 1.50
+
+clear; clc; close;
+
+format('v',5);
+// Given data
+PA=4;//no. of poles
+PB=6;//no. of poles
+f=50;//in Hz
+fr2=1;//in Hz
+
+//Calculations
+Nsc=120*f/(PA+PB);//synchronous speed of set in rpm
+S=1;//Slip
+N=Nsc-(S/f)*Nsc;//combined speed of set in rpm
+disp(N,"Combibned spoeed of set in rpm : ");
+NSA=120*f/PA;//in rpm
+SA=(NSA-N)/NSA;//slip
+disp(SA*100,"Slip of machines B in % : ");
+fr1=SA*f;//in Hz
+NSB=120*fr1/PB;//in rpm
+SB=(NSB-N)/NSB;//slip
+disp(SB*100,"Slip of machines B in % : ");
|