summaryrefslogtreecommitdiff
path: root/3717/CH14/EX14.2/Ex14_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3717/CH14/EX14.2/Ex14_2.sce')
-rw-r--r--3717/CH14/EX14.2/Ex14_2.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3717/CH14/EX14.2/Ex14_2.sce b/3717/CH14/EX14.2/Ex14_2.sce
new file mode 100644
index 000000000..a15f92b31
--- /dev/null
+++ b/3717/CH14/EX14.2/Ex14_2.sce
@@ -0,0 +1,10 @@
+// Ex14_2 Page:274 (2014)
+clc;clear;
+T = 5.2; // Temperature of lead, K
+T_c = 7.193; // Critical temperature of lead, K
+lambda_0 = 37; // London penetration depth at 0 K, nm
+lambda_T = lambda_0*(1-(T/T_c)^4)^(-1/2); // Penetration depth of lead at T K, nm
+printf("\nThe penetration depth of lead at %3.1f K = %5.2f nm", T, lambda_T);
+
+// Result
+// The penetration depth of lead at 5.2 K = 43.40 nm \ No newline at end of file