diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3821/CH9/EX9.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3821/CH9/EX9.1')
-rw-r--r-- | 3821/CH9/EX9.1/Example9_1.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3821/CH9/EX9.1/Example9_1.sce b/3821/CH9/EX9.1/Example9_1.sce new file mode 100644 index 000000000..0ed0b5c20 --- /dev/null +++ b/3821/CH9/EX9.1/Example9_1.sce @@ -0,0 +1,23 @@ +///Chapter 9 Law Of Thermodynamics
+///Example 9.1 Page No:165
+/// Find Work interaction during the 4th processes
+///Input data
+clc;
+clear;
+Qab=720; //Heat transfer of 1st processes in KJ
+Qbc=-80; //Heat transfer of 2nd processes in KJ
+Qcd=40; //Heat transfer of 3rd processes in KJ
+Qda=-640; //Heat transfer of 4th processes in KJ
+Wab=-90; //Work transfer of 1st processes in KJ
+Wbc=-50; //Work transfer of 2nd processes in KJ
+Wcd=130; //Work transfer of 3rd processes in KJ
+
+
+///Calculation
+///From the 1st law of thermodynamic for close system undergoing a cycle.
+
+//Work interaction during the 4th processes
+Wda=((Qab+Qbc+Qcd+Qda)-(Wab+Wbc+Wcd));
+
+///Output
+printf('Work interaction during the 4th processes= %f KJ \n",Wda);
|