generated from ut-issl/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #289 from ut-issl/develop
Merge develop into main for v5.2.0 release
- Loading branch information
Showing
333 changed files
with
11,415 additions
and
3,040 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,94 +1,146 @@ | ||
[ANT1] | ||
//衛星搭載アンテナの例 | ||
// Example of antenna on spacecraft | ||
|
||
//機体座標系(B)→コンポ座標系(C)変換Quaternion,(虚部,実部の順),コンポ座標系は視線方向がX | ||
//今はSTTと同じ方向の適当な値になってる | ||
// Quaternion converts body-fixed frame to component frame | ||
q_b2c(0) = 0 | ||
q_b2c(1) = 0 | ||
q_b2c(2) = 0 | ||
q_b2c(3) = 1 | ||
|
||
//送信用かのフラグ | ||
// Flag for transmitter or not | ||
is_transmitter = 1 | ||
|
||
//受信用かのフラグ | ||
is_receiver = 0 | ||
// Flag for receiver or not | ||
is_receiver = 1 | ||
|
||
//周波数[MHz] | ||
// frequency [MHz] | ||
frequency = 8200.0 | ||
|
||
// ↓送信用の場合に設定するパラメータ | ||
//RF出力[W] | ||
// Parameters for transmitter | ||
// RF output power [W] | ||
tx_output = 1.0 | ||
|
||
//送信ゲイン[dBi] | ||
tx_gain = 8.0 | ||
|
||
//給電損失[dB] | ||
// Feeder loss [dB] | ||
tx_loss_feeder = -1.5 | ||
|
||
//ポインティング損失[dB] | ||
// Pointing loss [dB] | ||
tx_loss_pointing = 0.0 | ||
// ↑ | ||
|
||
//↓受信用の場合に設定するパラメータ(つまり今の値は適当) | ||
//受信ゲイン[dBi] | ||
rx_gain = 43.27 | ||
// Antenna gain model | ||
// ISOTROPIC: Ideal isotropic antenna | ||
// RADIATION_PATTERN_CSV: Radiation pattern obtained by CSV files | ||
tx_antenna_gain_model = RADIATION_PATTERN_CSV | ||
|
||
// Gain for ISOTROPIC mode [dBi] | ||
// Generally, it is zero but users can set any value for ideal analysis | ||
tx_gain = 8.0 | ||
|
||
//給電損失[dB] | ||
// Antenna radiation pattern CSV file path | ||
tx_antenna_radiation_pattern_file = ../../data/SampleSat/ini/component/AntennaRadiationPatternCsv/SampleAntennaRadiationPattern.csv | ||
// General information of the CSV file | ||
tx_length_theta = 360 | ||
tx_length_phi = 181 | ||
tx_theta_max_rad = 6.28 | ||
tx_phi_max_rad = 3.14 | ||
|
||
|
||
// Parameters for receiver | ||
// Feeder loss [dB] | ||
rx_loss_feeder = -0.5 | ||
|
||
//ポインティング損失[dB] | ||
// Pointing loss [dB] | ||
rx_loss_pointing = -0.5 | ||
|
||
//システム雑音温度[K] | ||
// System noise temperature [K] | ||
rx_system_noise_temperature = 230 | ||
// ↑ | ||
|
||
// Antenna gain model | ||
// ISOTROPIC: Ideal isotropic antenna | ||
// RADIATION_PATTERN_CSV: Radiation pattern obtained by CSV files | ||
rx_antenna_gain_model = RADIATION_PATTERN_CSV | ||
|
||
// Gain for ISOTROPIC mode [dBi] | ||
// Generally, it is zero but users can set any value for ideal analysis | ||
rx_gain = 43.27 | ||
|
||
// Antenna radiation pattern CSV file path | ||
rx_antenna_radiation_pattern_file = ../../data/SampleSat/ini/component/AntennaRadiationPatternCsv/SampleAntennaRadiationPattern.csv | ||
// General information of the CSV file | ||
rx_length_theta = 360 | ||
rx_length_phi = 181 | ||
rx_theta_max_rad = 6.28 | ||
rx_phi_max_rad = 3.14 | ||
|
||
|
||
[ANT2] | ||
//地上局アンテナの例 | ||
// Example of antenna on ground station | ||
|
||
//機体座標系(B)→コンポ座標系(C)変換Quaternion,(虚部,実部の順),コンポ座標系は視線方向がX | ||
//地上局アンテナではこの値を使うことはないので適当 | ||
// Quaternion converts body-fixed frame to component frame | ||
q_b2c(0) = 0 | ||
q_b2c(1) = 0 | ||
q_b2c(2) = 0 | ||
q_b2c(3) = 1 | ||
|
||
//送信用かのフラグ | ||
// Flag for transmitter or not | ||
is_transmitter = 0 | ||
|
||
//受信用かのフラグ | ||
// Flag for receiver or not | ||
is_receiver = 1 | ||
|
||
//周波数[MHz] | ||
// frequency [MHz] | ||
frequency = 8200.0 | ||
|
||
// ↓送信用の場合に設定するパラメータ(つまり今の値は適当) | ||
//RF出力[W] | ||
// Parameters for transmitter | ||
// RF output power [W] | ||
tx_output = 1.0 | ||
|
||
//送信ゲイン[dBi] | ||
tx_gain = 12.0 | ||
|
||
//給電損失[dB] | ||
// Feeder loss [dB] | ||
tx_loss_feeder = -1.5 | ||
|
||
//ポインティング損失[dB] | ||
// Pointing loss [dB] | ||
tx_loss_pointing = 0.0 | ||
// ↑ | ||
|
||
//↓受信用の場合に設定するパラメータ | ||
//受信ゲイン[dBi] | ||
rx_gain = 43.27 | ||
// Antenna gain model | ||
// ISOTROPIC: Ideal isotropic antenna | ||
// RADIATION_PATTERN_CSV: Radiation pattern obtained by CSV files | ||
tx_antenna_gain_model = RADIATION_PATTERN_CSV | ||
|
||
// Gain for ISOTROPIC mode [dBi] | ||
// Generally, it is zero but users can set any value for ideal analysis | ||
tx_gain = 12.0 | ||
|
||
// Antenna radiation pattern CSV file path | ||
tx_antenna_radiation_pattern_file = ../../data/SampleSat/ini/component/AntennaRadiationPatternCsv/SampleAntennaRadiationPattern.csv | ||
// General information of the CSV file | ||
tx_length_theta = 360 | ||
tx_length_phi = 181 | ||
tx_theta_max_rad = 6.28 | ||
tx_phi_max_rad = 3.14 | ||
|
||
//給電損失[dB] | ||
|
||
// Parameters for receiver | ||
// Feeder loss [dB] | ||
rx_loss_feeder = -0.5 | ||
|
||
//ポインティング損失[dB] | ||
// Pointing loss [dB] | ||
rx_loss_pointing = -0.5 | ||
|
||
//システム雑音温度[K] | ||
// System noise temperature [K] | ||
rx_system_noise_temperature = 230 | ||
// ↑ | ||
|
||
// Antenna gain model | ||
// ISOTROPIC: Ideal isotropic antenna | ||
// RADIATION_PATTERN_CSV: Radiation pattern obtained by CSV files | ||
rx_antenna_gain_model = RADIATION_PATTERN_CSV | ||
|
||
// Gain for ISOTROPIC mode [dBi] | ||
// Generally, it is zero but users can set any value for ideal analysis | ||
rx_gain = 43.27 | ||
|
||
// Antenna radiation pattern CSV file path | ||
rx_antenna_radiation_pattern_file = ../../data/SampleSat/ini/component/AntennaRadiationPatternCsv/SampleAntennaRadiationPattern.csv | ||
// General information of the CSV file | ||
rx_length_theta = 360 | ||
rx_length_phi = 181 | ||
rx_theta_max_rad = 6.28 | ||
rx_phi_max_rad = 3.14 |
Oops, something went wrong.