blob: acfd057c5806625b5ef94eebd9330e6461dae11d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//CAPTION: Output_power_of_an_LSA_Oscillator
//chapter_no.-7, page_no.-311
//Example_no.7-4-1
clc;
//Calculate_the_output_power
n=.06;//conversion_efficiency
M=3.5;//Multiplication_factor
Eth=320*(10^3);//threshold_field
L=12*(10^-6);//Device_Length
n0=10^21;//Donor_concentration
e=1.6*(10^-19);
v0=1.5*(10^5);//Average_carrier_velocity
A=3*(10^-8);//Area
P=n*(M*Eth*L)*(n0*e*v0*A);
P=P*1000;
disp(P,'the_output_power(in mW)is =');
|