diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3856/CH22/EX22.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3856/CH22/EX22.1')
-rw-r--r-- | 3856/CH22/EX22.1/Ex22_1.sce | 23 | ||||
-rw-r--r-- | 3856/CH22/EX22.1/Ex22_1.txt | 1 |
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 |