summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /695/CH2/EX2.9
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 '695/CH2/EX2.9')
-rwxr-xr-x695/CH2/EX2.9/Ex2_9.sce21
-rwxr-xr-x695/CH2/EX2.9/Ex2_9.txt21
-rwxr-xr-x695/CH2/EX2.9/R2_9.txt11
3 files changed, 53 insertions, 0 deletions
diff --git a/695/CH2/EX2.9/Ex2_9.sce b/695/CH2/EX2.9/Ex2_9.sce
new file mode 100755
index 000000000..09873b3ad
--- /dev/null
+++ b/695/CH2/EX2.9/Ex2_9.sce
@@ -0,0 +1,21 @@
+//Caption:Find the (a)armature current (b)generated emf (c)flux/pole
+//Exa:2.9
+clc;
+clear;
+close;
+V_t=200;//in volts
+P=4;//no. of poles
+A=2;
+Z=676;//no.of conductors
+R_L=10;//load resistance in ohms
+R_a=0.34;//armature winding resistance in ohms
+R_f=100;//feild winding resistance in ohms
+N=600;//speed in rpm
+I_f=V_t/R_f;//in amperes
+I=V_t/R_L;//in amperes
+I_a=I+I_f;
+E_g=V_t+I_a*R_a;
+Phy=E_g*60*A/(P*N*Z);
+disp(I_a,'(a) Armature current (in amperes)=');
+disp(E_g,'(b) Generated emf (in volts)=');
+disp(Phy*1000,'(c) flux/pole (in mili weber)='); \ No newline at end of file
diff --git a/695/CH2/EX2.9/Ex2_9.txt b/695/CH2/EX2.9/Ex2_9.txt
new file mode 100755
index 000000000..09873b3ad
--- /dev/null
+++ b/695/CH2/EX2.9/Ex2_9.txt
@@ -0,0 +1,21 @@
+//Caption:Find the (a)armature current (b)generated emf (c)flux/pole
+//Exa:2.9
+clc;
+clear;
+close;
+V_t=200;//in volts
+P=4;//no. of poles
+A=2;
+Z=676;//no.of conductors
+R_L=10;//load resistance in ohms
+R_a=0.34;//armature winding resistance in ohms
+R_f=100;//feild winding resistance in ohms
+N=600;//speed in rpm
+I_f=V_t/R_f;//in amperes
+I=V_t/R_L;//in amperes
+I_a=I+I_f;
+E_g=V_t+I_a*R_a;
+Phy=E_g*60*A/(P*N*Z);
+disp(I_a,'(a) Armature current (in amperes)=');
+disp(E_g,'(b) Generated emf (in volts)=');
+disp(Phy*1000,'(c) flux/pole (in mili weber)='); \ No newline at end of file
diff --git a/695/CH2/EX2.9/R2_9.txt b/695/CH2/EX2.9/R2_9.txt
new file mode 100755
index 000000000..a7d00bdef
--- /dev/null
+++ b/695/CH2/EX2.9/R2_9.txt
@@ -0,0 +1,11 @@
+ (a) Armature current (in amperes)=
+
+ 22.
+
+ (b) Generated emf (in volts)=
+
+ 207.48
+
+ (c) flux/pole (in mili weber)=
+
+ 15.346154 \ No newline at end of file