diff options
Diffstat (limited to '3821/CH9/EX9.6/Example9_6.sce')
-rw-r--r-- | 3821/CH9/EX9.6/Example9_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3821/CH9/EX9.6/Example9_6.sce b/3821/CH9/EX9.6/Example9_6.sce new file mode 100644 index 000000000..a7dd3c363 --- /dev/null +++ b/3821/CH9/EX9.6/Example9_6.sce @@ -0,0 +1,16 @@ +///Chapter 9 Law Of Thermodynamics
+///Example 9.6 Page No:169
+/// Find Heat transferred during the process
+///Input data
+clc;
+clear;
+U1=520; //internal energy in KJ/Kg
+U2=350; //internal energy in KJ/Kg
+W=-80; //work done by the air in the cylinder KJ/kg
+
+///Calculation
+deltaU=U2-U1;
+Q1=deltaU+W; //Heat transferred during the process
+
+///Output
+printf('Heat transferred during the process= %f KJ \n',Q1);
|