diff options
Diffstat (limited to '695/CH2/EX2.1')
-rwxr-xr-x | 695/CH2/EX2.1/Ex2_1.sce | 19 | ||||
-rwxr-xr-x | 695/CH2/EX2.1/Ex2_1.txt | 19 | ||||
-rwxr-xr-x | 695/CH2/EX2.1/R2_1.txt | 11 |
3 files changed, 49 insertions, 0 deletions
diff --git a/695/CH2/EX2.1/Ex2_1.sce b/695/CH2/EX2.1/Ex2_1.sce new file mode 100755 index 000000000..277b941ca --- /dev/null +++ b/695/CH2/EX2.1/Ex2_1.sce @@ -0,0 +1,19 @@ +//Caption:Find (a)current delievered by each machine and (b)terminal voltage
+//Exa:2.1
+clc;
+clear;
+close;
+//for 50kw generator
+I_1=50*1000/500;//full load current in ampere
+V_1=0.06*500;//full load voltage drop in volts
+V_1pi=V_1/I_1;//voltage drop per ampere of current supply in volts/ampere
+//for 100kw generator
+I_2=100*1000/500;//full load current in ampere
+V_2=0.04*500;//full load voltage drop in volts
+V_2pi=V_2/I_2;//voltage drop per ampere of current supply in volts/ampere
+i_1=250/(1+(V_1pi/V_2pi));//in amperes
+i_2=250/(1+(V_2pi/V_1pi));//in amperes
+disp(i_1,'(a) Current delievered in 50kw generator (in amperes)=');
+disp(i_2,' Current delievered in 100kw generator (in amperes)=');
+V_t=500-V_1pi*i_1;//in volts
+disp(V_t,'(b) Terminal voltage (in volts)=')
\ No newline at end of file diff --git a/695/CH2/EX2.1/Ex2_1.txt b/695/CH2/EX2.1/Ex2_1.txt new file mode 100755 index 000000000..277b941ca --- /dev/null +++ b/695/CH2/EX2.1/Ex2_1.txt @@ -0,0 +1,19 @@ +//Caption:Find (a)current delievered by each machine and (b)terminal voltage
+//Exa:2.1
+clc;
+clear;
+close;
+//for 50kw generator
+I_1=50*1000/500;//full load current in ampere
+V_1=0.06*500;//full load voltage drop in volts
+V_1pi=V_1/I_1;//voltage drop per ampere of current supply in volts/ampere
+//for 100kw generator
+I_2=100*1000/500;//full load current in ampere
+V_2=0.04*500;//full load voltage drop in volts
+V_2pi=V_2/I_2;//voltage drop per ampere of current supply in volts/ampere
+i_1=250/(1+(V_1pi/V_2pi));//in amperes
+i_2=250/(1+(V_2pi/V_1pi));//in amperes
+disp(i_1,'(a) Current delievered in 50kw generator (in amperes)=');
+disp(i_2,' Current delievered in 100kw generator (in amperes)=');
+V_t=500-V_1pi*i_1;//in volts
+disp(V_t,'(b) Terminal voltage (in volts)=')
\ No newline at end of file diff --git a/695/CH2/EX2.1/R2_1.txt b/695/CH2/EX2.1/R2_1.txt new file mode 100755 index 000000000..89e0edc61 --- /dev/null +++ b/695/CH2/EX2.1/R2_1.txt @@ -0,0 +1,11 @@ + (a) Current delievered in 50kw generator (in amperes)=
+
+ 62.5
+
+ Current delievered in 100kw generator (in amperes)=
+
+ 187.5
+
+ (b) Terminal voltage (in volts)=
+
+ 481.25
\ No newline at end of file |