summaryrefslogtreecommitdiff
path: root/1427/CH34/EX34.14/34_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '1427/CH34/EX34.14/34_14.sce')
-rw-r--r--1427/CH34/EX34.14/34_14.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1427/CH34/EX34.14/34_14.sce b/1427/CH34/EX34.14/34_14.sce
new file mode 100644
index 000000000..d1577e171
--- /dev/null
+++ b/1427/CH34/EX34.14/34_14.sce
@@ -0,0 +1,11 @@
+//ques-34.14
+//Determining transmittance of a solution
+clc
+ratio1=100/80;//= Io/I1
+ratio2=100/60;//= Io/I2
+A1=log10(ratio1);
+A2=log10(ratio2);
+A=A1+A2;
+//For, log10(tran) = A
+tran=0.48;
+printf("The percentage transmittance of the solution is %d.",tran*100);