diff options
Diffstat (limited to '3537/CH5/EX5.25')
-rw-r--r-- | 3537/CH5/EX5.25/Ex5_25.sce | 12 | ||||
-rw-r--r-- | 3537/CH5/EX5.25/Ex5_25.txt | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/3537/CH5/EX5.25/Ex5_25.sce b/3537/CH5/EX5.25/Ex5_25.sce new file mode 100644 index 000000000..404bbcf94 --- /dev/null +++ b/3537/CH5/EX5.25/Ex5_25.sce @@ -0,0 +1,12 @@ +//Example 5_25
+clc();
+clear;
+//To find the wavelength at which planes give rise to maximum intensity
+d=275 //units in pm
+theta=45 //units in degrees
+lamda=(2*d*sin(theta*%pi/180)) //units in pm
+n=3
+printf("\nFor n=3 lamda=%.2f",lamda/n)
+n=4
+printf("\nFor n=4 lamda=%.2f",lamda/n)
+printf("\nLamda lies beyond the range of wavelengths of polychromatic source")
diff --git a/3537/CH5/EX5.25/Ex5_25.txt b/3537/CH5/EX5.25/Ex5_25.txt new file mode 100644 index 000000000..7df930bc8 --- /dev/null +++ b/3537/CH5/EX5.25/Ex5_25.txt @@ -0,0 +1,3 @@ +For n=3 lamda=129.64
+For n=4 lamda=97.23
+Lamda lies beyond the range of wavelengths of polychromatic source
\ No newline at end of file |