summaryrefslogtreecommitdiff
path: root/1535/CH7/EX7.4/Ch07Ex4.sci
diff options
context:
space:
mode:
Diffstat (limited to '1535/CH7/EX7.4/Ch07Ex4.sci')
-rwxr-xr-x1535/CH7/EX7.4/Ch07Ex4.sci11
1 files changed, 11 insertions, 0 deletions
diff --git a/1535/CH7/EX7.4/Ch07Ex4.sci b/1535/CH7/EX7.4/Ch07Ex4.sci
new file mode 100755
index 000000000..6bbab5739
--- /dev/null
+++ b/1535/CH7/EX7.4/Ch07Ex4.sci
@@ -0,0 +1,11 @@
+// Scilab Code Ex7.4 : Wavelength of photon to break up a Cooper-pair: Page-152 (2010)
+e = 1.6e-019; // Energy equivalent of 1 eV, J/eV
+c = 3e+08; // Speed of light in free space, m/s
+h = 6.626e-034; // Planck's constant, Js
+E_g = 1.5e-004; // Superconducting energy gap for a material, eV
+// As E_g = h*f = h*c/lambda, solving for lambda
+lambda = h*c/(E_g*e); // Wavelength of photon to break up a Cooper-pair, m
+printf("\nThe wavelength of photon to break up a Cooper-pair = %4.2e m", lambda);
+
+// Result
+// The wavelength of photon to break up a Cooper-pair = 8.28e-003 m \ No newline at end of file