diff options
Diffstat (limited to '3828/CH12/EX12.2')
-rw-r--r-- | 3828/CH12/EX12.2/Ex12_2.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3828/CH12/EX12.2/Ex12_2.sce b/3828/CH12/EX12.2/Ex12_2.sce new file mode 100644 index 000000000..caa2620c9 --- /dev/null +++ b/3828/CH12/EX12.2/Ex12_2.sce @@ -0,0 +1,16 @@ +//Chapter 12 : Semiconductor Physics + +clear; + +//Variable declaration +myun=0.36 //mobility of electrons +myup=0.14 //mobility of holes +e=1.6*10**-19 +rhoi=2.2 //resistivity + +//Calculations +ni=1/(rhoi*e*(myun+myup))/10**18 + +//Result +mprintf("Intrinsic concentration= %.3f*10**18 m**-3",ni) + |