steve_bank
Diabetic retinopathy and poor eyesight. Typos ...
A simple approximation to detecting ET. Good enough to do what if analysis. It can be done in a spreadsheet.
Assumptions
1. ET directional antenna like a dish with a beam divergence angle and no side lobes.
2. No losses in space.
3. Detection limit set by retriever input resistance noise, cooled to 77K.
4. Transmit and receive antennas stationary and and on the same axis.
The ET transmitter radiates into a cone or solid angle. By the time the wavefront searches the Earth it is essentially a flat plane. The power density in the base of the cone is the transmit power per unit area of the base in the pane of the Earth.
Closest galaxy Canis Major 20,000 LY
Closest star Proxima Centauri 4.64 LY
From the net one of the most powerful surface transmitters is 2MW. The main lobes would not be directed into space.
Calculate the base o a cone with the peak at the ET transmitter and assume tx power is distributed across the wavefront as it it expands.
An SNR > 0db is considered detectable fo r the approximation..
You can vary TX power, TX beam divergence, distance, reciever bandwidth, and RX antenna area.
Scliab script
clear
r_earth = 637800/2 //meters
rx_antenna_radius = 150 // meters Arecibo
rx_antenna_area = %pi*(rx_antenna_radius^2) //m^2
r_reciever = 50 //recieer input resistance
light_year = 9.461e15 // meters
et_distance_ly = 10
et_distance_m = et_distance_ly * light_year // meters
et_tx_power = 2e6 // watts higer power earth trasmitters
tx_angle_d = 1 // tx beam diverhence degrees half angle
tx_angle_r = (%pi/2) * (tx_angle_d/90) // radians
Tk = 77 // temperature deg kelvin liquid nitrogen
bw =10000 // reciever bandwidth hertz
k = 1.38*(10^-23) // boltzman constant
noise_power = 4*k*Tk* r_reciever*k*bw // watts rx input restance noise
r_earth_plane = tan(tx_angle_r)*et_distance_m //radius earth plane
a_earth_plane = %pi* (r_earth_plane^2) // cone base area in earth plane
p_density = et_tx_power/a_earth_plane // power desity earth plane
rx_power = p_density * rx_antenna_area
mprintf("Cone Diamter KM %e\n",2*r_earth_plane/1000)
mprintf("Cone Area %e\n",a_earth_plane)
mprintf("Earth Diameters %f\n",r_earth_plane/r_earth)
mprintf("Power Density %e\n",p_density)
mprintf("RX Power %e\n",rx_power)
snr_db = 10*log10(rx_power/noise_power) // signal to noise ratio
mprintf("Noise Power %e\n",noise_power)
mprintf("SNR db %4.2f\n",snr_db)
Assumptions
1. ET directional antenna like a dish with a beam divergence angle and no side lobes.
2. No losses in space.
3. Detection limit set by retriever input resistance noise, cooled to 77K.
4. Transmit and receive antennas stationary and and on the same axis.
The ET transmitter radiates into a cone or solid angle. By the time the wavefront searches the Earth it is essentially a flat plane. The power density in the base of the cone is the transmit power per unit area of the base in the pane of the Earth.
Closest galaxy Canis Major 20,000 LY
Closest star Proxima Centauri 4.64 LY
From the net one of the most powerful surface transmitters is 2MW. The main lobes would not be directed into space.
Calculate the base o a cone with the peak at the ET transmitter and assume tx power is distributed across the wavefront as it it expands.
An SNR > 0db is considered detectable fo r the approximation..
You can vary TX power, TX beam divergence, distance, reciever bandwidth, and RX antenna area.
Scliab script
clear
r_earth = 637800/2 //meters
rx_antenna_radius = 150 // meters Arecibo
rx_antenna_area = %pi*(rx_antenna_radius^2) //m^2
r_reciever = 50 //recieer input resistance
light_year = 9.461e15 // meters
et_distance_ly = 10
et_distance_m = et_distance_ly * light_year // meters
et_tx_power = 2e6 // watts higer power earth trasmitters
tx_angle_d = 1 // tx beam diverhence degrees half angle
tx_angle_r = (%pi/2) * (tx_angle_d/90) // radians
Tk = 77 // temperature deg kelvin liquid nitrogen
bw =10000 // reciever bandwidth hertz
k = 1.38*(10^-23) // boltzman constant
noise_power = 4*k*Tk* r_reciever*k*bw // watts rx input restance noise
r_earth_plane = tan(tx_angle_r)*et_distance_m //radius earth plane
a_earth_plane = %pi* (r_earth_plane^2) // cone base area in earth plane
p_density = et_tx_power/a_earth_plane // power desity earth plane
rx_power = p_density * rx_antenna_area
mprintf("Cone Diamter KM %e\n",2*r_earth_plane/1000)
mprintf("Cone Area %e\n",a_earth_plane)
mprintf("Earth Diameters %f\n",r_earth_plane/r_earth)
mprintf("Power Density %e\n",p_density)
mprintf("RX Power %e\n",rx_power)
snr_db = 10*log10(rx_power/noise_power) // signal to noise ratio
mprintf("Noise Power %e\n",noise_power)
mprintf("SNR db %4.2f\n",snr_db)
Last edited: