blob: ba03a69f8ca08796f90a58a700b5e4b9094433f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clear
//
//
//
//Variable declaration
e=1.6*10**-19 //charge(c)
mew_e=0.19 //electron mobility(m**2/Vs)
T=300 //temperature(K)
KB=1.38*10**-23 //boltzmann constant
//Calculation
Dn=mew_e*KB*T/e //diffusion coefficient(m**2/sec)
//Result
|