summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.4
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.4
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.4')
-rwxr-xr-x695/CH2/EX2.4/Ex2_4.sce16
-rwxr-xr-x695/CH2/EX2.4/Ex2_4.txt16
-rwxr-xr-x695/CH2/EX2.4/R2_4.txt8
3 files changed, 40 insertions, 0 deletions
diff --git a/695/CH2/EX2.4/Ex2_4.sce b/695/CH2/EX2.4/Ex2_4.sce
new file mode 100755
index 000000000..a7e80cbe2
--- /dev/null
+++ b/695/CH2/EX2.4/Ex2_4.sce
@@ -0,0 +1,16 @@
+//Caption:Find the generated voltage and armature current
+//Exa:2.4
+clc;
+clear;
+close;
+V_t=300;//in volts
+V_b=1;//voltage drop per brush in volts
+I=200;//in amperes
+R_f=200;//shunt feild winding resistance in ohms
+R_a=0.05;//armature winding resistance in ohms
+R_se=0.04;//Series feild 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+R_se)*I_a+(2*V_b);
+disp(E_g,'Value of generated voltage (in volts)=');
+disp(I_a,'Value of armature current (in Ampers)=') \ No newline at end of file
diff --git a/695/CH2/EX2.4/Ex2_4.txt b/695/CH2/EX2.4/Ex2_4.txt
new file mode 100755
index 000000000..a7e80cbe2
--- /dev/null
+++ b/695/CH2/EX2.4/Ex2_4.txt
@@ -0,0 +1,16 @@
+//Caption:Find the generated voltage and armature current
+//Exa:2.4
+clc;
+clear;
+close;
+V_t=300;//in volts
+V_b=1;//voltage drop per brush in volts
+I=200;//in amperes
+R_f=200;//shunt feild winding resistance in ohms
+R_a=0.05;//armature winding resistance in ohms
+R_se=0.04;//Series feild 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+R_se)*I_a+(2*V_b);
+disp(E_g,'Value of generated voltage (in volts)=');
+disp(I_a,'Value of armature current (in Ampers)=') \ No newline at end of file
diff --git a/695/CH2/EX2.4/R2_4.txt b/695/CH2/EX2.4/R2_4.txt
new file mode 100755
index 000000000..3609b2160
--- /dev/null
+++ b/695/CH2/EX2.4/R2_4.txt
@@ -0,0 +1,8 @@
+ Value of generated voltage (in volts)=
+
+ 320.135
+
+ Value of armature current (in Ampers)=
+
+ 201.5
+ \ No newline at end of file