From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 182/CH12/EX12.5/12_5.txt | 3 +++ 182/CH12/EX12.5/example12_5.sce | 18 ++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100755 182/CH12/EX12.5/12_5.txt create mode 100755 182/CH12/EX12.5/example12_5.sce (limited to '182/CH12/EX12.5') diff --git a/182/CH12/EX12.5/12_5.txt b/182/CH12/EX12.5/12_5.txt new file mode 100755 index 000000000..7a0dc90b7 --- /dev/null +++ b/182/CH12/EX12.5/12_5.txt @@ -0,0 +1,3 @@ + +5.Maximum measurable voltage=1.6 V + instrument resolution=(+/-)0.2 mV \ No newline at end of file diff --git a/182/CH12/EX12.5/example12_5.sce b/182/CH12/EX12.5/example12_5.sce new file mode 100755 index 000000000..fe5f57bb2 --- /dev/null +++ b/182/CH12/EX12.5/example12_5.sce @@ -0,0 +1,18 @@ +// to find the maximum measurable voltage and the instrument resolution +// example 12-5 in page 367 +clc; +// Data given +V=1.0190;// Standard cell voltage V=VR3=VB2 in volt +R13=100; R3=509.5; R4=290.5;// R13 is the slider resistance and resistance R3 and R4 all in ohm +R=100;// resistances R6 through R12 in ohm +l=100D-2;// length of the sliding wire in meter +// claculaion +VAE=(V/R3)*(R3+R4);// maximum measurable voltage in volt where I1=V/R3 +printf("Maximum measurable voltage=%.1f V\n",VAE); +I2=VAE/(8*R);//current I2 in ampere +VAB=I2*R13;//voltage across R13 in volt +Vpl=VAB/l;// slide wire voltage per unit length in volt/meter +printf("instrument resolution=(+/-)%.1f mV",Vpl) +//result +//Maximum measurable voltage=1.6 V +//instrument resolution=(+/-)0.2 mV \ No newline at end of file -- cgit