diff options
Diffstat (limited to '3830/CH1/EX1.25/Ex1_25.sce')
-rw-r--r-- | 3830/CH1/EX1.25/Ex1_25.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3830/CH1/EX1.25/Ex1_25.sce b/3830/CH1/EX1.25/Ex1_25.sce new file mode 100644 index 000000000..e853a0ead --- /dev/null +++ b/3830/CH1/EX1.25/Ex1_25.sce @@ -0,0 +1,17 @@ +// Exa 1.25
+
+clc;
+clear;
+
+// Given
+
+// A 0-250 range milliAmmeter
+Er = 2; // Percentage accuracy of Ammeter in terms of FSR
+I = 150; // Measurement of Ammeter in mA
+Ifsr = 250; // Full scale reading of milliAmmeter (mA)
+
+// Solution
+
+dV = Er/100 * Ifsr; // Error in FSR reading
+Lr = 100*dV/I;
+printf('The limiting error = %.2f percent \n',Lr);
|