From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3537/CH5/EX5.25/Ex5_25.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 3537/CH5/EX5.25/Ex5_25.sce (limited to '3537/CH5/EX5.25/Ex5_25.sce') 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") -- cgit