summaryrefslogtreecommitdiff
path: root/3554/CH1/EX1.7/Ex1_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3554/CH1/EX1.7/Ex1_7.sce')
-rw-r--r--3554/CH1/EX1.7/Ex1_7.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3554/CH1/EX1.7/Ex1_7.sce b/3554/CH1/EX1.7/Ex1_7.sce
new file mode 100644
index 000000000..e466deaba
--- /dev/null
+++ b/3554/CH1/EX1.7/Ex1_7.sce
@@ -0,0 +1,19 @@
+// Exa 1.7
+
+clc;
+clear all;
+
+// Given data
+
+Range= 600; //volgmeter range(volts)
+Accu= 0.02; //Accuracy
+X= 250; //voltage to be measured(volts)
+
+// Solution
+
+Mag= Accu * Range; //magnitude of limiting error
+X_mag = Mag/X * 100; // limiting error at 250V inpercentag
+
+printf('Limiting error when instrument is used to measure at 250V = %.1f percentage \n',X_mag);
+
+