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 /1826/CH23/EX23.2 | |
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 '1826/CH23/EX23.2')
-rwxr-xr-x | 1826/CH23/EX23.2/ex23_2.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1826/CH23/EX23.2/ex23_2.sce b/1826/CH23/EX23.2/ex23_2.sce new file mode 100755 index 000000000..da48e6977 --- /dev/null +++ b/1826/CH23/EX23.2/ex23_2.sce @@ -0,0 +1,12 @@ +// Example 23.2, page no-625
+clear
+clc
+E=370*10^3//energy of c-c bond j/mol\
+lam=3200*10^-10 //m
+h=6.626*10^-34
+c=3*10^8//m/s
+E1=h*c/lam
+Ec=E/(6.02*10^23)
+printf("\nE=%.2f*10^-19 J",E1*10^19)
+printf("\nThe Energy of c-c Bond = %.1f * 10^-19",Ec*10^19)
+printf("\n\nThe UV light photon energy is sufficient to break a C-C bond.\nTherefore, the polymer deteriorates under the influence of UV light")
|