diff options
Diffstat (limited to '3537/CH1/EX1.47/Ex1_47.sce')
-rw-r--r-- | 3537/CH1/EX1.47/Ex1_47.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH1/EX1.47/Ex1_47.sce b/3537/CH1/EX1.47/Ex1_47.sce new file mode 100644 index 000000000..7df46b66b --- /dev/null +++ b/3537/CH1/EX1.47/Ex1_47.sce @@ -0,0 +1,10 @@ +//Example 1_47
+clc();
+clear;
+//To find the thickness of the glass plate
+lemda=5000 //units in angstroam
+lemda=5000*10^-8 //units in cm
+s_beta=6
+u=1.5
+t=((s_beta)*lemda)/(u-1)
+printf("The thickness of the glass plate is %.4f cm",t)
|