mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-27 11:00:31 -04:00 
			
		
		
		
	Antenna Tools update
Calculate dish effective area. Adjust beamwidth calculation for 10dB illumination taper and better correlation with measurement.
This commit is contained in:
		
							parent
							
								
									dc7232ee4f
								
							
						
					
					
						commit
						4e74851de4
					
				| @ -163,6 +163,7 @@ void AntennaToolsGUI::displaySettings() | |||||||
|     calcDishFocalLength(); |     calcDishFocalLength(); | ||||||
|     calcDishBeamwidth(); |     calcDishBeamwidth(); | ||||||
|     calcDishGain(); |     calcDishGain(); | ||||||
|  |     calcDishEffectiveArea(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void AntennaToolsGUI::leaveEvent(QEvent*) | void AntennaToolsGUI::leaveEvent(QEvent*) | ||||||
| @ -410,7 +411,10 @@ void AntennaToolsGUI::calcDishFocalLength() | |||||||
| 
 | 
 | ||||||
| void AntennaToolsGUI::calcDishBeamwidth() | void AntennaToolsGUI::calcDishBeamwidth() | ||||||
| { | { | ||||||
|     double beamwidth = 70.0 * dishLambda() / dishDiameterMetres(); |     // The constant here depends on the illumination tapering.
 | ||||||
|  |     // 1.15 equals about 10dB: (4.14) in Fundamentals of Radio Astronomy
 | ||||||
|  |     // 1.2 is also a commonly used value: https://www.cv.nrao.edu/~sransom/web/Ch3.html#E96
 | ||||||
|  |     double beamwidth = Units::radiansToDegrees(1.15 * dishLambda() / dishDiameterMetres()); | ||||||
|     ui->dishBeamwidth->setValue(beamwidth); |     ui->dishBeamwidth->setValue(beamwidth); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| @ -424,12 +428,22 @@ void AntennaToolsGUI::calcDishGain() | |||||||
|     ui->dishGain->setValue(gainDB); |     ui->dishGain->setValue(gainDB); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | void AntennaToolsGUI::calcDishEffectiveArea() | ||||||
|  | { | ||||||
|  |     double gainDB = ui->dishGain->value(); | ||||||
|  |     double g = pow(10.0, gainDB/10.0); | ||||||
|  |     double lambda = dishLambda(); | ||||||
|  |     double ae = g * lambda * lambda / (4.0 * M_PI); | ||||||
|  |     ui->dishEffectiveArea->setValue(ae); | ||||||
|  | } | ||||||
|  | 
 | ||||||
| void AntennaToolsGUI::on_dishFrequency_valueChanged(double value) | void AntennaToolsGUI::on_dishFrequency_valueChanged(double value) | ||||||
| { | { | ||||||
|     m_settings.m_dishFrequencyMHz = value; |     m_settings.m_dishFrequencyMHz = value; | ||||||
|     applySettings(); |     applySettings(); | ||||||
|     calcDishBeamwidth(); |     calcDishBeamwidth(); | ||||||
|     calcDishGain(); |     calcDishGain(); | ||||||
|  |     calcDishEffectiveArea(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void AntennaToolsGUI::on_dishFrequencySelect_currentIndexChanged(int index) | void AntennaToolsGUI::on_dishFrequencySelect_currentIndexChanged(int index) | ||||||
| @ -453,6 +467,7 @@ void AntennaToolsGUI::on_dishDiameter_valueChanged(double value) | |||||||
|     calcDishFocalLength(); |     calcDishFocalLength(); | ||||||
|     calcDishBeamwidth(); |     calcDishBeamwidth(); | ||||||
|     calcDishGain(); |     calcDishGain(); | ||||||
|  |     calcDishEffectiveArea(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void AntennaToolsGUI::on_dishLengthUnits_currentIndexChanged(int index) | void AntennaToolsGUI::on_dishLengthUnits_currentIndexChanged(int index) | ||||||
| @ -462,6 +477,7 @@ void AntennaToolsGUI::on_dishLengthUnits_currentIndexChanged(int index) | |||||||
|     calcDishFocalLength(); |     calcDishFocalLength(); | ||||||
|     calcDishBeamwidth(); |     calcDishBeamwidth(); | ||||||
|     calcDishGain(); |     calcDishGain(); | ||||||
|  |     calcDishEffectiveArea(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void AntennaToolsGUI::on_dishDepth_valueChanged(double value) | void AntennaToolsGUI::on_dishDepth_valueChanged(double value) | ||||||
| @ -476,6 +492,7 @@ void AntennaToolsGUI::on_dishEfficiency_valueChanged(int value) | |||||||
|     m_settings.m_dishEfficiency = value; |     m_settings.m_dishEfficiency = value; | ||||||
|     applySettings(); |     applySettings(); | ||||||
|     calcDishGain(); |     calcDishGain(); | ||||||
|  |     calcDishEffectiveArea(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void AntennaToolsGUI::on_dishSurfaceError_valueChanged(double value) | void AntennaToolsGUI::on_dishSurfaceError_valueChanged(double value) | ||||||
| @ -483,6 +500,7 @@ void AntennaToolsGUI::on_dishSurfaceError_valueChanged(double value) | |||||||
|     m_settings.m_dishSurfaceError= value; |     m_settings.m_dishSurfaceError= value; | ||||||
|     applySettings(); |     applySettings(); | ||||||
|     calcDishGain(); |     calcDishGain(); | ||||||
|  |     calcDishEffectiveArea(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| double AntennaToolsGUI::getDeviceSetFrequencyMHz(int index) | double AntennaToolsGUI::getDeviceSetFrequencyMHz(int index) | ||||||
|  | |||||||
| @ -74,6 +74,7 @@ private: | |||||||
|     void calcDishFocalLength(); |     void calcDishFocalLength(); | ||||||
|     void calcDishBeamwidth(); |     void calcDishBeamwidth(); | ||||||
|     void calcDishGain(); |     void calcDishGain(); | ||||||
|  |     void calcDishEffectiveArea(); | ||||||
|     double dishLambda() const; |     double dishLambda() const; | ||||||
|     double dishLengthMetres(double length) const; |     double dishLengthMetres(double length) const; | ||||||
|     double dishMetresToLength(double m) const; |     double dishMetresToLength(double m) const; | ||||||
|  | |||||||
| @ -6,8 +6,8 @@ | |||||||
|    <rect> |    <rect> | ||||||
|     <x>0</x> |     <x>0</x> | ||||||
|     <y>0</y> |     <y>0</y> | ||||||
|     <width>377</width> |     <width>394</width> | ||||||
|     <height>499</height> |     <height>523</height> | ||||||
|    </rect> |    </rect> | ||||||
|   </property> |   </property> | ||||||
|   <property name="sizePolicy"> |   <property name="sizePolicy"> | ||||||
| @ -42,8 +42,8 @@ | |||||||
|     <rect> |     <rect> | ||||||
|      <x>16</x> |      <x>16</x> | ||||||
|      <y>19</y> |      <y>19</y> | ||||||
|      <width>351</width> |      <width>371</width> | ||||||
|      <height>451</height> |      <height>481</height> | ||||||
|     </rect> |     </rect> | ||||||
|    </property> |    </property> | ||||||
|    <property name="sizePolicy"> |    <property name="sizePolicy"> | ||||||
| @ -219,10 +219,23 @@ | |||||||
|      <string>Dish</string> |      <string>Dish</string> | ||||||
|     </attribute> |     </attribute> | ||||||
|     <layout class="QGridLayout" name="gridLayout_2"> |     <layout class="QGridLayout" name="gridLayout_2"> | ||||||
|      <item row="8" column="0"> |      <item row="5" column="0"> | ||||||
|       <widget class="QLabel" name="dishBeamwidthLabel"> |       <widget class="QLabel" name="dishFocalLengthLabel"> | ||||||
|        <property name="text"> |        <property name="text"> | ||||||
|         <string>Beamwidth (°)</string> |         <string>Focal length</string> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="3" column="1"> | ||||||
|  |       <widget class="QDoubleSpinBox" name="dishDiameter"> | ||||||
|  |        <property name="toolTip"> | ||||||
|  |         <string>Diameter of the dish</string> | ||||||
|  |        </property> | ||||||
|  |        <property name="maximum"> | ||||||
|  |         <double>1000.000000000000000</double> | ||||||
|  |        </property> | ||||||
|  |        <property name="value"> | ||||||
|  |         <double>100.000000000000000</double> | ||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
| @ -233,16 +246,10 @@ | |||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="11" column="0" colspan="3"> |      <item row="3" column="0"> | ||||||
|       <widget class="QLabel" name="dishImage"> |       <widget class="QLabel" name="dishDiameteLabel"> | ||||||
|        <property name="text"> |        <property name="text"> | ||||||
|         <string/> |         <string>Diameter</string> | ||||||
|        </property> |  | ||||||
|        <property name="pixmap"> |  | ||||||
|         <pixmap resource="antennatools.qrc">:/antennatools/antennatools/dish.png</pixmap> |  | ||||||
|        </property> |  | ||||||
|        <property name="alignment"> |  | ||||||
|         <set>Qt::AlignCenter</set> |  | ||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
| @ -270,10 +277,36 @@ | |||||||
|        </item> |        </item> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="5" column="0"> |      <item row="13" column="0"> | ||||||
|       <widget class="QLabel" name="dishFocalLengthLabel"> |       <spacer name="verticalSpacer"> | ||||||
|  |        <property name="orientation"> | ||||||
|  |         <enum>Qt::Vertical</enum> | ||||||
|  |        </property> | ||||||
|  |        <property name="sizeHint" stdset="0"> | ||||||
|  |         <size> | ||||||
|  |          <width>20</width> | ||||||
|  |          <height>40</height> | ||||||
|  |         </size> | ||||||
|  |        </property> | ||||||
|  |       </spacer> | ||||||
|  |      </item> | ||||||
|  |      <item row="10" column="0"> | ||||||
|  |       <widget class="QLabel" name="dishGainLabel"> | ||||||
|        <property name="text"> |        <property name="text"> | ||||||
|         <string>Focal length</string> |         <string>Gain (dB)</string> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="8" column="1"> | ||||||
|  |       <widget class="QDoubleSpinBox" name="dishBeamwidth"> | ||||||
|  |        <property name="toolTip"> | ||||||
|  |         <string>Halfpower (-3dB) beamwidth in degrees</string> | ||||||
|  |        </property> | ||||||
|  |        <property name="readOnly"> | ||||||
|  |         <bool>true</bool> | ||||||
|  |        </property> | ||||||
|  |        <property name="maximum"> | ||||||
|  |         <double>360.000000000000000</double> | ||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
| @ -297,25 +330,22 @@ | |||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="4" column="0"> |      <item row="8" column="0"> | ||||||
|       <widget class="QLabel" name="dishDepthLabel"> |       <widget class="QLabel" name="dishBeamwidthLabel"> | ||||||
|        <property name="text"> |        <property name="text"> | ||||||
|         <string>Depth</string> |         <string>Beamwidth (°)</string> | ||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="12" column="0"> |      <item row="4" column="1"> | ||||||
|       <spacer name="verticalSpacer"> |       <widget class="QDoubleSpinBox" name="dishDepth"> | ||||||
|        <property name="orientation"> |        <property name="toolTip"> | ||||||
|         <enum>Qt::Vertical</enum> |         <string>Depth of the dish</string> | ||||||
|        </property> |        </property> | ||||||
|        <property name="sizeHint" stdset="0"> |        <property name="maximum"> | ||||||
|         <size> |         <double>1000.000000000000000</double> | ||||||
|          <width>20</width> |  | ||||||
|          <height>40</height> |  | ||||||
|         </size> |  | ||||||
|        </property> |        </property> | ||||||
|       </spacer> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="5" column="1"> |      <item row="5" column="1"> | ||||||
|       <widget class="QDoubleSpinBox" name="dishFocalLength"> |       <widget class="QDoubleSpinBox" name="dishFocalLength"> | ||||||
| @ -330,33 +360,40 @@ | |||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="8" column="1"> |      <item row="2" column="0"> | ||||||
|       <widget class="QDoubleSpinBox" name="dishBeamwidth"> |       <widget class="QLabel" name="dishSurfaceErrorLabel"> | ||||||
|        <property name="toolTip"> |  | ||||||
|         <string>Halfpower (-3dB) beamwidth in degrees</string> |  | ||||||
|        </property> |  | ||||||
|        <property name="readOnly"> |  | ||||||
|         <bool>true</bool> |  | ||||||
|        </property> |  | ||||||
|        <property name="maximum"> |  | ||||||
|         <double>360.000000000000000</double> |  | ||||||
|        </property> |  | ||||||
|       </widget> |  | ||||||
|      </item> |  | ||||||
|      <item row="4" column="1"> |  | ||||||
|       <widget class="QDoubleSpinBox" name="dishDepth"> |  | ||||||
|        <property name="toolTip"> |  | ||||||
|         <string>Depth of the dish</string> |  | ||||||
|        </property> |  | ||||||
|        <property name="maximum"> |  | ||||||
|         <double>1000.000000000000000</double> |  | ||||||
|        </property> |  | ||||||
|       </widget> |  | ||||||
|      </item> |  | ||||||
|      <item row="10" column="0"> |  | ||||||
|       <widget class="QLabel" name="dishGainLabel"> |  | ||||||
|        <property name="text"> |        <property name="text"> | ||||||
|         <string>Gain (dB)</string> |         <string>Surface error</string> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="12" column="0" colspan="3"> | ||||||
|  |       <widget class="QLabel" name="dishImage"> | ||||||
|  |        <property name="text"> | ||||||
|  |         <string/> | ||||||
|  |        </property> | ||||||
|  |        <property name="pixmap"> | ||||||
|  |         <pixmap resource="antennatools.qrc">:/antennatools/antennatools/dish.png</pixmap> | ||||||
|  |        </property> | ||||||
|  |        <property name="alignment"> | ||||||
|  |         <set>Qt::AlignCenter</set> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="6" column="0"> | ||||||
|  |       <widget class="QLabel" name="dishFDLabel"> | ||||||
|  |        <property name="text"> | ||||||
|  |         <string>f/D</string> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="1" column="1"> | ||||||
|  |       <widget class="QSpinBox" name="dishEfficiency"> | ||||||
|  |        <property name="toolTip"> | ||||||
|  |         <string>Dish efficiency in percent</string> | ||||||
|  |        </property> | ||||||
|  |        <property name="maximum"> | ||||||
|  |         <number>100</number> | ||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
| @ -376,43 +413,16 @@ | |||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="3" column="1"> |      <item row="2" column="1"> | ||||||
|       <widget class="QDoubleSpinBox" name="dishDiameter"> |       <widget class="QDoubleSpinBox" name="dishSurfaceError"> | ||||||
|        <property name="toolTip"> |        <property name="toolTip"> | ||||||
|         <string>Diameter of the dish</string> |         <string>RMS surface error (as a length)</string> | ||||||
|        </property> |  | ||||||
|        <property name="maximum"> |  | ||||||
|         <double>1000.000000000000000</double> |  | ||||||
|        </property> |  | ||||||
|        <property name="value"> |  | ||||||
|         <double>100.000000000000000</double> |  | ||||||
|        </property> |  | ||||||
|       </widget> |  | ||||||
|      </item> |  | ||||||
|      <item row="6" column="1"> |  | ||||||
|       <widget class="QDoubleSpinBox" name="dishFD"> |  | ||||||
|        <property name="toolTip"> |  | ||||||
|         <string>Focal length to diameter ratio</string> |  | ||||||
|        </property> |        </property> | ||||||
|        <property name="readOnly"> |        <property name="readOnly"> | ||||||
|         <bool>true</bool> |         <bool>false</bool> | ||||||
|        </property> |        </property> | ||||||
|        <property name="maximum"> |        <property name="maximum"> | ||||||
|         <double>1.000000000000000</double> |         <double>360.000000000000000</double> | ||||||
|        </property> |  | ||||||
|       </widget> |  | ||||||
|      </item> |  | ||||||
|      <item row="3" column="0"> |  | ||||||
|       <widget class="QLabel" name="dishDiameteLabel"> |  | ||||||
|        <property name="text"> |  | ||||||
|         <string>Diameter</string> |  | ||||||
|        </property> |  | ||||||
|       </widget> |  | ||||||
|      </item> |  | ||||||
|      <item row="6" column="0"> |  | ||||||
|       <widget class="QLabel" name="dishFDLabel"> |  | ||||||
|        <property name="text"> |  | ||||||
|         <string>f/D</string> |  | ||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
| @ -450,33 +460,43 @@ | |||||||
|        </item> |        </item> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
|      <item row="1" column="1"> |      <item row="6" column="1"> | ||||||
|       <widget class="QSpinBox" name="dishEfficiency"> |       <widget class="QDoubleSpinBox" name="dishFD"> | ||||||
|        <property name="toolTip"> |        <property name="toolTip"> | ||||||
|         <string>Dish efficiency in percent</string> |         <string>Focal length to diameter ratio</string> | ||||||
|        </property> |  | ||||||
|        <property name="maximum"> |  | ||||||
|         <number>100</number> |  | ||||||
|        </property> |  | ||||||
|       </widget> |  | ||||||
|      </item> |  | ||||||
|      <item row="2" column="0"> |  | ||||||
|       <widget class="QLabel" name="dishSurfaceErrorLabel"> |  | ||||||
|        <property name="text"> |  | ||||||
|         <string>Surface error</string> |  | ||||||
|        </property> |  | ||||||
|       </widget> |  | ||||||
|      </item> |  | ||||||
|      <item row="2" column="1"> |  | ||||||
|       <widget class="QDoubleSpinBox" name="dishSurfaceError"> |  | ||||||
|        <property name="toolTip"> |  | ||||||
|         <string>RMS surface error (as a length)</string> |  | ||||||
|        </property> |        </property> | ||||||
|        <property name="readOnly"> |        <property name="readOnly"> | ||||||
|         <bool>false</bool> |         <bool>true</bool> | ||||||
|        </property> |        </property> | ||||||
|        <property name="maximum"> |        <property name="maximum"> | ||||||
|         <double>360.000000000000000</double> |         <double>1.000000000000000</double> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="4" column="0"> | ||||||
|  |       <widget class="QLabel" name="dishDepthLabel"> | ||||||
|  |        <property name="text"> | ||||||
|  |         <string>Depth</string> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="11" column="0"> | ||||||
|  |       <widget class="QLabel" name="dishEffectiveAreaLabel"> | ||||||
|  |        <property name="text"> | ||||||
|  |         <string>Effective area (m<sup>2</sup>)</string> | ||||||
|  |        </property> | ||||||
|  |       </widget> | ||||||
|  |      </item> | ||||||
|  |      <item row="11" column="1"> | ||||||
|  |       <widget class="QDoubleSpinBox" name="dishEffectiveArea"> | ||||||
|  |        <property name="toolTip"> | ||||||
|  |         <string>Effective area</string> | ||||||
|  |        </property> | ||||||
|  |        <property name="readOnly"> | ||||||
|  |         <bool>true</bool> | ||||||
|  |        </property> | ||||||
|  |        <property name="maximum"> | ||||||
|  |         <double>100000000.000000000000000</double> | ||||||
|        </property> |        </property> | ||||||
|       </widget> |       </widget> | ||||||
|      </item> |      </item> | ||||||
| @ -511,6 +531,7 @@ | |||||||
|   <tabstop>dishFD</tabstop> |   <tabstop>dishFD</tabstop> | ||||||
|   <tabstop>dishBeamwidth</tabstop> |   <tabstop>dishBeamwidth</tabstop> | ||||||
|   <tabstop>dishGain</tabstop> |   <tabstop>dishGain</tabstop> | ||||||
|  |   <tabstop>dishEffectiveArea</tabstop> | ||||||
|  </tabstops> |  </tabstops> | ||||||
|  <resources> |  <resources> | ||||||
|   <include location="../../../sdrgui/resources/res.qrc"/> |   <include location="../../../sdrgui/resources/res.qrc"/> | ||||||
|  | |||||||
| @ -30,7 +30,7 @@ | |||||||
| const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = { | const PluginDescriptor AntennaToolsPlugin::m_pluginDescriptor = { | ||||||
|     AntennaTools::m_featureId, |     AntennaTools::m_featureId, | ||||||
|     QStringLiteral("Antenna Tools"), |     QStringLiteral("Antenna Tools"), | ||||||
|     QStringLiteral("6.16.2"), |     QStringLiteral("6.16.7"), | ||||||
|     QStringLiteral("(c) Jon Beniston, M7RCE"), |     QStringLiteral("(c) Jon Beniston, M7RCE"), | ||||||
|     QStringLiteral("https://github.com/f4exb/sdrangel"), |     QStringLiteral("https://github.com/f4exb/sdrangel"), | ||||||
|     true, |     true, | ||||||
|  | |||||||
| @ -111,9 +111,11 @@ Displays the calculated focal length to diameter ratio. | |||||||
| 
 | 
 | ||||||
| <h3>16: Beamwidth</h3> | <h3>16: Beamwidth</h3> | ||||||
| 
 | 
 | ||||||
| Displays the halfpower (-3dB) beamwidth. | Displays the halfpower (-3dB) beamwidth in degrees. | ||||||
| 
 | 
 | ||||||
| Beamwidth is calculated as: 70*lambda/D. | Beamwidth is calculated as: pi/180*1.15*lambda/D. | ||||||
|  | 
 | ||||||
|  | Note that the constant 1.15 is dependent upon illumination tapering, which is determined by the feed. | ||||||
| 
 | 
 | ||||||
| <h3>17: Gain</h3> | <h3>17: Gain</h3> | ||||||
| 
 | 
 | ||||||
| @ -122,3 +124,9 @@ Displays the calculated gain in dB. | |||||||
| The nominal gain is calculated as: g0=10\*log10(eff/100.0\*(pi*D/lambda)^2) | The nominal gain is calculated as: g0=10\*log10(eff/100.0\*(pi*D/lambda)^2) | ||||||
| 
 | 
 | ||||||
| The gain is then adjusted for surface error with Ruze's equation: g=g0-685.81*(e/lambda)^2 | The gain is then adjusted for surface error with Ruze's equation: g=g0-685.81*(e/lambda)^2 | ||||||
|  | 
 | ||||||
|  | <h3>18: Effective area</h3> | ||||||
|  | 
 | ||||||
|  | Displays the effective area in m^2. | ||||||
|  | 
 | ||||||
|  | Aeff is calculated as: g*lambda^2/(4*pi) | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user