diff options
Diffstat (limited to '647/CH11/EX11.1/Example11_1.sce')
-rwxr-xr-x | 647/CH11/EX11.1/Example11_1.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/647/CH11/EX11.1/Example11_1.sce b/647/CH11/EX11.1/Example11_1.sce new file mode 100755 index 000000000..0ea2278e7 --- /dev/null +++ b/647/CH11/EX11.1/Example11_1.sce @@ -0,0 +1,23 @@ +clear;
+clc;
+
+// Example: 11.1
+// Page: 458
+
+printf("Example: 11.1 - Page: 458\n\n");
+
+// Solution
+
+//*****Data******//
+a = 2.423;// [g]
+b = 100;// [g]
+Lf = 35.7;// [cal/g]
+Tf = 353.1;// [cal/g]
+delta_Tf = 0.64;// [OC]
+R = 2;// [cal/mol K]
+Mw = 32;// [Molecular wt. of Sulphur, g/mol]
+//*************//
+
+M2 = ((R*Tf^2/(1000*Lf))*(a*1000/(b)))/delta_Tf;// [g/mol]
+n = M2/Mw;
+printf("Molecular Formula of Sulphur is S%d",round(n));
\ No newline at end of file |