diff options
Diffstat (limited to '3875/CH4/EX4.24')
-rw-r--r-- | 3875/CH4/EX4.24/4_24.txt | 1 | ||||
-rw-r--r-- | 3875/CH4/EX4.24/Ex4_24.sce | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3875/CH4/EX4.24/4_24.txt b/3875/CH4/EX4.24/4_24.txt new file mode 100644 index 000000000..8dde4f16d --- /dev/null +++ b/3875/CH4/EX4.24/4_24.txt @@ -0,0 +1 @@ + The no of fringes passing through the field of view is = 25
\ No newline at end of file diff --git a/3875/CH4/EX4.24/Ex4_24.sce b/3875/CH4/EX4.24/Ex4_24.sce new file mode 100644 index 000000000..612f89e29 --- /dev/null +++ b/3875/CH4/EX4.24/Ex4_24.sce @@ -0,0 +1,10 @@ +clc;
+clear;
+t=3 //thickness of air cell in cm
+delta_myu=0.000230 //difference in pressure
+lambda=5.46*10^-5 //wavelength in cm
+
+//calculation
+change_in_path=t*delta_myu // change in one way path in cm
+n=(2*change_in_path)/lambda
+mprintf("The no of fringes passing through the field of view is = %d",n)
|