summaryrefslogtreecommitdiff
path: root/3843/CH6/EX6.3/Ex6_3.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3843/CH6/EX6.3/Ex6_3.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 '3843/CH6/EX6.3/Ex6_3.sce')
-rw-r--r--3843/CH6/EX6.3/Ex6_3.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3843/CH6/EX6.3/Ex6_3.sce b/3843/CH6/EX6.3/Ex6_3.sce
new file mode 100644
index 000000000..52fb49911
--- /dev/null
+++ b/3843/CH6/EX6.3/Ex6_3.sce
@@ -0,0 +1,20 @@
+// Example 6_3
+clc;funcprot(0);
+// Given data
+T_1=20;// °C
+P_1=200;// kPa
+W=720;// kJ
+V_1=2;// m^3
+R=0.287;// kJ/kg.K
+c_v=0.717;// kJ/kg.K
+
+// Calculation
+m=(P_1*V_1)/(R*(T_1+273));// The mass in kg
+u_1=209.1;// kJ/kg
+u_2=-(W/m)+u_1;// kJ/kg
+T_2=501.2;// K
+phi_2=2.222;// The relative humidity at state 2
+phi_1=1.678;// The relative humidity at state 1
+P_2=P_1*(T_2/(T_1+273));// kPa
+delS=m*(phi_2-phi_1-(R*log(P_2/P_1)));// kJ/K
+printf("\nThe entropy change,delS=%1.3f kJ/K",delS);