diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /647/CH4/EX4.9 | |
download | Scilab-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-x | 647/CH4/EX4.9/Example4_9.sce | 19 |
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 |