summaryrefslogtreecommitdiff
path: root/3648/CH11/EX11.6/Ex11_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH11/EX11.6/Ex11_6.sce')
-rw-r--r--3648/CH11/EX11.6/Ex11_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH11/EX11.6/Ex11_6.sce b/3648/CH11/EX11.6/Ex11_6.sce
new file mode 100644
index 000000000..a8ea85935
--- /dev/null
+++ b/3648/CH11/EX11.6/Ex11_6.sce
@@ -0,0 +1,11 @@
+//Example 11_6
+clc();
+clear;
+//To findout the rise in temperature
+m=0.01 //Units in Kg
+v=100 //Units in meters/sec
+KE=(0.5*m*v^2)/4.1808135 //units in Cal
+m=10 //units in gm
+c=0.031 //units in cal/gm Centigrade
+t=KE/(m*c)
+printf("the rise in temperature is DeltaT=%.1f C",t)