diff options
Diffstat (limited to '1445/CH1/EX1.26/ch1_ex_26.sce')
-rw-r--r-- | 1445/CH1/EX1.26/ch1_ex_26.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1445/CH1/EX1.26/ch1_ex_26.sce b/1445/CH1/EX1.26/ch1_ex_26.sce new file mode 100644 index 000000000..18b2768c4 --- /dev/null +++ b/1445/CH1/EX1.26/ch1_ex_26.sce @@ -0,0 +1,19 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 26 + +disp("CHAPTER 1"); +disp("EXAMPLE 26"); + +//VARIABLE INITIALIZATION +I1=5; //current source in Amperes +v2=100; //voltage source in Volts +r1=20; //in Ohms +r2=10; //in Ohms +r3=20; //in Ohms + +//SOLUTION +v1=(I1+(v2/r2))/((1/r1)+(1/r2)); +I=(v1-v2)/r2; +disp(sprintf("By Nodal analysis, the value of I is %d A",I)); + +//END |