summaryrefslogtreecommitdiff
path: root/3753/CH1/EX1.2/Ex1_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3753/CH1/EX1.2/Ex1_2.sce')
-rw-r--r--3753/CH1/EX1.2/Ex1_2.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3753/CH1/EX1.2/Ex1_2.sce b/3753/CH1/EX1.2/Ex1_2.sce
new file mode 100644
index 000000000..c95c6f529
--- /dev/null
+++ b/3753/CH1/EX1.2/Ex1_2.sce
@@ -0,0 +1,14 @@
+//Example number 1.2, Page number 1.35
+clc;clear;close
+
+//Variable declaration
+N=3 //position
+lamda=5450*10**-10 //Wawelength in Armstrong to metre
+mu=1.5 // unitless
+
+//Calculation
+t=(N*lamda)/(mu-1) // micron
+
+//Result
+printf("Thickness of glass plate=%0.2f micron",(t*10**6))
+