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 --- 1736/CH4/EX4.1/Ch04Ex1.sce | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 1736/CH4/EX4.1/Ch04Ex1.sce (limited to '1736/CH4/EX4.1') diff --git a/1736/CH4/EX4.1/Ch04Ex1.sce b/1736/CH4/EX4.1/Ch04Ex1.sce new file mode 100755 index 000000000..a96510c05 --- /dev/null +++ b/1736/CH4/EX4.1/Ch04Ex1.sce @@ -0,0 +1,11 @@ +// Scilab Code Ex4.1: Page-112 (2006) +clc; clear; +m = 9.1e-031; // Mass of an electron, kg +e = 1.6e-019; // Charge on an electron, C +n = 8.5e+028; // Concentration of electron in Cu, per metre cube +rho = 1.7e-08; // Resistivity of Cu, ohm-m +t = m/(n*e^2*rho); // Collision time for an electron in monovalent Cu, s +printf("\nThe collision time for an electron in monovalent Cu = %3.1e s", t); + +// Result +// The collision time for an electron in monovalent Cu = 2.5e-014 s -- cgit