diff options
Diffstat (limited to '3828/CH12/EX12.5/Ex12_5.sce')
-rw-r--r-- | 3828/CH12/EX12.5/Ex12_5.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3828/CH12/EX12.5/Ex12_5.sce b/3828/CH12/EX12.5/Ex12_5.sce new file mode 100644 index 000000000..650e4244d --- /dev/null +++ b/3828/CH12/EX12.5/Ex12_5.sce @@ -0,0 +1,17 @@ +//Chapter 12 : Semiconductor Physics + +clear; + +//Variable declaration +RH=3.22*10**-4 //Hall coefficient +rho=9.0*10**-3 +e=1.6*10**-19 + +//Calculations +p=1/(RH*e)/10**21 +myup=RH/rho + +//Result +mprintf("Hole concentration= %.2f*10**21 m**-3",p) +mprintf("\nMobility of holes= %.5f m**2 V**-1 s**-1",myup) + |