summaryrefslogtreecommitdiff
path: root/1445/CH1/EX1.49
diff options
context:
space:
mode:
Diffstat (limited to '1445/CH1/EX1.49')
-rw-r--r--1445/CH1/EX1.49/ch1_ex_49.sce38
1 files changed, 38 insertions, 0 deletions
diff --git a/1445/CH1/EX1.49/ch1_ex_49.sce b/1445/CH1/EX1.49/ch1_ex_49.sce
new file mode 100644
index 000000000..5f4945fa9
--- /dev/null
+++ b/1445/CH1/EX1.49/ch1_ex_49.sce
@@ -0,0 +1,38 @@
+//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS
+//Example 49
+
+disp("CHAPTER 1");
+disp("EXAMPLE 49");
+
+//VARIABLE INITIALIZATION
+v1=110; //voltage source in Volts
+v2=80; //voltage source in Volts
+v3=50; //voltage source in Volts
+r=2; //in Ohms
+
+//SOLUTION
+
+//solution (a)
+I1=4; //charging
+I2=6; //charging
+r1=((v1-v2)-((I1+I2)*r))/I1;
+r2=((v1-v3)-((I1+I2)*r))/I2;
+disp(sprintf("(a) R1= %f Ω",r1));
+disp(sprintf(" R2= %f Ω",r2));
+
+//solution (b)
+I1=2; //discharging
+I2=20; //charging
+r1=((v1-v2)-((I2-I1)*r))/(-I1);
+r2=((v1-v3)-((I2-I1)*r))/I2;
+disp(sprintf("(b) R1= %f Ω",r1));
+disp(sprintf(" R2= %f Ω",r2));
+
+//solution (c)
+I1=0;
+I2=(v1-v2)/r;
+r2=((v1-v3)-(I2*r))/I2;
+disp(sprintf("(c) I1=0 when R2= %d Ω",r2));
+
+//END
+