summaryrefslogtreecommitdiff
path: root/3717/CH14/EX14.2/Ex14_2.sce
blob: a15f92b31a01734bdaf9a4bf81bcade1559847ae (plain)
1
2
3
4
5
6
7
8
9
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