diff options
Diffstat (limited to '3411/CH1/EX1.7')
-rw-r--r-- | 3411/CH1/EX1.7/Ex1_7.sce | 12 | ||||
-rw-r--r-- | 3411/CH1/EX1.7/Ex1_7.txt | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/3411/CH1/EX1.7/Ex1_7.sce b/3411/CH1/EX1.7/Ex1_7.sce new file mode 100644 index 000000000..1359ac720 --- /dev/null +++ b/3411/CH1/EX1.7/Ex1_7.sce @@ -0,0 +1,12 @@ +//Example1.7
+clc();
+clear;
+//To calculate the fring width
+//betaa=(lamda)/(2*alpha)
+lamda=6000 //units in armstrongs
+lamda=lamda*10^-8 //units in cm
+diameter=0.05 //units in mm
+distance=15 //units in cm
+alpha=(diameter/distance)*10^-1 //units in radians
+betaa=lamda/(2*alpha) //units in cm
+printf("The fringe width is %.2fcm",betaa)
diff --git a/3411/CH1/EX1.7/Ex1_7.txt b/3411/CH1/EX1.7/Ex1_7.txt new file mode 100644 index 000000000..3303a42dc --- /dev/null +++ b/3411/CH1/EX1.7/Ex1_7.txt @@ -0,0 +1 @@ +The fringe width is 0.09cm
\ No newline at end of file |