diff options
Diffstat (limited to '2243/CH14/EX14.6')
-rwxr-xr-x | 2243/CH14/EX14.6/Ex14_6.sce | 12 | ||||
-rwxr-xr-x | 2243/CH14/EX14.6/Res14_6.txt | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/2243/CH14/EX14.6/Ex14_6.sce b/2243/CH14/EX14.6/Ex14_6.sce new file mode 100755 index 000000000..ba37d4af0 --- /dev/null +++ b/2243/CH14/EX14.6/Ex14_6.sce @@ -0,0 +1,12 @@ +clc();
+clear;
+//Given :
+P = 10; // Power in W
+lambda =5000; // wavelength in A
+SI = 7*10^3; // Sun's radiation intensity in W/cm^2
+// 1 A = 1.0*10^-8 cm
+I = P/(lambda*10^-8)^2; //Intensity in W/cm^2
+Ratio = (I)/SI;
+printf("Intensity = %.0f x 10^6 kW/cm^2 \n",I*10^-9);
+printf("Intensity of this laser source is %.1f x 10^6 times the intensity of Sun radiation",Ratio*10^-6);
+//Textbook : Only order of 10 is considered in the result
diff --git a/2243/CH14/EX14.6/Res14_6.txt b/2243/CH14/EX14.6/Res14_6.txt new file mode 100755 index 000000000..1bcc6c569 --- /dev/null +++ b/2243/CH14/EX14.6/Res14_6.txt @@ -0,0 +1,2 @@ + Intensity = 4 x 10^6 kW/cm^2
+Intensity of this laser source is 0.6 x 10^6 times the intensity of Sun radiation
\ No newline at end of file |