summaryrefslogtreecommitdiff
path: root/1427/CH34/EX34.24/34_24.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH34/EX34.24/34_24.sce')
-rw-r--r--1427/CH34/EX34.24/34_24.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH34/EX34.24/34_24.sce b/1427/CH34/EX34.24/34_24.sce
new file mode 100644
index 000000000..666e10485
--- /dev/null
+++ b/1427/CH34/EX34.24/34_24.sce
@@ -0,0 +1,9 @@
+//ques-34.24
+//Calculating percentage of transmission
+clc
+ratio=1/0.7;//=Io/I1
+l1=2; l2=0.05;//thickness (in mm)
+x=(l2/l1)*log10(ratio);
+//On solving, log10(tran) = x
+tran=1.009;
+printf("The percentage of transmittance is %.1f.",100/tran);