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 --- 1859/CH8/EX8.4/exa_8_4.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 1859/CH8/EX8.4/exa_8_4.sce (limited to '1859/CH8/EX8.4/exa_8_4.sce') diff --git a/1859/CH8/EX8.4/exa_8_4.sce b/1859/CH8/EX8.4/exa_8_4.sce new file mode 100755 index 000000000..e7caa1131 --- /dev/null +++ b/1859/CH8/EX8.4/exa_8_4.sce @@ -0,0 +1,14 @@ +// Exa 8.4 +clc; +clear; +close; +// Given data +l=2.5;// in cm +l=l*10^-2;// in meter +d=1;// in cm +d=d*10^-2;// in meter +Va= 1000;// in volts +theta= 1;// in degree +// Formula tand(theta) = l*Vd/(2*d*Va) +Vd= 2*d*Va/l*tand(theta);// in volts +disp(Vd,"Voltage required across the deflection plates in volts") -- cgit