diff options
Diffstat (limited to '1628/CH2/EX2.4')
-rwxr-xr-x | 1628/CH2/EX2.4/Ex2_4.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1628/CH2/EX2.4/Ex2_4.sce b/1628/CH2/EX2.4/Ex2_4.sce new file mode 100755 index 000000000..c0760bfba --- /dev/null +++ b/1628/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,19 @@ + + + // Example 2.4 + +v=8.8*{2/(2+2.4)}; // by voltage divider rule +disp(' Anknown Voltage across the R1 = '+string(v)+' volt'); + +v1=8.8*{2.4/(2+2.4)}; // by voltage divider rule +disp(' Anknown Voltage across the R1 = '+string(v1)+' volt'); +i=4.8/4; // I=V/R +disp(' Anknown Current I1 = '+string(i)+' Amp'); +i1=4.8/6; // I=V/R +disp(' Anknown Current I2 = '+string(i1)+' Amp'); + + + + + + // p 20 2.4 |