diff options
Diffstat (limited to '1847/CH2/EX2.14/Ch02Ex14.sce')
-rwxr-xr-x | 1847/CH2/EX2.14/Ch02Ex14.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1847/CH2/EX2.14/Ch02Ex14.sce b/1847/CH2/EX2.14/Ch02Ex14.sce new file mode 100755 index 000000000..fc17dbd5f --- /dev/null +++ b/1847/CH2/EX2.14/Ch02Ex14.sce @@ -0,0 +1,13 @@ +// Scilab Code Ex2.14:: Page-2.13 (2009) +clc; clear; +b = 0.187; // Fringe width of the interfernce pattern due to biprism, cm +y1 = 1; // For simplicity assume distance between slit and biprism to be unity, cm +y1_prime = 1.25*y1; // New distance between slit and biprism, cm +// As d is directly proportional to y1 and b is directly proportional to d, so +// b is inversely proportional to y1 +b_prime = b*y1/y1_prime; // New fringe width of the interfernce pattern due to biprism, cm + +printf("\nThe new value of fringe width due to increased slit-biprism separation = %5.3f cm", b_prime); + +// Result +// The new value of fringe width due to increased slit-biprism separation = 0.150 cm |