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 /695/CH2/EX2.16 | |
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 '695/CH2/EX2.16')
-rwxr-xr-x | 695/CH2/EX2.16/Ex2_16.sce | 22 | ||||
-rwxr-xr-x | 695/CH2/EX2.16/Ex2_16.txt | 22 | ||||
-rwxr-xr-x | 695/CH2/EX2.16/R2_16.txt | 12 |
3 files changed, 56 insertions, 0 deletions
diff --git a/695/CH2/EX2.16/Ex2_16.sce b/695/CH2/EX2.16/Ex2_16.sce new file mode 100755 index 000000000..e49852d43 --- /dev/null +++ b/695/CH2/EX2.16/Ex2_16.sce @@ -0,0 +1,22 @@ +//Caption:Find the (a)Flux per pole (b)total number of conductors (c) torque
+//Exa:2.16
+clc;
+clear;
+close;
+I_a=50;//in amperes
+P=6;//no.of poles
+E_g=200;//in volts
+N=1500;//speed in rpm
+A=6;
+L=0.25;//in meter
+d=0.2;//in meter
+B=0.9;//in tesla
+Theta=360/P;//angle subtended by pole shoe in degrees
+l=%pi*L*Theta/360;//arc length of pole shoe in meter
+area=l*d;//in meter^2
+Phy=B*area;
+disp(Phy,'(a) Flux per pole (in Weber)=');
+Z=ceil(E_g*60/(Phy*N));
+disp(Z,'(b) Total no. of conductors=');
+T=9.55*E_g*I_a/N;
+disp(T,'(c) Torque (in Newton-meter)=')
\ No newline at end of file diff --git a/695/CH2/EX2.16/Ex2_16.txt b/695/CH2/EX2.16/Ex2_16.txt new file mode 100755 index 000000000..e49852d43 --- /dev/null +++ b/695/CH2/EX2.16/Ex2_16.txt @@ -0,0 +1,22 @@ +//Caption:Find the (a)Flux per pole (b)total number of conductors (c) torque
+//Exa:2.16
+clc;
+clear;
+close;
+I_a=50;//in amperes
+P=6;//no.of poles
+E_g=200;//in volts
+N=1500;//speed in rpm
+A=6;
+L=0.25;//in meter
+d=0.2;//in meter
+B=0.9;//in tesla
+Theta=360/P;//angle subtended by pole shoe in degrees
+l=%pi*L*Theta/360;//arc length of pole shoe in meter
+area=l*d;//in meter^2
+Phy=B*area;
+disp(Phy,'(a) Flux per pole (in Weber)=');
+Z=ceil(E_g*60/(Phy*N));
+disp(Z,'(b) Total no. of conductors=');
+T=9.55*E_g*I_a/N;
+disp(T,'(c) Torque (in Newton-meter)=')
\ No newline at end of file diff --git a/695/CH2/EX2.16/R2_16.txt b/695/CH2/EX2.16/R2_16.txt new file mode 100755 index 000000000..6904c9596 --- /dev/null +++ b/695/CH2/EX2.16/R2_16.txt @@ -0,0 +1,12 @@ + (a) Flux per pole (in Weber)=
+
+ 0.0235619
+
+ (b) Total no. of conductors=
+
+ 340.
+
+ (c) Torque (in Newton-meter)=
+
+ 63.666667
+
\ No newline at end of file |