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 --- 2672/CH4/EX4.24/Ex4_24.sce | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 2672/CH4/EX4.24/Ex4_24.sce (limited to '2672/CH4/EX4.24/Ex4_24.sce') diff --git a/2672/CH4/EX4.24/Ex4_24.sce b/2672/CH4/EX4.24/Ex4_24.sce new file mode 100755 index 000000000..683b8abf8 --- /dev/null +++ b/2672/CH4/EX4.24/Ex4_24.sce @@ -0,0 +1,22 @@ +//Example 4_24 +clc; +clear; +close; +format('e',9); +//given data : +d=1.03;//mm +R=6.51;//ohm per 1000 ft. +n0=8.4*10^27;//electrons/m^3 +I=2;//A +A=%pi/4*d^2*10^-6;//m^2 +J=I/A;//A/m^2 +e=1.6*10^-19;//C/electron +v0=J/n0/e;//m/s +disp(v0,"(a) Drift Velocity(m/s)"); +R=R/1000/0.304;//ohm/m +E0=I*R;//V/m +mu=v0/E0;//m^2/V-s +disp(mu,"(b) Mobility(m^2/V-s)"); +sigma=n0*e*mu;//(ohm-m)^-1 +disp(sigma,"(c) Conductivity((ohm-m)^-1)") +//Answer wrong in the book. calculation mistake. -- cgit