summaryrefslogtreecommitdiff
path: root/2912/CH5/EX5.10/Ex5_10.sce
blob: 1765b748135f8f4c533cb1655d65c637e06bd208 (plain)
1
2
3
4
5
6
7
8
9
10
11
//chapter 5
//example 5.10
//Calculate wavelength
//page 106
clear;
clc;
//given
V=10000; // in V (Potential)
//calculate
lambda=12.27/sqrt(V); // calculation of wavelength in Angstrom
printf('\nThe wavelength is\t=%.3f Angstrom',lambda);