summaryrefslogtreecommitdiff
path: root/3753/CH3/EX3.11/Ex3_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '3753/CH3/EX3.11/Ex3_11.sce')
-rw-r--r--3753/CH3/EX3.11/Ex3_11.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3753/CH3/EX3.11/Ex3_11.sce b/3753/CH3/EX3.11/Ex3_11.sce
new file mode 100644
index 000000000..eb34a609c
--- /dev/null
+++ b/3753/CH3/EX3.11/Ex3_11.sce
@@ -0,0 +1,14 @@
+//Example number 3.11, Page number 6.36
+
+clc;clear;close
+
+// Variable declaration
+Tc1=4.185 // K
+M1=199.5// unitless
+M2=203.4// unitless
+
+// Calculations
+Tc2=Tc1*(M1/M2)**(1/2) // in K
+
+// Result
+printf("New critical temperature for mercury = %0.3f K",Tc2)