diff options
Diffstat (limited to '3769/CH6/EX6.6/Ex6_6.sce')
-rw-r--r-- | 3769/CH6/EX6.6/Ex6_6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3769/CH6/EX6.6/Ex6_6.sce b/3769/CH6/EX6.6/Ex6_6.sce new file mode 100644 index 000000000..f228e94a9 --- /dev/null +++ b/3769/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,13 @@ +clear +//Given +a=-3 +b=4.0 +c=3 + +//Calculation +I1=a/(b+(c**2)) +I2=-1-c*I1 +I3=-(I1+I2) + +//Result +printf("\n Current through each cell is %0.2f A %0.2f A and %0.2f A",I1,I2,I3) |