diff options
Diffstat (limited to '3537/CH1/EX1.45/Ex1_45.sce')
-rw-r--r-- | 3537/CH1/EX1.45/Ex1_45.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH1/EX1.45/Ex1_45.sce b/3537/CH1/EX1.45/Ex1_45.sce new file mode 100644 index 000000000..4f7e1a1c7 --- /dev/null +++ b/3537/CH1/EX1.45/Ex1_45.sce @@ -0,0 +1,10 @@ +//Example 1_45
+clc();
+clear;
+//To calculate the thickness of the glass plate
+lemda=5000 //units in angstroam
+lemda=5000*10^-8 //units in cm
+u=1.56
+n=16
+t=(n*lemda)/(u-1)
+printf("Thickness of the glass plate is %.6f cm",t)
|