summaryrefslogtreecommitdiff
path: root/728/CH8/EX8.9/Ex8_9.txt
blob: adb62dde3371cfc9b31ccc80fc4eafbc5ac8e3cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Caption:Calculate (i)-Axial phase velocity ,(ii)-Anode voltage at which TWT can be operated for useful gain
//Exa:8.9
clc;
clear;
close;
e_m_ratio=1.759*10^11;//(e/m)
c=3*10^8;//in m/s
d=0.002;//diameter(in m)
pitch=(1/50)/100;//As,50 turns per cm (in m)
circum=%pi*d;
v_p=c*pitch/circum;
V_o=v_p^2/(2*e_m_ratio);
disp(v_p,'Axial phase velocity (in m/s) =');
disp(V_o,'Anode Voltage (in kV) =');

//Answer in book is wrongly given as V_o=25.92 V