blob: 6604a28fb81c7f73965561ae75202a42887585ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Exa 4.3
clc;
clear;
// Given
Va = 2500; // Applied voltage(Volts)
e = 1.602*10^-19; // Charge of electron(C)
m = 9.107*10^-31; // Mass of electron(Kg)
// Solution
// For Electron beam in the oscilloscope, its velocity is given as-
V = sqrt(2*e*Va/m);
printf(' The velocity of electron beam of an oscilloscope = %.3f * 10^6 m/sec \n',V/10^6);
|