summaryrefslogtreecommitdiff
path: root/647/CH11/EX11.3/Example11_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /647/CH11/EX11.3/Example11_3.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '647/CH11/EX11.3/Example11_3.sce')
-rwxr-xr-x647/CH11/EX11.3/Example11_3.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/647/CH11/EX11.3/Example11_3.sce b/647/CH11/EX11.3/Example11_3.sce
new file mode 100755
index 000000000..5266a572c
--- /dev/null
+++ b/647/CH11/EX11.3/Example11_3.sce
@@ -0,0 +1,24 @@
+clear;
+clc;
+
+// Example: 11.3
+// Page: 458
+
+printf("Example: 11.3 - Page: 458\n\n");
+
+// Solution
+
+//*****Data******//
+T_melting = 40;// [OC]
+Tf = T_melting + 273;// [K]
+a = 0.172;// [g]
+b = 12.54;// [g]
+T_new = 39.25;// [OC]
+M2 = 135;// [Molecular wt. of acetanilide, g/mol]
+R = 2;// [cal/mol K]
+//**************//
+
+delta_T = T_melting - T_new;// [OC]
+Kf = delta_T*b*M2/(1000*a);
+Lv = ((R*Tf^2/(1000)))/Kf;// [cal/g]
+printf("Latent Heat of Fusion of phenol is %.2f cal/g\n",Lv); \ No newline at end of file