summaryrefslogtreecommitdiff
path: root/3821/CH9/EX9.5/Example9_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3821/CH9/EX9.5/Example9_5.sce')
-rw-r--r--3821/CH9/EX9.5/Example9_5.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3821/CH9/EX9.5/Example9_5.sce b/3821/CH9/EX9.5/Example9_5.sce
new file mode 100644
index 000000000..6945e2832
--- /dev/null
+++ b/3821/CH9/EX9.5/Example9_5.sce
@@ -0,0 +1,14 @@
+///Chapter 9 Law Of Thermodynamics
+//Example 9.5 Page No:168
+/// Find Change in interval energy
+///Input data
+clc;
+clear;
+W=-2000; //Work input of panddle wheel in KJ
+Q1=-6000; //Heat transferred to the surrounding from tank
+
+//Calculation
+deltaU=Q1-W; //Change in interval energy
+
+///Output
+printf('change in interval energy drop= %f KJ \n',deltaU);