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 /2198/CH1/EX1.5.1 | |
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 '2198/CH1/EX1.5.1')
-rwxr-xr-x | 2198/CH1/EX1.5.1/Ex1_5_1.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2198/CH1/EX1.5.1/Ex1_5_1.sce b/2198/CH1/EX1.5.1/Ex1_5_1.sce new file mode 100755 index 000000000..bb3a3e04d --- /dev/null +++ b/2198/CH1/EX1.5.1/Ex1_5_1.sce @@ -0,0 +1,19 @@ +//Ex 1.5.1
+clc;clear;close;
+format('v',6);
+
+//Given :
+t1=35;//degreeC
+t2=60;//degreeC
+T1=t1+273;//K
+T2=t2+273;//K
+disp("Forbidden gap for Si : ");
+EG1_Si=1.21-3.6*10^-4*T1;//eV
+disp(EG1_Si,"at 35 degree C in eV")
+EG2_Si=1.21-3.6*10^-4*T2;//eV
+disp(EG2_Si,"at 60 degree C in eV")
+disp("Forbidden gap for Ge : ");
+EG1_Ge=0.785-2.23*10^-4*T1;//eV
+disp(EG1_Ge,"at 35 degree C in eV")
+EG2_Ge=0.785-2.23*10^-4*T2;//eV
+disp(EG2_Ge,"at 60 degree C in eV")
|