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 /431/CH4/EX4.10/EX4_10.sce | |
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 '431/CH4/EX4.10/EX4_10.sce')
-rwxr-xr-x | 431/CH4/EX4.10/EX4_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/431/CH4/EX4.10/EX4_10.sce b/431/CH4/EX4.10/EX4_10.sce new file mode 100755 index 000000000..d04e50933 --- /dev/null +++ b/431/CH4/EX4.10/EX4_10.sce @@ -0,0 +1,14 @@ +//Calculating the frequency of the rotor current
+//Chapter 4
+//Example 4.10
+//page 299
+clear;
+clc;
+disp("Example 4.10")
+P=12;.......................//pole
+f=50;.......................//frequency of induction motor in hertz
+Nr=485;........................//induction motor speed in rpm
+Ns=(120*f)/P;
+S=(Ns-Nr)/Nr;
+fr=S*f;
+printf("frequency of rotor current=%fHz",fr)
\ No newline at end of file |