summaryrefslogtreecommitdiff
path: root/944/CH6/EX6.17/example6_17_TACC.sce
diff options
context:
space:
mode:
Diffstat (limited to '944/CH6/EX6.17/example6_17_TACC.sce')
-rwxr-xr-x944/CH6/EX6.17/example6_17_TACC.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/944/CH6/EX6.17/example6_17_TACC.sce b/944/CH6/EX6.17/example6_17_TACC.sce
new file mode 100755
index 000000000..4a2df57c2
--- /dev/null
+++ b/944/CH6/EX6.17/example6_17_TACC.sce
@@ -0,0 +1,26 @@
+//example 6.17
+
+clear;
+clc;
+
+//Given:
+m2=1.35;//mass of a macromolecule[gm]
+V=100;//volume of solution[cm^3]
+R=82;//Universal gas constant[atm.cm^3.K^-1]
+T=300;//Temperature[K]
+II=9.9;//osmotic pressure of the solution[cm]
+d=1;//density
+p=1013250;//Atmospheric pressure
+g=980.67;//gravitational field
+
+
+//To find the molar mass of macromolecule
+a=m2*R*T*p;
+b=V*9.9*d*g;
+M2=a/b;//molar mass of macromolecule
+printf(" M2 = molar mass of macromolecule , therefore M2 = %f g.mol^-1",M2);
+
+
+
+
+