From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 620/CH13/EX13.1/example13_1.sce | 13 +++++++++++++ 620/CH13/EX13.1/example13_1.txt | Bin 0 -> 462 bytes 2 files changed, 13 insertions(+) create mode 100644 620/CH13/EX13.1/example13_1.sce create mode 100644 620/CH13/EX13.1/example13_1.txt (limited to '620/CH13/EX13.1') diff --git a/620/CH13/EX13.1/example13_1.sce b/620/CH13/EX13.1/example13_1.sce new file mode 100644 index 000000000..0ecf75019 --- /dev/null +++ b/620/CH13/EX13.1/example13_1.sce @@ -0,0 +1,13 @@ +v1=1.5; +v2=0.96; +v3=1; +v4=0.014; +disp("Part a"); +true=v3+v4; +disp("the true reading (in V) of the voltmeter is"); disp(true); +disp("Part b"); +cor=true-v2; +disp("the voltmeter correction (in mV) is"); disp(cor*10^3); +disp("Part c"); +fsd=cor*100/v1; +disp("The F.S.D. accuacy (in %) of the meter is"); disp(fsd); \ No newline at end of file diff --git a/620/CH13/EX13.1/example13_1.txt b/620/CH13/EX13.1/example13_1.txt new file mode 100644 index 000000000..1aebc8d3c Binary files /dev/null and b/620/CH13/EX13.1/example13_1.txt differ -- cgit