summaryrefslogtreecommitdiff
path: root/1427/CH18/EX18.36/18_36.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1427/CH18/EX18.36/18_36.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1427/CH18/EX18.36/18_36.sce')
-rw-r--r--1427/CH18/EX18.36/18_36.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1427/CH18/EX18.36/18_36.sce b/1427/CH18/EX18.36/18_36.sce
new file mode 100644
index 000000000..9938dc2d1
--- /dev/null
+++ b/1427/CH18/EX18.36/18_36.sce
@@ -0,0 +1,15 @@
+//ques-18.36
+//Calculating w q U H G A and S
+clc
+T=373;//boiling point of water (in K)
+P=1;//pressure (in atm)
+L=40.67;//latent heat of vapourisation (in kJ/mol)
+R=8.314;//in J/K/mol
+w=-R*T/1000;
+H=-L;
+q=H;
+U=H-w;
+G=0;
+A=-w;
+S=-(q*1000)/T;
+printf("w=%.1f kJ/mol, q=H=%.2f kJ/mol, U=%.2f kJ/mol, G=%d; A=%.1f kJ/mol and S=%.0f J/K/mol.",w,q,U,G,A,S);