summaryrefslogtreecommitdiff
path: root/3769/CH9/EX9.35/Ex9_35.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH9/EX9.35/Ex9_35.sce')
-rw-r--r--3769/CH9/EX9.35/Ex9_35.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3769/CH9/EX9.35/Ex9_35.sce b/3769/CH9/EX9.35/Ex9_35.sce
new file mode 100644
index 000000000..c656f576b
--- /dev/null
+++ b/3769/CH9/EX9.35/Ex9_35.sce
@@ -0,0 +1,16 @@
+clear
+//Given
+Ig=0.015 //A
+G=5
+I=1
+V=15
+
+//Calculation
+S=(Ig*G)/(I-Ig)
+R=G*S/(G+S)
+R1=(V/Ig)-G
+R2=R1+G
+
+//Result
+printf("\n (i) Resistance of ammeter of range 0-1 A is %0.3f ohm", R)
+printf("\n (ii) Resistance of ammeter of range 0-15 A is %0.3f ohm", R2)