From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3856/CH22/EX22.1/Ex22_1.sce | 23 +++++++++++++++++++++++ 3856/CH22/EX22.1/Ex22_1.txt | 1 + 2 files changed, 24 insertions(+) create mode 100644 3856/CH22/EX22.1/Ex22_1.sce create mode 100644 3856/CH22/EX22.1/Ex22_1.txt (limited to '3856/CH22/EX22.1') diff --git a/3856/CH22/EX22.1/Ex22_1.sce b/3856/CH22/EX22.1/Ex22_1.sce new file mode 100644 index 000000000..aac3a010d --- /dev/null +++ b/3856/CH22/EX22.1/Ex22_1.sce @@ -0,0 +1,23 @@ +//Calculate the molar mass of Catalase + +//Eaxmple 22.1 + +clc; + +clear; + +R=8.314; //Gas constant in J K^-1 mol^-1 + +T=20+273; //Temperature in K + +D=4.1*10^-11; //Diffusion coefcient of Catalase (horse liver) in m^2 s^-1 + +rho=0.998; //Density of water in g ml^-1 + +s=11.3*10^-13; //Sedimentation coeffcient in s + +vbar=0.715; //Partial specific volume in ml g^-1 + +mew=(s*R*T*1000)/((D)*(1-(vbar*rho))); //Molar mass of Catalase in g mol^-1 (1 J=1 kg m^2 s^-2)(The answer vary due to round off error ) + +printf("Molar mass of Catalase = %.2f*10^5 g mol^-1",mew*10^-5); diff --git a/3856/CH22/EX22.1/Ex22_1.txt b/3856/CH22/EX22.1/Ex22_1.txt new file mode 100644 index 000000000..78884e631 --- /dev/null +++ b/3856/CH22/EX22.1/Ex22_1.txt @@ -0,0 +1 @@ + Molar mass of Catalase = 2.34*10^5 g mol^-1 \ No newline at end of file -- cgit