-
Notifications
You must be signed in to change notification settings - Fork 8
Add specification documents for Antenna #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
200km
wants to merge
6
commits into
develop
Choose a base branch
from
feature/add-spec-antenna
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
bb4e573
Add spec document file for antenna
200km 6b06bb4
Modify spec document of antenna
200km b2d0cec
Fix align
200km cf81098
Add specification documents for GsCalculator
200km f97f9a6
Fix math description
200km 7ae9f54
Fix for math description
200km File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| # Specification for Antenna | ||
|
|
||
| ## 1. Overview | ||
| 1. Functions | ||
| - `Antenna` class emulates the radiation wave antenna on spacecraft and ground stations. | ||
|
|
||
| 2. Related files | ||
| - Main source codes: `Antenna.cpp`, `Antenna.h` | ||
| - Initialize functions: `InitAntenna.hpp`, `InitAntenna.cpp` | ||
| - Initialize files: `ANT.ini`, `ANT_SC.ini`, `ANT_GS.ini` | ||
|
|
||
| 3. How to use | ||
| - Make instance of this class at `SpacecraftComponents` and/or `GroundStationComponents` by `InitAntenna` function. | ||
| - Set parameters in the antenna initialize files. | ||
|
|
||
| ## 2. Explanation of Algorithm | ||
| 1. `CalcTxEIRP` | ||
| 1. overview | ||
| - Function to calculate transmit EIRP (Equivalent Isotropic Radiated Power). | ||
|
|
||
| 1. input and output | ||
| - input | ||
| + $\theta$: Angle from PZ axis on the antenna frame [rad] | ||
| + $\phi$: Angle from PX axis on the antenna frame [rad] | ||
| - Set $\phi = 0$ for axial symmetry pattern | ||
| - output | ||
| + Transmit EIRP [dBW] | ||
|
|
||
| 1. algorithm | ||
| - $EIRP_{tx}$: Transmit EIRP [dBW] | ||
| - $P_{tx}$: RF output power for transmission [W] | ||
| - $L_{f_{tx}}$: Feeder loss [dB] | ||
| - $L_{p_{tx}}$: Pointing loss [dB] | ||
| - $G_{tx}(\theta, \phi)$: Antenna gain [dBi] | ||
| - The constant value $\bar{EIRP}_{tx}$ is calculated at the `Constructor` | ||
| - $G_{tx}(\theta, \phi)$ is calculated by `CalcAntennaGain` function | ||
| ```math | ||
| \begin{align*} | ||
| EIRP_{tx} &= 10 \log_{10}{P_{tx}} + L_{ftx} + L_{ptx} + G_{tx}(\theta, \phi) \\ | ||
| &= \bar{EIRP}_{tx} + G_{tx}(\theta, \phi) | ||
| \end{align*} | ||
| ``` | ||
|
|
||
| 1. `CalcRxGT` | ||
| 1. overview | ||
| - Function to calculate receive G/T (Gain/Temperature). | ||
|
|
||
| 1. input and output | ||
| - input | ||
| + $\theta$: Angle from PZ axis on the antenna frame [rad] | ||
| + $\phi$: Angle from PX axis on the antenna frame [rad] | ||
| - Set $\phi = 0$ for axial symmetry pattern | ||
| - output | ||
| + Receive G/T [dB/K] | ||
|
|
||
| 1. algorithm | ||
| - $G/T_{rx}$: Receive G/T [dB/K] | ||
| - $L_{f_{rx}}$: Feeder loss [dB] | ||
| - $L_{p_{rx}}$: Pointing loss [dB] | ||
| - $T_{rx}$: System noise temperature [K] | ||
| - $G_{rx}(\theta, \phi)$: Receiver antenna gain [dBi] | ||
| - The constant value $\bar{G/T}_{rx}$ is calculated at the `Constructor` | ||
| - $G_{rx}(\theta, \phi)$ is calculated by `CalcAntennaGain` function | ||
| ```math | ||
| \begin{align*} | ||
| G/T_{rx} &= L_{frx} + L_{prx} - 10\log_{10}{T_{rx}} + G_{rx}(\theta, \phi)\\ | ||
| &= \bar{G/T}_{rx} + G_{rx}(\theta, \phi) | ||
| \end{align*} | ||
| ``` | ||
|
|
||
| 1. `CalcAntennaGain` | ||
| 1. overview | ||
| - Function to calculate antenna gain. | ||
| - The antenna gain calculation method is changed by the following `AntennaGainModel` | ||
| + `ISOTROPIC`: Ideal isotropic radiation pattern | ||
| - Generally, the isotropic antenna gain is 0 dBi, but users can set other value for ideal analysis which are not depending on antenna pointing direction. | ||
| + `RADIATION_PATTERN_CSV`: Arbitrary 3D radiation pattern defined in CSV file. | ||
| - For details, please refer `AntennaRadiationPattern`. | ||
|
|
||
| 1. input and output | ||
| - input | ||
| + `AntennaParameters` | ||
| - `AntennaGainModel`: Antenna gain model | ||
| - `AntennaRadiationPattern`: Antenna radiation pattern information | ||
| + $\theta$: Angle from PZ axis on the antenna frame [rad] | ||
| + $\phi$: Angle from PX axis on the antenna frame [rad] | ||
| - Set $\phi = 0$ for axial symmetry pattern | ||
| - output | ||
| + Antenna gain [dBi] | ||
|
|
||
| 1. algorithm | ||
| - `ISOTROPIC` mode | ||
| + The function just returns pre-defined antenna gain. | ||
| - `RADIATION_PATTERN_CSV` mode | ||
| + The function just returns `AntennaRadiationPattern::GetGain_dBi` | ||
|
|
||
| ## 3. Results of verifications | ||
| - TBW | ||
|
|
||
|
|
||
| ## 4. References | ||
| - NA | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,154 @@ | ||
| # Specification for GsCalculator | ||
|
|
||
| ## 1. Overview | ||
| 1. Functions | ||
| - `GsCalculator` class emulates communication analysis between spacecraft and Ground Stations. | ||
| - **NOTE**: The description of `GsCalculator` suits with current naming rule, but there are still old description as `GScalculator` in the codes. In this documents, we use `GsCalculator`. | ||
| - **NOTE**: The current `GsCalculator` is in the `Component` directory but doesn't inherit `ComponentBase`. We need to newly make `Analysis` directory and move `GsCalculator` to the directory. | ||
|
|
||
| 1. Related files | ||
| - Main source codes: `GsCalculator.cpp`, `GsCalculator.h` | ||
| - Initialize functions: `InitGsCalculator.hpp`, `InitGsCalculator.cpp` | ||
| - Initialize files: `GsCalculator.ini` | ||
|
|
||
| 1. How to use | ||
| - Make instance of this class at `GsComponents` by `InitGsCalculator` function. | ||
| - Set parameters in the initialize file. | ||
| - Call the `Update` function in the user defined `GroundStation` calculation class. | ||
|
|
||
| ## 2. Explanation of Algorithm | ||
| 1. `CalcCn0OnGs` | ||
| 1. overview | ||
| - Function to calculate $CN_{0}$ (Carrier to Noise density ratio) of received signal at the ground station. | ||
|
|
||
| 1. input and output | ||
| - input | ||
| + dynamics: Dynamics information of spacecraft to get spacecraft position | ||
| + sc_tx_ant: TX antenna mounted on the spacecraft | ||
| + ground_station: Ground station information to get ground station position | ||
| + gs_rx_ant: RX antenna mounted on the ground station | ||
| - output | ||
| + $CN_{0}$ [dB] | ||
|
|
||
| 1. algorithm | ||
| - Calculation of free space path loss $L_{fs}$ dB | ||
| - $D_{sc-gs}$: Distance between spacecraft and ground station [km] | ||
| - $f_{tx}$: TX signal frequency [MHz] | ||
| ```math | ||
| L_{fs} = -20\log_{10}{\left(\frac{4\pi D_{sc-gs}}{\frac{300}{1000}f_{tx}}\right)} | ||
| ``` | ||
| - Calculation of ground station direction on the spacecraft TX antenna frame | ||
| - $\boldsymbol{r}_{sc-gs}^{tx}$: Direction vector from spacecraft to ground station at the TX antenna frame | ||
| ```math | ||
| \begin{align*} | ||
| \boldsymbol{r}_{sc-gs}^{tx} &= \begin{bmatrix} | ||
| x_{sc-gs}^{tx} \\ | ||
| y_{sc-gs}^{tx} \\ | ||
| z_{sc-gs}^{tx} \\ | ||
| \end{bmatrix}\\ | ||
| \theta_{tx} &= \cos^{-1}(z_{sc-gs}^{tx})\\ | ||
| \phi_{tx} &= \cos^{-1}\left(\frac{x_{sc-gs}^{tx}}{\sin{\theta_{tx}}}\right) | ||
| \end{align*} | ||
| ``` | ||
| - Calculation of spacecraft direction on the ground station RX antenna frame | ||
| - $\boldsymbol{r}_{sc-gs}^{rx}$: Direction vector from ground station to spacecraft at the RX antenna frame | ||
| ```math | ||
| \begin{align*} | ||
| \boldsymbol{r}_{sc-gs}^{rx} &= \begin{bmatrix} | ||
| x_{sc-gs}^{rx} \\ | ||
| y_{sc-gs}^{rx} \\ | ||
| z_{sc-gs}^{rx} \\ | ||
| \end{bmatrix}\\ | ||
| \theta_{rx} &= \cos^{-1}(z_{sc-gs}^{rx})\\ | ||
| \phi_{rx} &= \cos^{-1}\left(\frac{x_{sc-gs}^{rx}}{\sin{\theta_{rx}}}\right) | ||
| \end{align*} | ||
| ``` | ||
| - Calculation of $CN_{0}$ | ||
| - $EIRP_{tx}(\theta_{tx}, \phi_{tx})$: Transmit EIRP calculated by `Antenna` class including TX antenna gain [dB] | ||
| - $L_{fs}$: Free space path loss[dB] | ||
| - $L_{pl}$: Polarization loss[dB] | ||
| - $L_{at}$: Atmospheric loss[dB] | ||
| - $L_{rf}$: Rain fall loss[dB] | ||
| - $L_{ot}$: Other loss[dB] | ||
| - $GT_{rx}(\theta_{rx}, \phi_{rx})$: Receive G/T calculated by `Antenna` class including RX antenna gain [dB/K] | ||
| - $k_{B}$: Boltzmann constant [J/K] | ||
| ```math | ||
| CN_{0} = EIRP_{tx}(\theta_{tx}, \phi_{tx}) + L_{fs} + L_{pl} + L_{at} + L_{rf} + L_{ot} + GT_{rx}(\theta_{rx}, \phi_{rx}) - 10\log_{10}{k_{B}} | ||
| ``` | ||
|
|
||
| 1. `CalcMaxBitrate` | ||
| 1. overview | ||
| - Function to calculate maximum bitrate for downlink. | ||
|
|
||
| 1. input and output | ||
| - input | ||
| + dynamics: Dynamics information of spacecraft to get spacecraft position | ||
| + sc_tx_ant: TX antenna mounted on the spacecraft | ||
| + ground_station: Ground station information to get ground station position | ||
| + gs_rx_ant: RX antenna mounted on the ground station | ||
| - output | ||
| + $R_{max}$: Maximum bitrate [Mbps] | ||
|
|
||
| 1. algorithm | ||
| - $E_{b}N_{0}$: Energy per bit to Noise density ratio [dB] | ||
| - $L_{hw}$: Hardware deterioration [dB] | ||
| - $G_{code}$: Coding gain [dB] | ||
| - $M_{rq}$: Margin requirement [dB] | ||
| ```math | ||
| \begin{align*} | ||
| M_{bitrate} &= CN_{0} - (E_{b}N_{0} + L_{hw} + G_{code}) - M_{req} \\ | ||
| R_{max} &= \frac{1}{1000000} 10^{\frac{M_{bitrate}}{10}} | ||
| \end{align*} | ||
| ``` | ||
|
|
||
| 1. `CalcReceiveMarginOnGs` | ||
| 1. overview | ||
| - Function to calculate receive margin at the ground station. | ||
|
|
||
| 1. input and output | ||
| - input | ||
| + dynamics: Dynamics information of spacecraft to get spacecraft position | ||
| + sc_tx_ant: TX antenna mounted on the spacecraft | ||
| + ground_station: Ground station information to get ground station position | ||
| + gs_rx_ant: RX antenna mounted on the ground station | ||
| - output | ||
| + $M_{rex}$: Receive margin [dB] | ||
|
|
||
| 1. algorithm | ||
| - $E_{b}N_{0}$: Energy per bit to Noise density ratio [dB] | ||
| - $L_{hw}$: Hardware deterioration [dB] | ||
| - $G_{code}$: Coding gain [dB] | ||
| - $R_{tx}$: TX bit rate[bps] | ||
| ```math | ||
| \begin{align*} | ||
| CN_{req} &= E_{b}N_{0} + L_{hw} + G_{code} + 10\log_{10}{R_{tx}} \\ | ||
| M_{rec} &= CN_{0} - CN_{req} | ||
| \end{align*} | ||
| ``` | ||
|
|
||
| 1. `Update` | ||
| 1. overview | ||
| - Function to update the following states in `GsCalculator`. | ||
| + $M_{rex}$: Receive margin [dB] | ||
| + $R_{max}$: Maximum bitrate [Mbps] | ||
| - The states are calculated when the spacecraft is visible from the ground station. When it is invisible, the states are set as meaning less value. | ||
|
|
||
| 1. input and output | ||
| - input | ||
| + dynamics: Dynamics information of spacecraft to get spacecraft position | ||
| + sc_tx_ant: TX antenna mounted on the spacecraft | ||
| + ground_station: Ground station information to get ground station position | ||
| + gs_rx_ant: RX antenna mounted on the ground station | ||
| - output | ||
| + NA | ||
|
|
||
| 1. algorithm | ||
| - Call `CalcReceiveMarginOnGs` and `CalcMaxBitrate` when the spacecraft is visible. | ||
|
|
||
| ## 3. Results of verifications | ||
| - TBW | ||
|
|
||
|
|
||
| ## 4. References | ||
| - NA | ||
|
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
の方がいいのではないでしょうか? (以下同様)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Markdownの機能で、下記のように表示時には勝手にインクリメントしてくれると思いますが、それでは見づらいということでしょうか?