summaryrefslogtreecommitdiff
path: root/858/CH4/EX4.10
diff options
context:
space:
mode:
Diffstat (limited to '858/CH4/EX4.10')
-rwxr-xr-x858/CH4/EX4.10/example_10.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/858/CH4/EX4.10/example_10.sce b/858/CH4/EX4.10/example_10.sce
new file mode 100755
index 000000000..ed8b4f6e7
--- /dev/null
+++ b/858/CH4/EX4.10/example_10.sce
@@ -0,0 +1,13 @@
+clc
+clear
+printf("example 4.10 page number 139\n\n")
+
+//to find the temperature increase
+
+Q=0.001*10^5 //in J/s
+w=0.001*1000 //in kg/s
+density=1000 //in kg/m3
+cp=4.19*10^3 //in J/kg K
+
+delta_T=Q/(w*cp);
+printf("Temperature increase = %f degree celcius",delta_T)