diff options
Diffstat (limited to '1427/CH19/EX19.10/19_10.sce')
-rw-r--r-- | 1427/CH19/EX19.10/19_10.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/1427/CH19/EX19.10/19_10.sce b/1427/CH19/EX19.10/19_10.sce new file mode 100644 index 000000000..74040b994 --- /dev/null +++ b/1427/CH19/EX19.10/19_10.sce @@ -0,0 +1,8 @@ +//ques-19.10
+//Calculating wavelength of radiation emitted
+clc
+E=1.76*10^-18;//energy absorbed (in J)
+c=3*10^8;//speed of light (in m/s)
+h=6.6*10^-34;//(in Js)
+w=(h*c)/E;
+printf("The wavelength of the radiation emitted is %.1f nm.",w*10^9);
|