summaryrefslogtreecommitdiff
path: root/3753/CH1/EX1.4
diff options
context:
space:
mode:
Diffstat (limited to '3753/CH1/EX1.4')
-rw-r--r--3753/CH1/EX1.4/Ex1_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3753/CH1/EX1.4/Ex1_4.sce b/3753/CH1/EX1.4/Ex1_4.sce
new file mode 100644
index 000000000..32e33a179
--- /dev/null
+++ b/3753/CH1/EX1.4/Ex1_4.sce
@@ -0,0 +1,15 @@
+//Example number 1.4, Page number 1.36
+
+clc;clear;close
+
+
+//Variable declaration
+lamda=5893*10**-10 //Angstroms to mts
+x=4*10**-2 // unitless
+Beta=1*10**-3 // unitless
+
+//Calculation
+t=(lamda*x)/(2*Beta)
+
+//Result
+printf("t=%0.3f micron",(t*10**6))