diff options
Diffstat (limited to '2409/CH12/EX12.6/Ex12_6.sce')
-rwxr-xr-x | 2409/CH12/EX12.6/Ex12_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2409/CH12/EX12.6/Ex12_6.sce b/2409/CH12/EX12.6/Ex12_6.sce new file mode 100755 index 000000000..58f2e6815 --- /dev/null +++ b/2409/CH12/EX12.6/Ex12_6.sce @@ -0,0 +1,16 @@ +//Variable Declaration + +TRn=12 //Receiver Noise figure(dB) +G=40 //Gain of LNA(dB) +T0=120 //Noise temperature(Kelvin) + +//Calculation + +F=10**(TRn/(10)) //Converting noise power to ratio +Te=(F-1)*290 //Noise Temperature of the amplifier +G=10**(G/10) //Converting Gain of LNA to ratio +Tn=T0+Te/G //Overall Noise Temperature(Kelvin) + + +//Result +printf("The overall noise temperature is %.2f Kelvin", Tn) |