summaryrefslogtreecommitdiff
path: root/833/CH11/EX11.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /833/CH11/EX11.3
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '833/CH11/EX11.3')
-rwxr-xr-x833/CH11/EX11.3/Ex11_3.sce14
-rwxr-xr-x833/CH11/EX11.3/Ex11_3.txt14
-rwxr-xr-x833/CH11/EX11.3/Result11_3.txt12
3 files changed, 40 insertions, 0 deletions
diff --git a/833/CH11/EX11.3/Ex11_3.sce b/833/CH11/EX11.3/Ex11_3.sce
new file mode 100755
index 000000000..95fbb97c5
--- /dev/null
+++ b/833/CH11/EX11.3/Ex11_3.sce
@@ -0,0 +1,14 @@
+//Caption: Calculate (a)Number of poles (b)Slip (c)Slip for full load torque if total resistance in rotor circuit is doubled
+//Exa:11.3
+clc;
+clear;
+close;
+n=970//Speed of induction motor(in r.p.m)
+f=50//Frequency(in hertz)
+n_s=1000//Synchronous speed(in r.p.m)
+p=(f*120)/n_s
+disp(p,'(a)Number of poles=')
+s=((n_s-n)/n_s)*100
+disp(s,'(b)Slip(in%)=')
+S=((s/100)*2)*100
+disp(S,'(c)Required slip(in%)=') \ No newline at end of file
diff --git a/833/CH11/EX11.3/Ex11_3.txt b/833/CH11/EX11.3/Ex11_3.txt
new file mode 100755
index 000000000..95fbb97c5
--- /dev/null
+++ b/833/CH11/EX11.3/Ex11_3.txt
@@ -0,0 +1,14 @@
+//Caption: Calculate (a)Number of poles (b)Slip (c)Slip for full load torque if total resistance in rotor circuit is doubled
+//Exa:11.3
+clc;
+clear;
+close;
+n=970//Speed of induction motor(in r.p.m)
+f=50//Frequency(in hertz)
+n_s=1000//Synchronous speed(in r.p.m)
+p=(f*120)/n_s
+disp(p,'(a)Number of poles=')
+s=((n_s-n)/n_s)*100
+disp(s,'(b)Slip(in%)=')
+S=((s/100)*2)*100
+disp(S,'(c)Required slip(in%)=') \ No newline at end of file
diff --git a/833/CH11/EX11.3/Result11_3.txt b/833/CH11/EX11.3/Result11_3.txt
new file mode 100755
index 000000000..8b9f2d63b
--- /dev/null
+++ b/833/CH11/EX11.3/Result11_3.txt
@@ -0,0 +1,12 @@
+ (a)Number of poles=
+
+ 6.
+
+ (b)Slip(in%)=
+
+ 3.
+
+ (c)Required slip(in%)=
+
+ 6.
+ \ No newline at end of file