diff options
Diffstat (limited to '1445/CH1/EX1.24/ch1_ex_24.sce')
-rw-r--r-- | 1445/CH1/EX1.24/ch1_ex_24.sce | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/1445/CH1/EX1.24/ch1_ex_24.sce b/1445/CH1/EX1.24/ch1_ex_24.sce new file mode 100644 index 000000000..903627e49 --- /dev/null +++ b/1445/CH1/EX1.24/ch1_ex_24.sce @@ -0,0 +1,34 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 24 + +disp("CHAPTER 1"); +disp("EXAMPLE 24"); + +//VARIABLE INITIALIZATION +I=20; //current source in Amperes +v1=10; //voltage source in Volt +v2=40; //voltage source in Volts +r1=8; //in Ohms +r2=5; //in Ohms +r3=4; //in Ohms +r4=12; //in Ohms + +//SOLUTION + +//activating 20A current source +r=r2+((r3*r4)/(r3+r4)); +I1=(r*I)/(r+r1); +I_20=(r3*I1)/(r3+r4); + +//activating 10V battery source +req=r1+r2; +v_10=(-v1/req)/((1/req)+(1/r3)+(1/r4)); +I_10=v_10/r4; + +//activating 40V battery source +v_40=(v2/r3)/((1/req)+(1/r3)+(1/r4)); +I_40=v_40/r4; +I_tot=I_20+I_10+I_40; +disp(sprintf("By Superposition Theorem, the value of I is %f A",I_tot)); + +//END |