summaryrefslogtreecommitdiff
path: root/3875/CH10/EX10.32/10_32.sce
diff options
context:
space:
mode:
Diffstat (limited to '3875/CH10/EX10.32/10_32.sce')
-rw-r--r--3875/CH10/EX10.32/10_32.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3875/CH10/EX10.32/10_32.sce b/3875/CH10/EX10.32/10_32.sce
new file mode 100644
index 000000000..cb08520f0
--- /dev/null
+++ b/3875/CH10/EX10.32/10_32.sce
@@ -0,0 +1,12 @@
+clc;
+clear;
+h=6.63*10^-34 //Plancks constant in J-s
+c=3*10^8 //velocity of light in m/s
+lambda=694.5*10^-9 //wavelength in m
+delta_t=10^-3
+
+//calculation
+delta_lambda=abs(-(lambda^2/(4*%pi*c*delta_t)))
+
+mprintf("The natural line width of laser transition is = %1.2e m",delta_lambda)
+//The answer provided in the textbook is wrong.