summaryrefslogtreecommitdiff
path: root/165/CH3/EX3.1.b
diff options
context:
space:
mode:
Diffstat (limited to '165/CH3/EX3.1.b')
-rw-r--r--165/CH3/EX3.1.b/ex3_1_b.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/165/CH3/EX3.1.b/ex3_1_b.sce b/165/CH3/EX3.1.b/ex3_1_b.sce
new file mode 100644
index 000000000..cdb3fae67
--- /dev/null
+++ b/165/CH3/EX3.1.b/ex3_1_b.sce
@@ -0,0 +1,11 @@
+//Example 3.1(b)
+clc;
+Rm=500; //Internal resistance
+Im=100*10^-6; //Full Scale deflection current
+I=100*10^-3; //Total current
+//The shunt can also be determined using
+//multiplying factor(n) that relates total current
+//and Full Scale deflection current as n=I/Im
+n=I/Im; //Multiplying factor
+Rsh=Rm/(n-1); //Shunt resistance
+printf('\nValue of Shunt resistance = %.2f ohm\n',Rsh) \ No newline at end of file