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 ++++++++++++ 3537/CH5/EX5.25/Ex5_25.txt | 3 +++ 2 files changed, 15 insertions(+) create mode 100644 3537/CH5/EX5.25/Ex5_25.sce create mode 100644 3537/CH5/EX5.25/Ex5_25.txt (limited to '3537/CH5/EX5.25') 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 -- cgit