diff options
Diffstat (limited to '3830/CH1/EX1.27/Ex1_27.sce')
-rw-r--r-- | 3830/CH1/EX1.27/Ex1_27.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3830/CH1/EX1.27/Ex1_27.sce b/3830/CH1/EX1.27/Ex1_27.sce new file mode 100644 index 000000000..3b819b980 --- /dev/null +++ b/3830/CH1/EX1.27/Ex1_27.sce @@ -0,0 +1,16 @@ +// Exa 1.27
+
+clc;
+clear;
+
+// Given
+
+// A moving coil Ammeter
+FSR = 10; // Full scale reading in Amp
+No_of_div = 100;
+
+// Solution
+
+one_scale_div = FSR/No_of_div ; // in Amp
+Resolution = 1/2 * one_scale_div ; // Since, the instrument can read upto half of the full-scale division(Amp)
+printf('Resolution = %d mA \n', Resolution*1000);
|