summaryrefslogtreecommitdiff
path: root/3768/CH6/EX6.9/Ex6_9.sce
blob: d5c5731b065570dea349b3698effc77b66aa42ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//Example number 6.9, Page number 120

clc;clear;
close;

//Variable declaration
Ee=10;     //electron kinetic energy(eV)
Ep=10;     //proton kinetic energy(eV)
e=1.6*10**-19;      //charge(c)
me=9.1*10**-31;      //mass(kg)
mp=1.67*10**-27;     //mass(kg)
//Calculation
cebar=sqrt(2*Ee*e/me);    //electron velocity(m/s)
cpbar=sqrt(2*Ep*e/mp);    //proton velocity(m/s)
//Result
printf("electron velocity is %.3e m/s",cebar)
printf("\n proton velocity is %.3e m/s",cpbar)
//answers given in the book are wrong