diff options
Diffstat (limited to '2681/CH2/EX2.4/Ex2_4.sce')
-rwxr-xr-x | 2681/CH2/EX2.4/Ex2_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2681/CH2/EX2.4/Ex2_4.sce b/2681/CH2/EX2.4/Ex2_4.sce new file mode 100755 index 000000000..e595101e4 --- /dev/null +++ b/2681/CH2/EX2.4/Ex2_4.sce @@ -0,0 +1,14 @@ +//electron velocity,transit angle and beam coupling coefficent
+//given
+Va=900// in volts
+Rb=30d+3//in ohm
+Ib=20d-3//in ampere
+f=3.2d+9//in hertz
+d=1d-3//meter
+Ve=0.593d+6*sqrt(Va)//m/s
+w=2*%pi*f
+Qt=w*d/Ve//radians
+Bc=(sin(Qt/2))/(Qt/2)
+Qt=round(Qt*100)/100///rounding off decimals
+Bc=round(Bc*1000)/1000///rounding off decimals
+disp(Bc,Qt,Ve,'THE electron eloccity ,transit angle and beam coupling coefficient in m/s,radians')//m/s,radians.
|