summaryrefslogtreecommitdiff
path: root/1967/CH11/EX11.6/11_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1967/CH11/EX11.6/11_6.sce')
-rwxr-xr-x1967/CH11/EX11.6/11_6.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1967/CH11/EX11.6/11_6.sce b/1967/CH11/EX11.6/11_6.sce
new file mode 100755
index 000000000..eeef380b2
--- /dev/null
+++ b/1967/CH11/EX11.6/11_6.sce
@@ -0,0 +1,12 @@
+clc
+//initialisation of variables
+clear
+Ta= 441 //C
+Tb= 882 //C
+Tb1= 1218 //C
+//CALCULATIONS
+Ta1= (273+Tb1)*(Tb+273)/(273+Ta)
+Tb= Ta1-273
+//RESULTS
+printf ('Normal boiling point of silver = %.f K',Ta1)
+printf ('\n Normal boiling point of silver in degrees = %.f degrees',Tb)