diff options
Diffstat (limited to '3537/CH1/EX1.43/Ex1_43.sce')
-rw-r--r-- | 3537/CH1/EX1.43/Ex1_43.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3537/CH1/EX1.43/Ex1_43.sce b/3537/CH1/EX1.43/Ex1_43.sce new file mode 100644 index 000000000..f0d94720a --- /dev/null +++ b/3537/CH1/EX1.43/Ex1_43.sce @@ -0,0 +1,10 @@ +//Example 1_43
+clc();
+clear;
+//To find the thickness of the soap film
+lemda=7000 //units in angstroam
+lemda=7000*10^-8 //units in cm
+u=1.33
+n=2
+t=(((2*n)+1)*(lemda/2))/(2*u)
+printf("Thickness of the soap film is %.8f cm",t)
|