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 /833/CH11/EX11.3 | |
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 '833/CH11/EX11.3')
-rwxr-xr-x | 833/CH11/EX11.3/Ex11_3.sce | 14 | ||||
-rwxr-xr-x | 833/CH11/EX11.3/Ex11_3.txt | 14 | ||||
-rwxr-xr-x | 833/CH11/EX11.3/Result11_3.txt | 12 |
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 |