diff options
Diffstat (limited to '1445/CH1/EX1.39/ch1_ex_39.sce')
-rw-r--r-- | 1445/CH1/EX1.39/ch1_ex_39.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1445/CH1/EX1.39/ch1_ex_39.sce b/1445/CH1/EX1.39/ch1_ex_39.sce new file mode 100644 index 000000000..237e65eb5 --- /dev/null +++ b/1445/CH1/EX1.39/ch1_ex_39.sce @@ -0,0 +1,21 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 39 + +disp("CHAPTER 1"); +disp("EXAMPLE 39"); + +//VARIABLE INITIALIZATION +v=2; //in Volts +r=2; //in Ohms + +//SOLUTION +z_star=r/3; +req1=(r/3)+r; +req2=(r/3)+r; +req3=(req1*req2)/(req1+req2); +req4=(r/3)+req3; +req5=(req4*r)/(req4+r); +I=v/req5; +disp(sprintf("The value of I is %d A",I)); + +//END |