diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1979/CH9/EX9.9 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1979/CH9/EX9.9')
-rwxr-xr-x | 1979/CH9/EX9.9/Ex9_9.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/1979/CH9/EX9.9/Ex9_9.sce b/1979/CH9/EX9.9/Ex9_9.sce new file mode 100755 index 000000000..13b06996a --- /dev/null +++ b/1979/CH9/EX9.9/Ex9_9.sce @@ -0,0 +1,22 @@ +//chapter-9 page 412 example 9.9
+//==============================================================================
+clc;
+clear;
+
+//For an IMPATT diode
+Lp=0.5*10^(-9);//Inductance in Henry
+Cj=0.5*10^(-12);//Capacitance in Farad
+Ip=0.8;//RF peak current in A
+Rl=2;//Load Resistance in ohms
+Vbd=100;//Breakdown Voltage in V
+Ib=0.1;//dc Bias current in A
+
+//CALCULATION
+f=(1/(2*(%pi)*sqrt(Lp*Cj)))/10^9;//Resonant Frequency in GHz
+n=((Rl*Ip^2)/(2*Vbd*Ib))*100;//Efficiency in Percentage
+
+//OUTPUT
+mprintf('\nResonant Frequency is f=%2.0f GHz \nEfficiency is n=%1.1f percentage',f,n);
+
+//=========================END OF PROGRAM===============================
+
|