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 /2414/CH12/EX12.16 | |
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 '2414/CH12/EX12.16')
-rwxr-xr-x | 2414/CH12/EX12.16/Ex12_16.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2414/CH12/EX12.16/Ex12_16.sce b/2414/CH12/EX12.16/Ex12_16.sce new file mode 100755 index 000000000..c5a22e961 --- /dev/null +++ b/2414/CH12/EX12.16/Ex12_16.sce @@ -0,0 +1,22 @@ +clc;
+close();
+clear();
+//page no 419
+//prob no. 12.16
+Ldb=6.02; //db
+L=10^(Ldb/10);
+mprintf('Absloute loss ,L=%.0f\n',L);
+Tp=290; //K
+//Noise temp (K)
+TeL=(L-1)*Tp;
+Tepre=50;
+Terec=200;
+Gpre=10^(20/10);
+Te=TeL+L*Tepre+L*Terec/Gpre;
+mprintf('Noise Temperature ,Te=%.0f K\n',Te);
+
+//Noise figures
+F=1+Te/290;
+mprintf('Noise figure ,F=%.4f\n',F);
+mprintf('Noise figure ,F(dB)=%.3f dB\n',10*log10(F));
+
|