diff options
Diffstat (limited to '3769/CH6/EX6.9')
-rw-r--r-- | 3769/CH6/EX6.9/Ex6_9.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3769/CH6/EX6.9/Ex6_9.sce b/3769/CH6/EX6.9/Ex6_9.sce new file mode 100644 index 000000000..afc566982 --- /dev/null +++ b/3769/CH6/EX6.9/Ex6_9.sce @@ -0,0 +1,15 @@ +clear +//Given +a=10 +b=7.0 +c=5 +d=4 +e=8.0 + +//Calculation +I1=(a+a)/(b+1) +I3=(c+(4*I1))/e +I2=(-a+(6*I3)+I1)/2.0 + +//Result +printf("\n Current I1= %0.3f A \nI2= %0.3f A \nI3= %0.3f A",I1,I2,I3) |