diff options
Diffstat (limited to '3648/CH11/EX11.2/Ex11_2.sce')
-rw-r--r-- | 3648/CH11/EX11.2/Ex11_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3648/CH11/EX11.2/Ex11_2.sce b/3648/CH11/EX11.2/Ex11_2.sce new file mode 100644 index 000000000..b479cb1c4 --- /dev/null +++ b/3648/CH11/EX11.2/Ex11_2.sce @@ -0,0 +1,15 @@ +//Example 11_2
+clc();
+clear;
+//To findout how much water is released
+//When it crystallizes
+m=50 //Units in gm
+h=80 //Units in Cal/gm
+q=m*h //Units in Cal
+printf("When it crystallizes heat required is Q=%d Cal\n",q)
+//When it Condenses
+m=50 //Units in gm
+h=539 //Units in Cal/gm
+q=m*h //Units in Cal
+printf("When it condenses heat required is Q=%d Cal\n",q)
+//In textbook answer is printed wrong as Q=27000 cal but the correct answer is Q=26950 Cal
|