summaryrefslogtreecommitdiff
path: root/25/CH11/EX11.1/11_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '25/CH11/EX11.1/11_1.sce')
-rwxr-xr-x25/CH11/EX11.1/11_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/25/CH11/EX11.1/11_1.sce b/25/CH11/EX11.1/11_1.sce
new file mode 100755
index 000000000..6bbc44578
--- /dev/null
+++ b/25/CH11/EX11.1/11_1.sce
@@ -0,0 +1,11 @@
+// example:-11.1,page no.-589.
+// program to determine the equivalent noise temperature of the amplifier.
+T1=290;P1=-62;G=100;B=10^9;k=1.38*10^-23;
+T2=77;P2=-64.7;Ts=450;
+Y=P1-P2; // Y-factor in db.
+Y=10^0.27;
+Te=(T1-Y*T2)/(Y-1);
+Po=G*k*B*(Ts+Te);
+Po=10*log10(Po/0.001); /// converting in to dBm.
+disp(Te,'the equivalent noise temperature in kelwin = ')
+disp(Po,'the total noise power out of the amplifier in dBm will be = ') \ No newline at end of file