diff options
Diffstat (limited to '3554/CH3/EX3.1/Ex3_1.sce')
-rw-r--r-- | 3554/CH3/EX3.1/Ex3_1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3554/CH3/EX3.1/Ex3_1.sce b/3554/CH3/EX3.1/Ex3_1.sce new file mode 100644 index 000000000..2a081ccf3 --- /dev/null +++ b/3554/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,16 @@ +// Exa 3.1
+
+clc;
+clear all;
+
+// Given data
+
+Rm= 100; // Internal resistance in Ohm's
+Im= 1; // Full scale deflecfion current in milliAmpere
+I= 100; // Total current in milli Ampere
+
+// Solution
+
+Rsh= (Im*Rm)/(I-Im); // Shunt resistance
+printf('The value of shunt resistance = %.2f Ohm \n', Rsh);
+
|