blob: f37c65ed7c7afbecfd9fd57ac198e866282e7bc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//Example 6.4
//Program to compare the approximate radiative minority carrier
//lifetimes in gallium arsenide and silicon
clear;
clc ;
close ;
//Given data
N=10^18; //per cm^3 - HOLE CONCENTRATION
Br1=7.21*10^(-10); //cm^3 / s - RECOMBINATION COEFFICIENT FOR GaAs
Br2=1.79*10^(-15); //cm^3 / s - RECOMBINATION COEFFICIENT FOR Si
//Radiative minority carrier lifetime for GaAs
tau_r1=1/(Br1*N);
//Radiative minority carrier lifetime for Si
tau_r2=1/(Br2*N);
//Displaying the Results in Command Window
printf("\n\n\t Radiative minority carrier lifetime for GaAs is %0.2f ns.",tau_r1/10^(-9));
printf("\n\n\t Radiative minority carrier lifetime for Si is %0.2f ms.",tau_r2/10^(-3));
|