summaryrefslogtreecommitdiff
path: root/2309/CH4/EX4.a.6/A_Ex4_6.sce
blob: 42c7a12b4856fb3ec250690a53bcad73b00ab58b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Chapter 4 Additional Example 6
//==============================================================================
clc;
clear;

// input data
h       = 6.625*10^-34       // plancks constant
m       = 1.678*10^-27       // mass of proton in Kg
e       = 1.6*10^-19         // charge of electron
Kb      = 1.38*10^-23;       // boltzmann constant
T       = 300                // Temperature in kelvin
// Calculations

lamda   = h/(sqrt(3*m*Kb*T))  // de Broglie wavelength

// Output
mprintf('The de-Broglie wavelength = %3.4f Å',lamda*10^10);
//==============================================================================