TOP
How to Receive
DAQ Data Format
Format
Message Mode
Conversion function is appeared as follows.
-
Gyro sensor temperature convertion function
From 42th byte to 44th byte are temperature data.
Please convert 42th byte to decimal number. It is Thermo0.
Please convert 43th byte to decimal number. It is Thermo1.
Please convert 44th byte to decimal number. It is Thermo2.
ex. When these data cames, 0x12,0x34,0x56
Thermo0 = HEX2DEC(12) = 18
Thermo1 = HEX2DEC(34) = 52
Thermo2 = HEX2DEC(56) = 86
【Gyro temperature convertion functions】
Gyro_TemperatureX:[℃] = 1.315 * Thermo0 - 250.2
Gyro_TemperatureY:[℃] = 1.314 * Thermo1 - 250.2
Gyro_TemperatureZ:[℃] = 1.282 * Thermo2 - 244.2
-
Gyro sensor convertion fuctor
Gyro sensor convertion fuctors are appeared.
【Gyro sensor convertion fuctors function】
a0 = 4.79592 * 10-6 * Gyro_TemperatureX + 2.89902 * 10-2
a1 = 3.99077 * 10-6 * Gyro_TemperatureY + 2.91409 * 10-2
a2 = 3.28476 * 10-6 * Gyro_TemperatureZ + 2.90810 * 10-2
b0 = -1.32759 * 10-5 * Gyro_TemperatureX2 + 1.94819 * 10- 3 * Gyro_TemperatureX - 3.72796
b1 = -7.24204 * 10-6 * Gyro_TemperatureY2 + 6.72932 * 10- 4 * Gyro_TemperatureY - 3.75689
b2 = -8.13262 * 10-6 * Gyro_TemperatureZ2 - 1.80186 * 10- 4 * Gyro_TemperatureX - 3.44149
-
Gyro sensor angular velocity convertion function
す
Convertion function for obtaining angular elocity of satellite is appeared
4bytes are one group. It is composed by 40bytes of gyro data.
1st byte means number of data
Please convert 2nd byte to decimal number. It is GyroX.
Please convert 3rd byte to decimal number. It is GyroY.
Please convert 4th byte to decimal number. It is GyroZ.
ex. When these data cames, 0x12,0x34,0x56,0x78,
GyroX = HEX2DEC(34) = 52
GyroY = HEX2DEC(56) = 86
GyroZ = HEX2DEC(78) = 120
となる。
【Gyro sensor angular velocity convertion function】
Gyro_SensorX [rad/s] = a0 * GyroX + b0
Gyro_SensorY [rad/s] = -{ a1 * GyroY + b1 }
Gyro_SensorZ [rad/s] = -{ a2 * GyroZ + b2 }
-
Magnet sensor convertion function
Convertion function for obtaining magnet sensor data of satellite is appeared
2bytes are one group.
For obtainning MAGX
Please convert 2bytes data to decimal number.
ex. When these data comes, 0x12,0x34,
Plese convert follower format →「0x1234(hex)=4660(decimal)」.
Please use same convertion when you want to obtain MAGY and MAGZ.
【Magnet sensor convertion function】
MagnetSensor_X:[μT] = 0.0068 * MAGX - 0.36119
MagnetSensor_Y:[μT] = -0.00675 * MAGZ - 0.07804
MagnetSensor_Z:[μT] = 0.00673 * MAGY + 0.11584
Copyright ©, Tokyo Institute of Technology, All Rights Reserved.