diff options
Diffstat (limited to '1445/CH1/EX1.56/ch1_ex_56.sce')
-rw-r--r-- | 1445/CH1/EX1.56/ch1_ex_56.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1445/CH1/EX1.56/ch1_ex_56.sce b/1445/CH1/EX1.56/ch1_ex_56.sce new file mode 100644 index 000000000..3ec8eff3e --- /dev/null +++ b/1445/CH1/EX1.56/ch1_ex_56.sce @@ -0,0 +1,20 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 56 + +disp("CHAPTER 1"); +disp("EXAMPLE 56"); + +//VARIABLE INITIALIZATION +r=1; //this is an assumption +r1=r*1; //in Ohms +r2=r*2; //in Ohms +r3=r*3; //in Ohms + +//SOLUTION +ra=r1+r2+((r1*r2)/(r1+r2)); +rb=r2+r3+((r2*r3)/(r2+r3)); +rc=r1+r3+((r1*r3)/(r1+r3)); +disp(sprintf("The equivalent delta values are %f Ω, %f Ω and %f Ω",ra,rb,rc)); + +//END + |