summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.2
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.2
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.2')
-rwxr-xr-x695/CH2/EX2.2/Ex2_2.sce19
-rwxr-xr-x695/CH2/EX2.2/Ex2_2.txt19
-rwxr-xr-x695/CH2/EX2.2/R2_2.txt7
3 files changed, 45 insertions, 0 deletions
diff --git a/695/CH2/EX2.2/Ex2_2.sce b/695/CH2/EX2.2/Ex2_2.sce
new file mode 100755
index 000000000..6f635883a
--- /dev/null
+++ b/695/CH2/EX2.2/Ex2_2.sce
@@ -0,0 +1,19 @@
+//Caption:Find the load shared by two DC generators
+//Exa:2.2
+clc;
+clear;
+close;
+E_g1=120;//in volts
+E_g2=115;//in volts
+R_a1=0.05;//armature winding resistance of first generator (in ohms)
+R_a2=0.04;//armature winding resistance of second generator (in ohms)
+R_f1=20;//feild winding resistance of first generator (in ohms)
+R_f2=25;//feild winding resistance of seccond generator (in ohms)
+P=25000;//in watts
+V_t=(5275+sqrt((5275^2)-(4*45.09*25000)))/(2*45.09);//terminal voltage in volts
+I_1=(E_g1-(V_t*(1+(R_a1/R_f1))))/R_a1;//in amperes
+I_2=(E_g2-(V_t*(1+(R_a2/R_f2))))/R_a2;//in amperes
+P_1=V_t*I_1/1000;//in kilo watts
+P_2=V_t*I_2/1000;//in kilo watts
+disp(P_1,'Power shared by generator-1(in Kilo Watts)= ');
+disp(P_2,'Power shared by generator-2(in Kilo Watts)= '); \ No newline at end of file
diff --git a/695/CH2/EX2.2/Ex2_2.txt b/695/CH2/EX2.2/Ex2_2.txt
new file mode 100755
index 000000000..6f635883a
--- /dev/null
+++ b/695/CH2/EX2.2/Ex2_2.txt
@@ -0,0 +1,19 @@
+//Caption:Find the load shared by two DC generators
+//Exa:2.2
+clc;
+clear;
+close;
+E_g1=120;//in volts
+E_g2=115;//in volts
+R_a1=0.05;//armature winding resistance of first generator (in ohms)
+R_a2=0.04;//armature winding resistance of second generator (in ohms)
+R_f1=20;//feild winding resistance of first generator (in ohms)
+R_f2=25;//feild winding resistance of seccond generator (in ohms)
+P=25000;//in watts
+V_t=(5275+sqrt((5275^2)-(4*45.09*25000)))/(2*45.09);//terminal voltage in volts
+I_1=(E_g1-(V_t*(1+(R_a1/R_f1))))/R_a1;//in amperes
+I_2=(E_g2-(V_t*(1+(R_a2/R_f2))))/R_a2;//in amperes
+P_1=V_t*I_1/1000;//in kilo watts
+P_2=V_t*I_2/1000;//in kilo watts
+disp(P_1,'Power shared by generator-1(in Kilo Watts)= ');
+disp(P_2,'Power shared by generator-2(in Kilo Watts)= '); \ No newline at end of file
diff --git a/695/CH2/EX2.2/R2_2.txt b/695/CH2/EX2.2/R2_2.txt
new file mode 100755
index 000000000..b8b011b7e
--- /dev/null
+++ b/695/CH2/EX2.2/R2_2.txt
@@ -0,0 +1,7 @@
+ Power shared by generator-1(in Kilo Watts)=
+
+ 17.210003
+
+ Power shared by generator-2(in Kilo Watts)=
+
+ 7.7899966 \ No newline at end of file