diff options
Diffstat (limited to '1628/CH4/EX4.4/Ex4_4.sce')
-rwxr-xr-x | 1628/CH4/EX4.4/Ex4_4.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1628/CH4/EX4.4/Ex4_4.sce b/1628/CH4/EX4.4/Ex4_4.sce new file mode 100755 index 000000000..cf12bfb6c --- /dev/null +++ b/1628/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,23 @@ + + + // Examle 4.4 + + // From the diagram (4.6a) + // Using Superpositon theorem + +V=10; // Voltage source +I1=(V/(2+4+6)); // When 10-V voltage source is on { by ohm's law } + + // we have to find Is= ? + // When Is-A Current source is on + // will have { I2= -(2/3)Is } + // given that I1+I2= 0 + // there for 5/6 - (2/3)Is= 0 +Is=(5*3)/(6*2); // Source current +disp(' The value of source current (Is) = '+string(Is)+' Amp'); + + + + + + // p 108 4.4 |