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 --- 2825/CH2/EX2.10/Ex2_10.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2825/CH2/EX2.10/Ex2_10.sce (limited to '2825/CH2/EX2.10') diff --git a/2825/CH2/EX2.10/Ex2_10.sce b/2825/CH2/EX2.10/Ex2_10.sce new file mode 100755 index 000000000..c6add5430 --- /dev/null +++ b/2825/CH2/EX2.10/Ex2_10.sce @@ -0,0 +1,17 @@ +//Ex2_10 Pg-91 +clc + +e=1.6*10^(-19) //electron charge +un=700 //mobility of silicon +n=10^17 //concentration of phosphorous atoms +sigma=e*un*n //conductivity +printf("Conductivity = %.1f (ohm-cm)^-1",sigma) +res=sigma^(-1) //resistivity +printf("\n Resistivity = %.4f ohm-cm",res) +Rh=-(e*n)^(-1) //hall coefficient +printf("\n Hall coefficient = %.1f cm^3/C",Rh) +Ix=10^-3 +Bz=10^(-5) +x=10^(-2) +Vh=(Ix*Bz*Rh)/x +printf("\n Hall Volage = %.1f uV",Vh*10^6) -- cgit