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 /752/CH19/EX19.14.1 | |
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 '752/CH19/EX19.14.1')
-rwxr-xr-x | 752/CH19/EX19.14.1/19_14_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/752/CH19/EX19.14.1/19_14_1.sce b/752/CH19/EX19.14.1/19_14_1.sce new file mode 100755 index 000000000..6716d48bb --- /dev/null +++ b/752/CH19/EX19.14.1/19_14_1.sce @@ -0,0 +1,11 @@ +clc;
+//page no 737
+//problem no 19.14.1
+//A high power amplr
+P_HPA=600;TFL_dB=1.5;G_dB_ES=50;RFL_dB=1;GTR_dB_SAT=-8;FSL_dB=200;AML_dB=0.5;PL_dB=0.5;AA_dB=1;
+//Determination of carrier to noise ratio
+P_dB_HPA=10*log10(P_HPA/1);
+EIRP_dB=P_dB_HPA-TFL_dB+G_dB_ES;
+TPL_dB=FSL_dB+AML_dB+PL_dB+AA_dB;
+CNoR_dB=EIRP_dB-TPL_dB-RFL_dB+GTR_dB_SAT+228.6;
+disp(CNoR_dB,'The carrier to noise ratio in dB is');
\ No newline at end of file |