summaryrefslogtreecommitdiff
path: root/647/CH4/EX4.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /647/CH4/EX4.9
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/CH4/EX4.9')
-rwxr-xr-x647/CH4/EX4.9/Example4_9.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/647/CH4/EX4.9/Example4_9.sce b/647/CH4/EX4.9/Example4_9.sce
new file mode 100755
index 000000000..c6c94db83
--- /dev/null
+++ b/647/CH4/EX4.9/Example4_9.sce
@@ -0,0 +1,19 @@
+clear;
+clc;
+
+// Example: 4.9
+// Page: 129
+
+printf("Example: 4.9 - Page: 129\n\n");
+
+// Solution
+
+//*****Data*****//
+T1 = 273;// [K]
+T2 = 253;// [K]
+deltaH_273 = 1440;// [cal/mol]
+Cp = 8.7;// [cal/mol]
+//**************//
+
+deltaH_253 = deltaH_273 + Cp*(T2 - T1);// [cal/mol]
+printf("Laten heat of ice at -20 OC is %d cal/mol\n",deltaH_253); \ No newline at end of file