summaryrefslogtreecommitdiff
path: root/1271/CH20/EX20.3/example20_3.sce
blob: ff5795827b3e23764f0619ef3fc0bd81a4530216 (plain)
1
2
3
4
5
6
7
8
9
clc 
// Given that
V = 25e3 // voltage in V
// Sample Problem 3 on page no. 20.8
printf("\n # PROBLEM 3 # \n")
printf("Standard formula used \n ")
printf("Lambda_min = 12400/V \n")
lambda_min = 12400 / V
printf("\n Minimum wavelength of x-ray is %f Angstrom.",lambda_min)