summaryrefslogtreecommitdiff
path: root/3756/CH1/EX1.22
diff options
context:
space:
mode:
Diffstat (limited to '3756/CH1/EX1.22')
-rw-r--r--3756/CH1/EX1.22/Ex1_22.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3756/CH1/EX1.22/Ex1_22.sce b/3756/CH1/EX1.22/Ex1_22.sce
new file mode 100644
index 000000000..e295200a4
--- /dev/null
+++ b/3756/CH1/EX1.22/Ex1_22.sce
@@ -0,0 +1,17 @@
+clc
+//
+//
+//
+
+//Variable declaration
+n=10 //no. of ring
+D10=0.5 //Diameter of the 10th ring
+lambdaa=5893*10**-8 //Wavelength
+
+//Calculations
+R=(D10**2)/(4*10*5893*10**-8)
+t=(D10**2)*10**4/(8*R)
+
+//Result
+printf("\n The Thickness is %0.3f cm",t)
+printf("\n The Radius is %0.1f cm",R)