diff options
Diffstat (limited to '3554/CH4/EX4.1/Ex4_1.sce')
-rw-r--r-- | 3554/CH4/EX4.1/Ex4_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3554/CH4/EX4.1/Ex4_1.sce b/3554/CH4/EX4.1/Ex4_1.sce new file mode 100644 index 000000000..07723237a --- /dev/null +++ b/3554/CH4/EX4.1/Ex4_1.sce @@ -0,0 +1,13 @@ +// Exa 4.1
+
+clc;
+clear all;
+
+// Given data
+
+Iful = 200; // Fullscale deflection current in micro Amperes
+Sen= 1/(Iful*10^-3) ; // Sensitivity of Voltmeter(K Ohms/V)
+
+// Solution
+
+printf(' The sensitivity of the voltmeter = %d k Ohms/V \n',Sen);
|