diff options
Diffstat (limited to '1736/CH4/EX4.1/Ch04Ex1.sce')
-rwxr-xr-x | 1736/CH4/EX4.1/Ch04Ex1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
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
|