I’ve decided to rewrite all my internal systems simulation – now it’s A LOT better than it was, and it’s actually easy to add new systems there.
Primary change is that now there’s global table with all simulation-related stuff, and you can access any variable of any system from any point in simulation. For example if you want to find out voltage on specific bus, you can just write XSV.Systems.Electric.Bus["ac2"].Voltage. That is long, but it’s also reason for rewrite: I found large, long descriptive names really helpful when dealing with simulation code.
All systems have been rewritten, especially sensor system. Now every sensor is fully specified, it’s physical location, location of it’s wiring, electric bus it belongs to, type (various types make them behave differently), etc.
And what’s best – adding sensor instantly registers it in computer software, you can access it by using it’s literal name. There’s 280 or so sensors right now. And also there’s information about this sensor in computer database (limits, units, description).
Actual sensor data is decoded by MDM (multiplexor/demultiplexor, a device which gathers a lot of analog information from devices, and converts it into digital information to send to computers), and send over the bus.
Here’s list of all sensors currently registered, if you’re curious:
V20G0001 (HydraulicSystem.HydraulicPump1_Pressure): Analog gauge sensor (3 .. 22 mPa, Hydraulic pump 1 pressure) V21G0002 (HydraulicSystem.HydraulicPump2_Pressure): Analog gauge sensor (3 .. 22 mPa, Hydraulic pump 2 pressure) V22G0003 (HydraulicSystem.HydraulicAccumulator1_Pressure): Analog gauge sensor (3 .. 22 mPa, Hydraulic accumulator 1 pressure) V23G0004 (HydraulicSystem.HydraulicAccumulator2_Pressure): Analog gauge sensor (3 .. 22 mPa, Hydraulic accumulator 2 pressure) V22G0005 (HydraulicSystem.HydraulicAccumulator1_Quantity): Analog gauge sensor (0 .. 2 liters, Hydraulic accumulator 1 quantity) V23G0006 (HydraulicSystem.HydraulicAccumulator2_Quantity): Analog gauge sensor (0 .. 2 liters, Hydraulic accumulator 2 quantity) V20R0007 (HydraulicSystem.HydraulicPump1_RPM): Analog rpm sensor (0 .. 5000 rpm, Hydraulic pump 1 RPM) V21R0008 (HydraulicSystem.HydraulicPump2_RPM): Analog rpm sensor (0 .. 5000 rpm, Hydraulic pump 2 RPM) V22G0011 (HydraulicSystem.HydraulicReservoir1_Quantity): Analog gauge sensor (0 .. 2 liters, Hydraulic reservoir 1 quantity) V23G0012 (HydraulicSystem.HydraulicReservoir2_Quantity): Analog gauge sensor (0 .. 2 liters, Hydraulic reservoir 2 quantity) V05V0015 (ElectricSystem.MasterVoltage): Analog voltage sensor (0 .. 60 Vdc, Total voltage on bus tie (or voltage of fuel cell 1 if buses aren't tied)) V05A0016 (ElectricSystem.MasterCurrent): Analog current sensor (0 .. 1100 Adc, Total ampere load on both fuel cells (output may be wrong if buses aren't tied)) V05V0021 (ElectricSystem.DC1Voltage): Analog voltage sensor (0 .. 60 Vdc, DC1 bus voltage) V05V0022 (ElectricSystem.DC2Voltage): Analog voltage sensor (0 .. 60 Vdc, DC2 bus voltage) V05A0023 (ElectricSystem.DC1Current): Analog current sensor (0 .. 1100 Adc, DC1 bus amperes) V05A0024 (ElectricSystem.DC2Current): Analog current sensor (0 .. 1100 Adc, DC2 bus amperes) V06V0031 (ElectricSystem.MFD1Voltage): Analog voltage sensor (0 .. 60 Vdc, MFD1 (CRT left) bus voltage) V07V0032 (ElectricSystem.MFD2Voltage): Analog voltage sensor (0 .. 60 Vdc, MFD2 (CRT right and behind) bus voltage) V06A0033 (ElectricSystem.MFD1Current): Analog current sensor (0 .. 1100 Adc, MFD1 (CRT left) bus amperes) V07A0034 (ElectricSystem.MFD2Current): Analog current sensor (0 .. 1100 Adc, MFD2 (CRT right and behind) bus amperes) V06V0035 (ElectricSystem.AVC1Voltage): Analog voltage sensor (0 .. 60 Vdc, AVC1 (avionics left) bus voltage) V07V0036 (ElectricSystem.AVC2Voltage): Analog voltage sensor (0 .. 60 Vdc, AVC2 (avionics right) bus voltage) V06A0037 (ElectricSystem.AVC1Current): Analog current sensor (0 .. 1100 Adc, AVC1 (avionics left) bus amperes) V07A0038 (ElectricSystem.AVC2Current): Analog current sensor (0 .. 1100 Adc, AVC2 (avionics right) bus amperes) V10V0041 (ElectricSystem.Inv1Voltage): Analog voltage sensor (0 .. 60 Vdc, Inverter 1 voltage) V11V0042 (ElectricSystem.Inv2Voltage): Analog voltage sensor (0 .. 60 Vdc, Inverter 2 voltage) V10A0043 (ElectricSystem.Inv1Current): Analog current sensor (0 .. 1100 Adc, Inverter 1 amperes) V11A0044 (ElectricSystem.Inv2Current): Analog current sensor (0 .. 1100 Adc, Inverter 2 amperes) V10V0045 (ElectricSystem.AC1Voltage): Analog voltage sensor (0 .. 400 Vac, AC1 bus voltage) V11V0046 (ElectricSystem.AC2Voltage): Analog voltage sensor (0 .. 400 Vac, AC2 bus voltage) V10A0047 (ElectricSystem.AC1Current): Analog current sensor (0 .. 90 Aac, AC1 bus amperes) V11A0048 (ElectricSystem.AC2Current): Analog current sensor (0 .. 90 Aac, AC2 bus amperes) V33V0051 (ElectricSystem.CBUS1Voltage): Analog voltage sensor (0 .. 400 Vac, CBUS1 voltage) V34V0052 (ElectricSystem.CBUS2Voltage): Analog voltage sensor (0 .. 400 Vac, CBUS2 voltage) V33A0053 (ElectricSystem.CBUS1Current): Analog current sensor (0 .. 90 Aac, CBUS1 amperes) V34A0054 (ElectricSystem.CBUS2Current): Analog current sensor (0 .. 90 Aac, CBUS2 amperes) V20V0061 (ElectricSystem.HBUS1Voltage): Analog voltage sensor (0 .. 400 Vac, HBUS1 voltage) V21V0062 (ElectricSystem.HBUS2Voltage): Analog voltage sensor (0 .. 400 Vac, HBUS2 voltage) V20A0063 (ElectricSystem.HBUS1Current): Analog current sensor (0 .. 90 Aac, HBUS1 amperes) V21A0064 (ElectricSystem.HBUS2Current): Analog current sensor (0 .. 90 Aac, HBUS2 amperes) V02V0071 (ElectricSystem.FMCVoltage): Analog voltage sensor (0 .. 400 Vac, FMC (forward rcs, etc) bus voltage) V23V0072 (ElectricSystem.BMCVoltage): Analog voltage sensor (0 .. 400 Vac, BMC (aft rcs, etc) bus voltage) V37A0073 (ElectricSystem.FMCCurrent): Analog current sensor (0 .. 90 Aac, FMC bus amperes) V38A0074 (ElectricSystem.BMCCurrent): Analog current sensor (0 .. 90 Aac, BMC bus amperes) V33V0081 (ElectricSystem.MNA1Voltage): Analog voltage sensor (0 .. 400 Vac, MNA1 (essential main load) bus voltage) V34V0082 (ElectricSystem.MNA2Voltage): Analog voltage sensor (0 .. 400 Vac, MNA2 (essential main load) bus voltage) V33A0083 (ElectricSystem.MNA1Current): Analog current sensor (0 .. 90 Aac, MNA1 bus amperes) V34A0084 (ElectricSystem.MNA2Current): Analog current sensor (0 .. 90 Aac, MNA2 bus amperes) V24G0091 (HydraulicSystem.Valve1_Pressure): Analog gauge sensor (3 .. 22 mPa, Valve 1 pressure) V25G0092 (HydraulicSystem.Valve2_Pressure): Analog gauge sensor (3 .. 22 mPa, Valve 2 pressure) V26G0093 (HydraulicSystem.Valve3_Pressure): Analog gauge sensor (3 .. 22 mPa, Valve 3 pressure) V27G0094 (HydraulicSystem.Valve4_Pressure): Analog gauge sensor (3 .. 22 mPa, Valve 4 pressure) V28G0095 (HydraulicSystem.Valve5_Pressure): Analog gauge sensor (3 .. 22 mPa, Valve 5 pressure) V29G0096 (HydraulicSystem.Valve6_Pressure): Analog gauge sensor (3 .. 22 mPa, Valve 6 pressure) V30G0097 (HydraulicSystem.CrossfeedValve_Pressure): Analog gauge sensor (3 .. 22 mPa, Crossfeed pressure) V30D0098 (HydraulicSystem.CrossfeedValve_Command ): Analog data sensor (0 .. 1 signal, Crossfeed command (crossfeed enabled?)) C24G0100 (HydraulicCommand.GF): Command line gauge sensor (-1 .. 1 %, GF (nose strut actuator) hydraulic command) C24G0101 (HydraulicCommand.LF): Command line gauge sensor (-1 .. 1 %, LF (nose gear uplock) hydraulic command) C25G0102 (HydraulicCommand.SF): Command line gauge sensor (-1 .. 1 %, SF (nose wheel steering) hydraulic command) C28G0103 (HydraulicCommand.GL): Command line gauge sensor (-1 .. 1 %, GL (left strut actuator) hydraulic command) C28G0104 (HydraulicCommand.LL): Command line gauge sensor (-1 .. 1 %, LL (left gear uplock) hydraulic command) C28G0105 (HydraulicCommand.BL): Command line gauge sensor (-1 .. 1 %, BL (left wheel brakes) hydraulic command) C28G0106 (HydraulicCommand.CL): Command line gauge sensor (-1 .. 1 %, CL (left cargo bay door) hydraulic command) C29G0107 (HydraulicCommand.GR): Command line gauge sensor (-1 .. 1 %, GR (right strut actuator) hydraulic command) C29G0108 (HydraulicCommand.LR): Command line gauge sensor (-1 .. 1 %, LR (right gear uplock) hydraulic command) C29G0109 (HydraulicCommand.BR): Command line gauge sensor (-1 .. 1 %, BR (right wheel brakes) hydraulic command) C29G0110 (HydraulicCommand.CR): Command line gauge sensor (-1 .. 1 %, CR (right cargo bay door) hydraulic command) C26G0111 (HydraulicCommand.E1): Command line gauge sensor (-1 .. 1 %, E1 Left elevon servo command) C27G0112 (HydraulicCommand.E2): Command line gauge sensor (-1 .. 1 %, E2 Right elevon servo command) C28G0113 (HydraulicCommand.RL): Command line gauge sensor (-1 .. 1 %, RL Left rudder servo command) C29G0114 (HydraulicCommand.RR): Command line gauge sensor (-1 .. 1 %, RR Right rudder servo command) V26G0121 (ControlSystem.LeftElevon_Angle ): Analog gauge sensor (-25 .. 25 degrees, Left elevon position) V27G0122 (ControlSystem.RightElevon_Angle): Analog gauge sensor (-25 .. 25 degrees, Right elevon position) V28G0123 (ControlSystem.LeftRudder_Angle ): Analog gauge sensor (-25 .. 25 degrees, Left rudder position) V29G0124 (ControlSystem.RightRudder_Angle): Analog gauge sensor (-25 .. 25 degrees, Right rudder position) V25G0125 (ControlSystem.NoseSteer_Angle): Analog gauge sensor (-90 .. 90 degrees, Nose steering angle) V24G0126 (ControlSystem.NoseGear_Uplock): Analog gauge sensor (0 .. 1 signal, Nose uplock status) V28G0127 (ControlSystem.LeftGear_Brake): Analog gauge sensor (-1 .. 1 %, Left gear brake position) V29G0128 (ControlSystem.RightGear_Brake): Analog gauge sensor (-1 .. 1 %, Right gear brake position) V28G0129 (ControlSystem.LeftGear_Uplock): Analog gauge sensor (0 .. 1 signal, Left gear uplock status) V29G0130 (ControlSystem.RightGear_Uplock): Analog gauge sensor (0 .. 1 signal, Right gear uplock status) V24G0131 (ControlSystem.NoseGear_Force): Analog gauge sensor (0 .. 210 tons, Nose gear force) V28G0132 (ControlSystem.LeftGear_Force): Analog gauge sensor (0 .. 210 tons, Left gear force) V29G0133 (ControlSystem.RightGear_Force): Analog gauge sensor (0 .. 210 tons, Right gear force) V24G0134 (ControlSystem.NoseGear_Compression): Analog gauge sensor (0 .. 10 , Nose gear compression) V28G0135 (ControlSystem.LeftGear_Compression): Analog gauge sensor (0 .. 10 , Left gear compression) V29G0136 (ControlSystem.RightGear_Compression): Analog gauge sensor (0 .. 10 , Right gear compression) V31D0150 (ComputerSystem.GDC1_Status): Analog data sensor (0 .. 1 signal, GDC 1 status) V31D0151 (ComputerSystem.GDC1_Status): Analog data sensor (0 .. 1 signal, GDC 2 status) V32D0152 (ComputerSystem.GDC1_Status): Analog data sensor (0 .. 1 signal, GDC 3 status) V32D0153 (ComputerSystem.GDC1_Status): Analog data sensor (0 .. 1 signal, GDC 4 status) V32D0154 (ComputerSystem.GDC1_Status): Analog data sensor (0 .. 1 signal, GDC 5 status) C70D0160 (ComputerSystem.Authority_GDC): Command line data sensor (0 .. 5 signal, Commanding GDC) D51G0201 (RHC.RHC1_Pitch): Digital gauge sensor (-1 .. 1 %, RHC left pitch position) D51G0202 (RHC.RHC1_Roll): Digital gauge sensor (-1 .. 1 %, RHC left roll position) D51G0203 (RHC.RHC1_Yaw): Digital gauge sensor (-1 .. 1 %, RHC left yaw position) D51G0204 (RHC.RHC1_Thrust): Digital gauge sensor (0 .. 1 %, RHC left thrust command) D51G0211 (RHC.RHC2_Pitch): Digital gauge sensor (-1 .. 1 %, RHC right pitch position) D51G0212 (RHC.RHC2_Roll): Digital gauge sensor (-1 .. 1 %, RHC right roll position) D51G0213 (RHC.RHC2_Yaw): Digital gauge sensor (-1 .. 1 %, RHC right yaw position) D51G0214 (RHC.RHC2_Thrust): Digital gauge sensor (0 .. 1 %, RHC right thrust command) D51G0220 (RHC.Left_Brake): Digital gauge sensor (0 .. 1 %, Left brake command) D51G0221 (RHC.Right_Brake): Digital gauge sensor (0 .. 1 %, Right brake command) V51G0222 (RHC.Steering_Mode): Analog gauge sensor (0 .. 2 signal, Nose steering mode (off/on/auto)) V51G0223 (RHC.Landing_Gear): Analog gauge sensor (0 .. 2 signal, Landing gear position (down/auto/up)) D37G0240 (AirProbe.UpperPressure1): Digital gauge sensor (0 .. 500 kPa, Air probe 1 upper sensor pressure) D37G0241 (AirProbe.MiddlePressure1): Digital gauge sensor (0 .. 500 kPa, Air probe 1 middle sensor pressure) D37G0242 (AirProbe.LowerPressure1): Digital gauge sensor (0 .. 500 kPa, Air probe 1 lower sensor pressure) D37G0243 (AirProbe.StaticPressure1): Digital gauge sensor (0 .. 500 kPa, Air probe 1 static sensor pressure) D38G0244 (AirProbe.UpperPressure2): Digital gauge sensor (0 .. 500 kPa, Air probe 2 upper sensor pressure) D38G0245 (AirProbe.MiddlePressure2): Digital gauge sensor (0 .. 500 kPa, Air probe 2 middle sensor pressure) D38G0246 (AirProbe.LowerPressure2): Digital gauge sensor (0 .. 500 kPa, Air probe 2 lower sensor pressure) D38G0247 (AirProbe.StaticPressure2): Digital gauge sensor (0 .. 500 kPa, Air probe 2 static sensor pressure) V37T0248 (AirProbe.TemperaturePressure1): Analog temperature sensor (-128 .. 256 C, Air probe 1 temperature sensor) V37T0249 (AirProbe.TemperaturePressure2): Analog temperature sensor (-128 .. 256 C, Air probe 2 temperature sensor) C31G0300 (GPS.CurrentGPS): Command line gauge sensor (0 .. 2 signal, Current GPS) D31G0301 (GPS.Latitude): Digital gauge sensor (-90 .. 90 degrees, GPS current latitude) D31G0302 (GPS.Longitude): Digital gauge sensor (-180 .. 180 degrees, GPS current longitude) D31G0303 (GPS.Elevation): Digital gauge sensor (-1 .. 65535 km, GPS current elevation) D31G0305 (GPS.Heading): Digital gauge sensor (0 .. 360 deg, GPS true heading) D31G0306 (GPS.Speed): Digital gauge sensor (0 .. 32767 km/h, GPS speed (ground speed)) D31G0308 (GPS.GPSTime): Digital gauge sensor (0 .. 23.99 time, GPS time) D31G0309 (GPS.UTCTime): Digital gauge sensor (0 .. 23.99 time, UTC time (based on GPS time)) D31G0311 (GPS.LatPrecision): Digital gauge sensor (0 .. 1 degrees, GPS precision (degrees latitude)) D31G0312 (GPS.LonPrecision): Digital gauge sensor (0 .. 1 degrees, GPS precision (degrees longitude)) C70D0313 (GPS.ResetAtlas1): Command line data sensor (0 .. 1 signal, Reset GPS 1 satellite atlas) C70D0314 (GPS.ResetAtlas2): Command line data sensor (0 .. 1 signal, Reset GPS 2 satellite atlas) D31G0320 (GPS.Satelites): Digital gauge sensor (0 .. 99 signal, GPS satellite(s) found) D32G0330 (InertialNav.Latitude1): Digital gauge sensor (-90 .. 90 degrees, Inertial navigation 1 current latitude) D32G0331 (InertialNav.Longitude1): Digital gauge sensor (-180 .. 180 degrees, Inertial navigation 1 current longitude) D32G0332 (InertialNav.Elevation1): Digital gauge sensor (-10 .. 65335 km, Inertial navigation 1 current elevation) D32G0333 (InertialNav.LastGPSTime1): Digital gauge sensor (0 .. 23.99 time, Inertial navigation 1 last synchronization GPS time) C70D0334 (InertialNav.ForceUpdate1): Command line data sensor (0 .. 1 signal, Inertial navigation 1 force GPS update) D32G0335 (InertialNav.Latitude2): Digital gauge sensor (-90 .. 90 degrees, Inertial navigation 2 current latitude) D32G0336 (InertialNav.Longitude2): Digital gauge sensor (-180 .. 180 degrees, Inertial navigation 2 current longitude) D32G0337 (InertialNav.Elevation2): Digital gauge sensor (-10 .. 65335 km, Inertial navigation 1 current elevation) D32G0338 (InertialNav.LastGPSTime2): Digital gauge sensor (0 .. 23.99 time, Inertial navigation 2 last synchronization GPS time) C70D0339 (InertialNav.ForceUpdate2): Command line data sensor (0 .. 1 signal, Inertial navigation 2 force GPS update) D59G0400 (RGA.Gyro1_Pitch): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 pitch) D59G0401 (RGA.Gyro1_Yaw): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 yaw) D59G0402 (RGA.Gyro1_Roll): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 roll) D59G0403 (RGA.Gyro1_PitchRate): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 pitch velocity) D59G0404 (RGA.Gyro1_YawRate): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 yaw velocity) D59G0405 (RGA.Gyro1_RollRate): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 roll velocity) D59G0406 (RGA.Gyro1_PitchAcc): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 pitch acceleration) D59G0407 (RGA.Gyro1_YawAcc): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 yaw acceleration) D59G0408 (RGA.Gyro1_RollAcc): Digital gauge sensor (0 .. 180 degrees, Gyroscope 1 roll acceleration) D59G0410 (RGA.Gyro2_Pitch): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 pitch) D59G0411 (RGA.Gyro2_Yaw): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 yaw) D59G0412 (RGA.Gyro2_Roll): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 roll) D59G0413 (RGA.Gyro2_PitchRate): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 pitch velocity) D59G0414 (RGA.Gyro2_YawRate): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 yaw velocity) D59G0415 (RGA.Gyro2_RollRate): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 roll velocity) D59G0416 (RGA.Gyro2_PitchAcc): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 pitch acceleration) D59G0417 (RGA.Gyro2_YawAcc): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 yaw acceleration) D59G0418 (RGA.Gyro2_RollAcc): Digital gauge sensor (0 .. 180 degrees, Gyroscope 2 roll acceleration) V59R0420 (RGA.Gyro1_RPM): Analog rpm sensor (0 .. 70000 rpm, Gyroscope 1 rpm) V59R0421 (RGA.Gyro2_RPM): Analog rpm sensor (0 .. 70000 rpm, Gyroscope 2 rpm) C70D0422 (RGA.RGA1_Motor): Command line data sensor (0 .. 1 signal, RGA1 motor active) C70D0423 (RGA.RGA2_Motor): Command line data sensor (0 .. 1 signal, RGA2 motor active) D33D0500 (Time): Digital data sensor (0 .. 8553600 seconds, MTU MET (seconds)) D33D0502 (UTCTime): Digital data sensor (0 .. 86400 seconds, UTC time (seconds)) D33D0503 (GMTTime): Digital data sensor (0 .. 86400 seconds, GMT/local time (seconds)) C33D0504 (EventTime): Command line data sensor (0 .. 8553600 seconds, MTU target event time (seconds)) V33D0505 (MasterEventTriggered): Analog data sensor (0 .. 1 signal, MTU target event reached) C70D0710 (SpacecraftOrientation.Pitch): Command line data sensor (-180 .. 180 degrees, Spacecraft pitch) C70D0711 (SpacecraftOrientation.Yaw): Command line data sensor (-180 .. 180 degrees, Spacecraft yaw) C70D0712 (SpacecraftOrientation.Roll): Command line data sensor (-180 .. 180 degrees, Spacecraft roll) C70D0713 (SpacecraftOrientation.Alpha): Command line data sensor (-180 .. 180 degrees, Spacecraft alpha) C70D0714 (SpacecraftOrientation.Beta): Command line data sensor (-180 .. 180 degrees, Spacecraft beta) C70D0715 (SpacecraftOrientation.P): Command line data sensor (-180 .. 180 degrees, Spacecraft pitch rate) C70D0716 (SpacecraftOrientation.Q): Command line data sensor (-180 .. 180 degrees, Spacecraft yaw rate) C70D0717 (SpacecraftOrientation.R): Command line data sensor (-180 .. 180 degrees, Spacecraft roll rate) C70D0718 (SpacecraftOrientation.Pd): Command line data sensor (-180 .. 180 degrees, Spacecraft pitch acceleration) C70D0719 (SpacecraftOrientation.Qd): Command line data sensor (-180 .. 180 degrees, Spacecraft yaw acceleration) C70D0720 (SpacecraftOrientation.Rd): Command line data sensor (-180 .. 180 degrees, Spacecraft roll acceleration) C70D0721 (Annunciator.BackupCW): Command line data sensor (0 .. 1 signal, Backup master caution/warning) C70D0722 (Annunciator.GDC): Command line data sensor (0 .. 1 signal, GDC master alarm (discrete input from GDCs)) C70D0723 (Annunciator.RGA_Accel): Command line data sensor (0 .. 1 signal, RGA/Accel failure (discrete input from GDCs)) C70D0724 (Annunciator.Hyd_Press_Qty): Command line data sensor (0 .. 1 signal, Hydraulic pressure/quantity failure (discrete input from GDCs)) C70D0725 (Annunciator.FCS): Command line data sensor (0 .. 1 signal, Flight control system failure (discrete input from GDCs)) C70D0726 (Annunciator.Sys_Alert): Command line data sensor (0 .. 1 signal, System alert (discrete input from GDCs)) C70D0730 (HydraulicCommand.Active): Command line data sensor (0 .. 1 signal, Enable hydraulic surface control command) C70D0731 (HydraulicCommand.Pitch): Command line data sensor (-1 .. 1 %, Pitch control surface command) C70D0732 (HydraulicCommand.Yaw): Command line data sensor (-1 .. 1 %, Yaw control surface command) C70D0733 (HydraulicCommand.Roll): Command line data sensor (-1 .. 1 %, Roll control surface command) C70D0734 (HydraulicCommand.Gear): Command line data sensor (-1 .. 1 %, Gear deployment state) V80T0800 (Temperature.RCS.FuelInjector_F2F): Analog temperature sensor (-128 .. 256 C, F2F RCS fuel injector temperature) V80T0801 (Temperature.RCS.FuelInjector_F3F): Analog temperature sensor (-128 .. 256 C, F3F RCS fuel injector temperature) V80T0802 (Temperature.RCS.FuelInjector_F1F): Analog temperature sensor (-128 .. 256 C, F1F RCS fuel injector temperature) V80T0803 (Temperature.RCS.FuelInjector_F1L): Analog temperature sensor (-128 .. 256 C, F1L RCS fuel injector temperature) V80T0804 (Temperature.RCS.FuelInjector_F3L): Analog temperature sensor (-128 .. 256 C, F3L RCS fuel injector temperature) V80T0805 (Temperature.RCS.FuelInjector_F2R): Analog temperature sensor (-128 .. 256 C, F2R RCS fuel injector temperature) V80T0806 (Temperature.RCS.FuelInjector_F4R): Analog temperature sensor (-128 .. 256 C, F4R RCS fuel injector temperature) V80T0807 (Temperature.RCS.FuelInjector_F2U): Analog temperature sensor (-128 .. 256 C, F2U RCS fuel injector temperature) V80T0808 (Temperature.RCS.FuelInjector_F3U): Analog temperature sensor (-128 .. 256 C, F3U RCS fuel injector temperature) V80T0809 (Temperature.RCS.FuelInjector_F1U): Analog temperature sensor (-128 .. 256 C, F1U RCS fuel injector temperature) V80T0810 (Temperature.RCS.FuelInjector_F5R): Analog temperature sensor (-128 .. 256 C, F5R RCS fuel injector temperature) V80T0811 (Temperature.RCS.FuelInjector_F2D): Analog temperature sensor (-128 .. 256 C, F2D RCS fuel injector temperature) V80T0812 (Temperature.RCS.FuelInjector_F4D): Analog temperature sensor (-128 .. 256 C, F4D RCS fuel injector temperature) V80T0813 (Temperature.RCS.FuelInjector_F3D): Analog temperature sensor (-128 .. 256 C, F3D RCS fuel injector temperature) V80T0814 (Temperature.RCS.FuelInjector_F1D): Analog temperature sensor (-128 .. 256 C, F1D RCS fuel injector temperature) V80T0815 (Temperature.RCS.FuelInjector_F5L): Analog temperature sensor (-128 .. 256 C, F5L RCS fuel injector temperature) V81T0816 (Temperature.RCS.FuelInjector_R3A): Analog temperature sensor (-128 .. 256 C, R3A RCS fuel injector temperature) V81T0817 (Temperature.RCS.FuelInjector_R1A): Analog temperature sensor (-128 .. 256 C, R1A RCS fuel injector temperature) V81T0818 (Temperature.RCS.FuelInjector_L1A): Analog temperature sensor (-128 .. 256 C, L1A RCS fuel injector temperature) V81T0819 (Temperature.RCS.FuelInjector_L3A): Analog temperature sensor (-128 .. 256 C, L3A RCS fuel injector temperature) V81T0820 (Temperature.RCS.FuelInjector_L1L): Analog temperature sensor (-128 .. 256 C, L1L RCS fuel injector temperature) V81T0821 (Temperature.RCS.FuelInjector_L3L): Analog temperature sensor (-128 .. 256 C, L3L RCS fuel injector temperature) V81T0822 (Temperature.RCS.FuelInjector_L2L): Analog temperature sensor (-128 .. 256 C, L2L RCS fuel injector temperature) V81T0823 (Temperature.RCS.FuelInjector_L4L): Analog temperature sensor (-128 .. 256 C, L4L RCS fuel injector temperature) V81T0824 (Temperature.RCS.FuelInjector_R1R): Analog temperature sensor (-128 .. 256 C, R1R RCS fuel injector temperature) V81T0825 (Temperature.RCS.FuelInjector_R3R): Analog temperature sensor (-128 .. 256 C, R3R RCS fuel injector temperature) V81T0826 (Temperature.RCS.FuelInjector_R2R): Analog temperature sensor (-128 .. 256 C, R2R RCS fuel injector temperature) V81T0827 (Temperature.RCS.FuelInjector_R4R): Analog temperature sensor (-128 .. 256 C, R4R RCS fuel injector temperature) V81T0828 (Temperature.RCS.FuelInjector_L4U): Analog temperature sensor (-128 .. 256 C, L4U RCS fuel injector temperature) V81T0829 (Temperature.RCS.FuelInjector_L2U): Analog temperature sensor (-128 .. 256 C, L2U RCS fuel injector temperature) V81T0830 (Temperature.RCS.FuelInjector_L1U): Analog temperature sensor (-128 .. 256 C, L1U RCS fuel injector temperature) V81T0831 (Temperature.RCS.FuelInjector_R4U): Analog temperature sensor (-128 .. 256 C, R4U RCS fuel injector temperature) V81T0832 (Temperature.RCS.FuelInjector_R1U): Analog temperature sensor (-128 .. 256 C, R1U RCS fuel injector temperature) V81T0833 (Temperature.RCS.FuelInjector_R2U): Analog temperature sensor (-128 .. 256 C, R2U RCS fuel injector temperature) V81T0834 (Temperature.RCS.FuelInjector_L4D): Analog temperature sensor (-128 .. 256 C, L4D RCS fuel injector temperature) V81T0835 (Temperature.RCS.FuelInjector_L2D): Analog temperature sensor (-128 .. 256 C, L2D RCS fuel injector temperature) V81T0836 (Temperature.RCS.FuelInjector_L3D): Analog temperature sensor (-128 .. 256 C, L3D RCS fuel injector temperature) V81T0837 (Temperature.RCS.FuelInjector_R4D): Analog temperature sensor (-128 .. 256 C, R4D RCS fuel injector temperature) V81T0838 (Temperature.RCS.FuelInjector_R2D): Analog temperature sensor (-128 .. 256 C, R2D RCS fuel injector temperature) V81T0839 (Temperature.RCS.FuelInjector_R3D): Analog temperature sensor (-128 .. 256 C, R3D RCS fuel injector temperature) V80T0840 (Temperature.RCS.OxidInjector_F2F): Analog temperature sensor (-128 .. 256 C, F2F RCS oxidizer injector temperature) V80T0841 (Temperature.RCS.OxidInjector_F3F): Analog temperature sensor (-128 .. 256 C, F3F RCS oxidizer injector temperature) V80T0842 (Temperature.RCS.OxidInjector_F1F): Analog temperature sensor (-128 .. 256 C, F1F RCS oxidizer injector temperature) V80T0843 (Temperature.RCS.OxidInjector_F1L): Analog temperature sensor (-128 .. 256 C, F1L RCS oxidizer injector temperature) V80T0844 (Temperature.RCS.OxidInjector_F3L): Analog temperature sensor (-128 .. 256 C, F3L RCS oxidizer injector temperature) V80T0845 (Temperature.RCS.OxidInjector_F2R): Analog temperature sensor (-128 .. 256 C, F2R RCS oxidizer injector temperature) V80T0846 (Temperature.RCS.OxidInjector_F4R): Analog temperature sensor (-128 .. 256 C, F4R RCS oxidizer injector temperature) V80T0847 (Temperature.RCS.OxidInjector_F2U): Analog temperature sensor (-128 .. 256 C, F2U RCS oxidizer injector temperature) V80T0848 (Temperature.RCS.OxidInjector_F3U): Analog temperature sensor (-128 .. 256 C, F3U RCS oxidizer injector temperature) V80T0849 (Temperature.RCS.OxidInjector_F1U): Analog temperature sensor (-128 .. 256 C, F1U RCS oxidizer injector temperature) V80T0850 (Temperature.RCS.OxidInjector_F5R): Analog temperature sensor (-128 .. 256 C, F5R RCS oxidizer injector temperature) V80T0851 (Temperature.RCS.OxidInjector_F2D): Analog temperature sensor (-128 .. 256 C, F2D RCS oxidizer injector temperature) V80T0852 (Temperature.RCS.OxidInjector_F4D): Analog temperature sensor (-128 .. 256 C, F4D RCS oxidizer injector temperature) V80T0853 (Temperature.RCS.OxidInjector_F3D): Analog temperature sensor (-128 .. 256 C, F3D RCS oxidizer injector temperature) V80T0854 (Temperature.RCS.OxidInjector_F1D): Analog temperature sensor (-128 .. 256 C, F1D RCS oxidizer injector temperature) V80T0855 (Temperature.RCS.OxidInjector_F5L): Analog temperature sensor (-128 .. 256 C, F5L RCS oxidizer injector temperature) V81T0856 (Temperature.RCS.OxidInjector_R3A): Analog temperature sensor (-128 .. 256 C, R3A RCS oxidizer injector temperature) V81T0857 (Temperature.RCS.OxidInjector_R1A): Analog temperature sensor (-128 .. 256 C, R1A RCS oxidizer injector temperature) V81T0858 (Temperature.RCS.OxidInjector_L1A): Analog temperature sensor (-128 .. 256 C, L1A RCS oxidizer injector temperature) V81T0859 (Temperature.RCS.OxidInjector_L3A): Analog temperature sensor (-128 .. 256 C, L3A RCS oxidizer injector temperature) V81T0860 (Temperature.RCS.OxidInjector_L1L): Analog temperature sensor (-128 .. 256 C, L1L RCS oxidizer injector temperature) V81T0861 (Temperature.RCS.OxidInjector_L3L): Analog temperature sensor (-128 .. 256 C, L3L RCS oxidizer injector temperature) V81T0862 (Temperature.RCS.OxidInjector_L2L): Analog temperature sensor (-128 .. 256 C, L2L RCS oxidizer injector temperature) V81T0863 (Temperature.RCS.OxidInjector_L4L): Analog temperature sensor (-128 .. 256 C, L4L RCS oxidizer injector temperature) V81T0864 (Temperature.RCS.OxidInjector_R1R): Analog temperature sensor (-128 .. 256 C, R1R RCS oxidizer injector temperature) V81T0865 (Temperature.RCS.OxidInjector_R3R): Analog temperature sensor (-128 .. 256 C, R3R RCS oxidizer injector temperature) V81T0866 (Temperature.RCS.OxidInjector_R2R): Analog temperature sensor (-128 .. 256 C, R2R RCS oxidizer injector temperature) V81T0867 (Temperature.RCS.OxidInjector_R4R): Analog temperature sensor (-128 .. 256 C, R4R RCS oxidizer injector temperature) V81T0868 (Temperature.RCS.OxidInjector_L4U): Analog temperature sensor (-128 .. 256 C, L4U RCS oxidizer injector temperature) V81T0869 (Temperature.RCS.OxidInjector_L2U): Analog temperature sensor (-128 .. 256 C, L2U RCS oxidizer injector temperature) V81T0870 (Temperature.RCS.OxidInjector_L1U): Analog temperature sensor (-128 .. 256 C, L1U RCS oxidizer injector temperature) V81T0871 (Temperature.RCS.OxidInjector_R4U): Analog temperature sensor (-128 .. 256 C, R4U RCS oxidizer injector temperature) V81T0872 (Temperature.RCS.OxidInjector_R1U): Analog temperature sensor (-128 .. 256 C, R1U RCS oxidizer injector temperature) V81T0873 (Temperature.RCS.OxidInjector_R2U): Analog temperature sensor (-128 .. 256 C, R2U RCS oxidizer injector temperature) V81T0874 (Temperature.RCS.OxidInjector_L4D): Analog temperature sensor (-128 .. 256 C, L4D RCS oxidizer injector temperature) V81T0875 (Temperature.RCS.OxidInjector_L2D): Analog temperature sensor (-128 .. 256 C, L2D RCS oxidizer injector temperature) V81T0876 (Temperature.RCS.OxidInjector_L3D): Analog temperature sensor (-128 .. 256 C, L3D RCS oxidizer injector temperature) V81T0877 (Temperature.RCS.OxidInjector_R4D): Analog temperature sensor (-128 .. 256 C, R4D RCS oxidizer injector temperature) V81T0878 (Temperature.RCS.OxidInjector_R2D): Analog temperature sensor (-128 .. 256 C, R2D RCS oxidizer injector temperature) V81T0879 (Temperature.RCS.OxidInjector_R3D): Analog temperature sensor (-128 .. 256 C, R3D RCS oxidizer injector temperature) C80D0900 (RCSCommand.G.1): Command line data sensor (0 .. 1 signal, G1 RCS jet group state) C80D0901 (RCSCommand.G.2): Command line data sensor (0 .. 1 signal, G2 RCS jet group state) C80D0902 (RCSCommand.G.3): Command line data sensor (0 .. 1 signal, G3 RCS jet group state) C80D0903 (RCSCommand.G.4): Command line data sensor (0 .. 1 signal, G4 RCS jet group state) C80D0904 (RCSCommand.G.5): Command line data sensor (0 .. 1 signal, G5 RCS jet group state) C80D0905 (RCSCommand.G.6): Command line data sensor (0 .. 1 signal, G6 RCS jet group state) C80D0906 (RCSCommand.G.7): Command line data sensor (0 .. 1 signal, G7 RCS jet group state) C80D0907 (RCSCommand.G.8): Command line data sensor (0 .. 1 signal, G8 RCS jet group state) C80D0908 (RCSCommand.G.9): Command line data sensor (0 .. 1 signal, G9 RCS jet group state) C80D0909 (RCSCommand.G.10): Command line data sensor (0 .. 1 signal, G10 RCS jet group state) C80D0910 (RCSCommand.G.11): Command line data sensor (0 .. 1 signal, G11 RCS jet group state) C80D0911 (RCSCommand.G.12): Command line data sensor (0 .. 1 signal, G12 RCS jet group state) C80D0912 (RCSCommand.G.13): Command line data sensor (0 .. 1 signal, G13 RCS jet group state) C80D0913 (RCSCommand.G.14): Command line data sensor (0 .. 1 signal, G14 RCS jet group state)
0 Responses to “XS Venture internal simulation progress”