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 /1061/CH9/EX9.14 | |
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 '1061/CH9/EX9.14')
-rwxr-xr-x | 1061/CH9/EX9.14/Ex9_14.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1061/CH9/EX9.14/Ex9_14.sce b/1061/CH9/EX9.14/Ex9_14.sce new file mode 100755 index 000000000..51f5b89af --- /dev/null +++ b/1061/CH9/EX9.14/Ex9_14.sce @@ -0,0 +1,10 @@ +//Ex:9.14
+clc;
+clear;
+close;
+Eg1=1.12;// band gap for Si in eV
+Eg2=0.667;// band gap for Ge in eV
+y_si=1.24/Eg1;// cut off wavelength for Si in um
+y_he=1.24/Eg2;// cut off wavelength for Ge in um
+printf("The cut off wavelength for Si =%f um", y_si);
+printf("\n The cut off wavelength for Ge =%f um", y_he);
\ No newline at end of file |