diff options
Diffstat (limited to '3769/CH5/EX5.43/Ex5_43.sce')
-rw-r--r-- | 3769/CH5/EX5.43/Ex5_43.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3769/CH5/EX5.43/Ex5_43.sce b/3769/CH5/EX5.43/Ex5_43.sce new file mode 100644 index 000000000..90c41c48f --- /dev/null +++ b/3769/CH5/EX5.43/Ex5_43.sce @@ -0,0 +1,18 @@ +clear +//Given +Emf=2 +Emf1=1.9 +Emf2=1.8 +R1=0.05 +R2=0.06 +R3=0.07 +R0=5 //ohm + +//Calculation +Emft=Emf+Emf1+Emf2 +R=R1+R2+R3 +Rt=R+R0 +I=Emft/Rt + +//Result +printf("\n The reading of the ammeter is %0.1f A",I) |