diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2153/CH16/EX16.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2153/CH16/EX16.6')
-rwxr-xr-x | 2153/CH16/EX16.6/ex_16_6.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2153/CH16/EX16.6/ex_16_6.sce b/2153/CH16/EX16.6/ex_16_6.sce new file mode 100755 index 000000000..19706e555 --- /dev/null +++ b/2153/CH16/EX16.6/ex_16_6.sce @@ -0,0 +1,13 @@ +//Example 16.6 : intrinsic carrier density +clc; +clear; +close; +//given data : +format('v',10) +e=1.602*10^-19; +p=3000;// in ohm/m +sigma=1/p;// in ohm/m +mu_n=0.14;// in m^2/V-sec +mu_p=0.05;// in m^2/V-sec +n_i=sigma/(e*(mu_n+mu_p)); +disp(n_i,"the concentration,n_i(/m^3) = ") |