summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.5
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.5
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.5')
-rwxr-xr-x695/CH2/EX2.5/Ex2_5.sce17
-rwxr-xr-x695/CH2/EX2.5/Ex2_5.txt17
-rwxr-xr-x695/CH2/EX2.5/R2_5.txt15
3 files changed, 49 insertions, 0 deletions
diff --git a/695/CH2/EX2.5/Ex2_5.sce b/695/CH2/EX2.5/Ex2_5.sce
new file mode 100755
index 000000000..3b24f2096
--- /dev/null
+++ b/695/CH2/EX2.5/Ex2_5.sce
@@ -0,0 +1,17 @@
+//Caption:Find the (a)shunt feild current (b)armature current (c)generated emf in armature (d)load resistance
+//Exa:2.5
+clc;
+clear;
+close;
+V_t=250;//in volts
+I=195;//in amperes
+R_f=50;//shunt feild winding resistance in ohms
+R_a=0.05;//armature winding resistance in ohms
+I_f=V_t/R_f;//in amperes
+I_a=I+I_f;//in amperes
+E_g=V_t+(R_a*I_a);
+R_L=V_t/I;
+disp(I_f,'(a) Value of shunt feild current (in Amperes)=')
+disp(I_a,'(b) Value of armature current (in Amperes)=')
+disp(E_g,'(c) Value of generated voltage (in volts)=');
+disp(R_L,'(d) Value of load resistance (in ohms)=') \ No newline at end of file
diff --git a/695/CH2/EX2.5/Ex2_5.txt b/695/CH2/EX2.5/Ex2_5.txt
new file mode 100755
index 000000000..3b24f2096
--- /dev/null
+++ b/695/CH2/EX2.5/Ex2_5.txt
@@ -0,0 +1,17 @@
+//Caption:Find the (a)shunt feild current (b)armature current (c)generated emf in armature (d)load resistance
+//Exa:2.5
+clc;
+clear;
+close;
+V_t=250;//in volts
+I=195;//in amperes
+R_f=50;//shunt feild winding resistance in ohms
+R_a=0.05;//armature winding resistance in ohms
+I_f=V_t/R_f;//in amperes
+I_a=I+I_f;//in amperes
+E_g=V_t+(R_a*I_a);
+R_L=V_t/I;
+disp(I_f,'(a) Value of shunt feild current (in Amperes)=')
+disp(I_a,'(b) Value of armature current (in Amperes)=')
+disp(E_g,'(c) Value of generated voltage (in volts)=');
+disp(R_L,'(d) Value of load resistance (in ohms)=') \ No newline at end of file
diff --git a/695/CH2/EX2.5/R2_5.txt b/695/CH2/EX2.5/R2_5.txt
new file mode 100755
index 000000000..d017e8c3e
--- /dev/null
+++ b/695/CH2/EX2.5/R2_5.txt
@@ -0,0 +1,15 @@
+ (a) Value of shunt feild current (in Amperes)=
+
+ 5.
+
+ (b) Value of armature current (in Amperes)=
+
+ 200.
+
+ (c) Value of generated voltage (in volts)=
+
+ 260.
+
+ (d) Value of load resistance (in ohms)=
+
+ 1.2820513 \ No newline at end of file