summaryrefslogtreecommitdiff
path: root/3636/CH1/EX1.6/Ex1_6.sce
blob: f6e8b8571e391a39fbfb17f49ec63220109fdda8 (plain)
1
2
3
4
5
6
7
8
9
10
11
clc;
clear;
V=2000 //potential in V
e=1.602*10^-19 //electronic charge in eV
m=9.1*10^-31 //mass of electron in kg

//Calculation
u=sqrt((2*V*e)/m)

mprintf("velocity with which electron beam will travel= %.2e m/s",u)