summaryrefslogtreecommitdiff
path: root/3856/CH22/EX22.1
diff options
context:
space:
mode:
Diffstat (limited to '3856/CH22/EX22.1')
-rw-r--r--3856/CH22/EX22.1/Ex22_1.sce23
-rw-r--r--3856/CH22/EX22.1/Ex22_1.txt1
2 files changed, 24 insertions, 0 deletions
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