diff options
Diffstat (limited to '1061/CH9/EX9.14/Ex9_14.sce')
-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 |