From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2495/CH2/EX2.9.3/Ex2_9_3.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 2495/CH2/EX2.9.3/Ex2_9_3.sce (limited to '2495/CH2/EX2.9.3/Ex2_9_3.sce') diff --git a/2495/CH2/EX2.9.3/Ex2_9_3.sce b/2495/CH2/EX2.9.3/Ex2_9_3.sce new file mode 100644 index 000000000..84f2be469 --- /dev/null +++ b/2495/CH2/EX2.9.3/Ex2_9_3.sce @@ -0,0 +1,17 @@ +clear +clc +w1=1;//amount of glucose C6H12O6 in gm +w2=1;//amount of sucrose C12H12022 in gm +n=(w1/180)+(w2/342);//amount of solute +R=8.314;//in J/Kmol +T=25;//in C +V=1000;//volume of water in gm +P=(n*R*(T+273))/(V*10^-6);//osmotic pressure of solution +printf('P=%.3f *10^4 N/m^2',P/10^4) +w=(w1+w2);//weight of solute +M=(w*R*(T+273))/(P*(V*10^-3));//molar mass of solute +printf('\nM=%.4f kg/mol',M) +Mn=((w1*10^-3)+(w2*10^-3))/(n);//average molar mass in Kg/mol +printf('\nMn=%.4f kg/mol',Mn) + +//page 67 -- cgit