diff options
Diffstat (limited to '3537/CH1/EX1.43')
-rw-r--r-- | 3537/CH1/EX1.43/Ex1_43.sce | 10 | ||||
-rw-r--r-- | 3537/CH1/EX1.43/Ex1_43.txt | 1 |
2 files changed, 11 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)
diff --git a/3537/CH1/EX1.43/Ex1_43.txt b/3537/CH1/EX1.43/Ex1_43.txt new file mode 100644 index 000000000..46cd8c771 --- /dev/null +++ b/3537/CH1/EX1.43/Ex1_43.txt @@ -0,0 +1 @@ +Thickness of the soap film is 0.00006579 cm
\ No newline at end of file |