diff options
Diffstat (limited to '3769/CH5/EX5.42/Ex5_42.sce')
-rw-r--r-- | 3769/CH5/EX5.42/Ex5_42.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3769/CH5/EX5.42/Ex5_42.sce b/3769/CH5/EX5.42/Ex5_42.sce new file mode 100644 index 000000000..42e2d119a --- /dev/null +++ b/3769/CH5/EX5.42/Ex5_42.sce @@ -0,0 +1,18 @@ +clear +//Given +n=10 +E=1.5 +R=4 //ohm +r=0.1 +a=8 + +//Calculation +Emf=n*E +Rt=R+(n*r) +I=Emf/Rt +Emf1=(a*E)-(2*E) +I1=Emf1/Rt +I11=I-I1 + +//Result +printf("\n Reduction in current is %0.3f A", I11) |