summaryrefslogtreecommitdiff
path: root/3769/CH5/EX5.43/Ex5_43.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3769/CH5/EX5.43/Ex5_43.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3769/CH5/EX5.43/Ex5_43.sce')
-rw-r--r--3769/CH5/EX5.43/Ex5_43.sce18
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)