1. Introduction
The Artificial Reasoning for Exploration and Space (ARES) program is a framework for developing and operating intelligent networks of autonomous platforms such as spacecraft, robots, and fixed observation nodes. ARES includes inter-platform messaging and multi-process operations. ARES also include support for simple machine learning, image processing, rule-based processing, and other computing methods in understanding the environment of such intelligent networks.
ARES software is designed to run on a range of processors from large desktop or servers to small processors. In particular, ARES is designed to run on platforms and in environments with:
-
Limited, low-bandwidth, intermittent communications
-
Limited platform resources such as power
-
Limited supervision, i.e. autonomy
The ARES framework can be thought of at three levels:
-
A framework for developing autonomous systems/networks
-
A collection of modules for developing platform control software (flight software) with examples
-
A sensor/machine learning platform
ARES includes four key subsystems:
-
ARES Core Subsystem (ACS) - provides the basic structure and communications services.
-
ARES Mission Subsystem (AMS) - a near-complete example of a CubeSat platform including flight software. Can serve as a starting example for developing other autonomous platforms.
-
ARES Management and Recovery Subsystem (AMR) - a set of services for managing multi-node software systems including processor/os/software status, error detection, recovery and updates.
-
Analytical Processing Subsystem (APS)- provides a framework for "reasoning" as stand-alone autonomous nodes or as a payloads in other autonomous platforms.
Key Design Drivers:
-
Run on Raspberry Pi or desktop/server processors running Debian-based Linux such as Ubuntu, Mint, Raspberry Pi OS (Bullseye), Windows WSL2/Ubuntu (See ARES Platform Requirements for details as to platforms and operating systems)
-
Remote node software should be updatable in operations via the ACS messaging system
-
Software should be easy to development by non-CS students
-
Based on an app-based architecture running with multiple processes communicating via a message passing library and protocol
-
Message passing operations extend across both remote/flight processes and ground processes.
-
Software written in Python 3.11+ with selected Python and C libraries
-
Networking supports internet and non-internet links such as radio links
1.1. Missions
Currently, the ARES framework is used for four missions:
-
NASA ELaNA/Saint Louis University/Bennett Research Technologies Argus-02 CubeSat Mission
-
Air Force Research Labs (AFRL)/Saint Louis University/Bennett Research Technologies University NanoSat Program 10 (UNP-10) DORRE Mission
-
NASA ELaNA/Saint Louis University/Bennett Research Technologies Demonstration of Artificial Reasoning, Learning, and Analysis (DARLA) CubeSats
-
Air Force Research Labs (AFRL)/Saint Louis University/Bennett Research Technologies University NanoSat Program 11 (UNP-11) DORRE Mission
1.2. Getting Started
ARES is organized into a single hierarchical directory structure that includes source code, documentation, tools, etc. It is available under a private gitlab site:
Note
|
As the site is private, you will need to get access from the ARES team. ARES is developed by the ARES team. The team may be contacted at: bennett@bennettresearchtech.com. |
To get started:
-
Review Overview Section
-
Review Concept Section
-
Review "Using ARES" Section
-
Review Configuration Section
-
Review Development Section
-
Follow the Installation Guide
1.3. References
Reference |
---|
Argus-02 Software Design Document |
DARLA-1 Software Design Document |
DORRE Software Design Document |
ARES Experimentation and Observation Network (AEON) Software Design Document |
SSRL Coordinates and Transforms |
1.4. Acronyms and Abbreviations
Term | Meaning |
---|---|
AI |
Artificial Intelligence |
ARES |
Artificial Reasoning for Exploration and Space |
APS |
Analytical Processing Subsystem (AKA ARES Payload Subsystem) |
ACS |
ARES Core Subsystem |
AMS |
ARES Mission Subsystem |
AMR |
ARES Management and Recovery Subsystem |
AEON |
ARES Experimentation and Observation Network |
BRT |
Bennett Research Technologies, LLS |
DARLA |
Demonstration of Artificial Reasoning, Learning, and Analysis |
DORRE |
Distributed Observation, Reasoning and Reaction Experiment |
EPS |
Electrical Power System |
I/R |
Infrared |
NN |
Neural Network |
S/W |
Software |
SLU |
Saint Louis University |
SSRL |
Space Systems Research Laboratory |
2. Overview
ARES is designed to support a network of remote platforms / base-stations acting in concert with each platform able to perform a wide range of "reasoning".
The general concept consists of a set of autonomous nodes (such as remote observation platforms, spacecraft, and ground nodes) in an ad-hoc network. The entire network acts as a whole to meet mission objectives sharing actions, decisions, and resources.
Each node is autonomous:
-
Gathering information from its own internal and external sensors, sensors from other remote nodes, and information from outside sources
-
Reasoning about its current situation and resources
-
Deciding on how to use its resources in coordination with other spacecraft in the constellation
-
Tasking its resources and gathering results
-
Communicating results with other nodes and network operators
Key ideas:
-
An ARES network consists of multiple platforms running one or more nodes.
-
Communications within a node are handled by either a data pool and/or messages.
-
Communications between nodes is handle by messages across "links" such as radio links, satellite networks (such as Iridium), or via the ARES Message Hub (a set of AWS SQS services).
-
Communications is asynchronous, i.e. apps do not have to be at any specific point to communicate (they do not even have to be running at the time of communications)
-
Data Pools consists of posted flags and data values.
-
Messages are addressed from an app to an app (on the node or on other nodes) and consist of a small (~200 bytes) message in byte form.
-
All nodes have an Main Control Program (MCP) App and an ACS Manager App
-
Node MCP Apps launch and manage all other node apps.
-
ACS Manager Apps handle message communications.
-
Apps do not interact directly (only through data pool and messages)
-
All apps operating in a "step" loop fashion
-
All apps can handle start, halt, restart and retain state
-
All apps run automatically, they do not need human interaction to operate
-
Human interaction is done by interacting with app data and sending messages to apps
ARES consists of several key ideas and components
Term | Definition |
---|---|
Mission |
An overall program that includes a network of remote vehicles and ground stations for a specific purpose. For example, a network of spacecraft/ground sensors carrying a set of remote observation payloads. Mission defines the overall program. |
Network |
A specific set of nodes a specific purpose. For example, an operational network or test network. Missions can have multiple independent networks for different purposes. Specifics include:
|
Platform |
A platform is a specific hardware machine with a specific operating system and a specific set of sensors. Platforms can range from spacecraft to desktop computers. |
App |
A single running executable on a specific platform. Apps:
|
A logical collection of apps:
|
|
Message |
Messages are byte strings that can be shared between nodes and between apps:
|
Data Pool |
Apps can also share information between apps on the same node via the data pool. The data pool consists of:
|
Configuration Files |
Each mission, node, or app can have a set of TOML-based configuration files including:
|
Message Hub |
ARES supports an AWS SQS messaging system for message exchange between nodes on the internet. |
Link |
A link is a pipeline for exchanging messages between nodes. The Message Hub is an example but others are supported by ARES including:
|
User Interfaces |
In general, ARES is an automated system operating without human interaction. However, ARES supports a set of human interfaces for:
ARES supports several user interfaces:
|
ACS |
ARES Core Subsystem ACS provides a framework for distributed multi-process applications running across local and remote platforms. |
AMS |
ARES Mission Subsystem - A framework for building mission specific remote platform or flight software along with ground or base station software. |
AMR |
ARES Management and Recovery Subsystem - A set of services for managing multi-node software systems including processor/os/software status, error detection, recovery and updates. |
APS |
Analytical Processing Subsystem (or ARES Payload Software) - a specialized ARES app that runs a set of reasoners for for a node. |
APS Reasoner |
An APS "reasoner" is a chain of inferences executed through a "model" (reasoners can also be thought of as a simple experiment processing chain). A typical reasoner might be a deep learning neural network model that classifies images or gathers data and generates a map. Reasoners can range from complex neural network reasoning to simple data processing or data gathering reasoners. |
APS Experiment |
An APS "experiment" is logical collections of software reasoners. These reasoners may be part of a single APS app or may be spread across several APS apps on the same node or across multiple nodes. For example, one could have a distributed experiment to map light sources across multiple cubesat platforms. In general, these APS-based experiments make-up a node’s "payload" (although there is no reason that an APS-based app cannot be part of the nodes "flight software" such as some form of health monitoring system). |
Mission Time |
Mission is defined as the total time the platform (such as a spacecraft) operates |
Session |
Sessions are defined as the time from app startup to app shutdown |
Step |
If the app running in a loop (most apps do), then a “step” is a single run through the loop. |
3. Concepts
3.1. Nodes
A node is a logical collection of apps running togther and working together to accomplish as specific operation on a platform (ARES Architecture Components). For example, a node might operate a remote observation station collecting and reasoning about field data, communicating thos observations and/or the reasoning results, and responding to remote directions from other nodes.
Nodes operate on platforms. In most cases a platform operates a single ARES node but platforms may operate multiple ARES nodes.
A node is a logical collection of apps:
-
Node Address - a mission-unique node address.
-
Operates on a specific platform (hardware, OS, and sensors)
-
Includes an Main Control Program (MCP) App for handling configurations and starting/directing other apps on the node.
-
Includes an ACS Manager App for handling inter-node message operations (not required if the node is independent)
-
May include "link" apps for communicating with other nodes across special links such as radios.
-
Includes a data pool, message queues, and node-specific configuration files.
3.2. App-Based Architecture
ARES uses a multi-process (apps) with messaging bus architecture. Each app is an independent process running under OS control. In addition, the remote node software and ground station software share a very similar architecture. Each revolves around a node with messaging bus with a set of independent processes (apps). The apps on the same node communicate with each other via the messaging bus or data pool. Communications between nodes uses the same messaging protocols. Messages can be addressed to other apps on the same node or to apps on the other nodes. Thus, apps on a remote node can communicate with corresponding apps on a control node seamlessly.
All apps are designed to meet several key criteria:
-
Apps must be able to handle abrupt shutdown at any time.
-
Apps must respond to a shutdown command.
-
Apps have a unique address.
Control of apps on a given node is handled by a node Main Control Program (MCP) app. An MCP handles all startup/shutdown of apps via schedules or states. ACS provides a base app from which all apps are derived from (via Python Inheritance). All apps run a standard structure which allows the MCP to control the app operations including the app processing rates. This is especially important on nodes with limited resources such as processor power.
In general, Apps operates in a series of loops.
-
Mission Loop - From start of the mission until its completion
-
Session Loop - Apps are design to start/stop depending on the node needs. The app software does not expect to operate continuously through the mission due to power and other resource requirements. A session is the time from the app software starts until it stops. For example, an app may only operate a portion of a spacecraft’s orbit. Or an app may only run for a given period on a cloud server when the server is available.
-
Step Loop - The step loop is the inner loop from reading message and sensors, processing them, and acting on them. The simplest example would involve the steps involves in executing a single firing of a neural network.
-
-
Key aspects of apps include:
-
All nodes are "automated", i.e. they are designed to run without direct user interactions.
-
Some apps can be set to "interactive" which allows limited user controls during development and testing.
-
ARES includes a User Interface (UI) scripts (ARESUI.py) that:
-
Support launching nodes/apps
-
"Attach" to local nodes/apps to:
-
Allow user access and visualization of node/app data (such as a log file)
-
Allow commands to be sent to nodes/apps within the network. For example, send commands to a spacecraft node.
-
-
-
-
All nodes (and apps) have a unique address.
-
Nodes are launched via a user interface or command line script.
-
Nodes can log data locally or send log data to the "network log". The network log is a common log file used by all nodes running on a single platform. The typical approach is that all remote apps send log data to a single app on a "ground station" which stored it in the network log. But missions can configure this as they see fit.
Warning
|
There is no protection for running multiple nodes/apps with the same addresses! Multiple apps with the same address will result in unpredictable results! |
3.3. Communications and Network Architecture
ARES goes beyond just the architecture on a single machine to encompass a distributed network architecture. Collection of apps working together on a specific platform form a node. Platforms may have multiple nodes (care must be taken when the nodes access system resources such as hardware sensors or links). Collection of nodes form a network. The simplest is a two-node network with a remote node running on a remote platform (example: CubeSat) and a base or ground station node running on a ground platform. However, ARES support more complex networks with multiple nodes and multiple platform links. Mission use link apps to handle message passing between nodes using methods like radio links or serial links. Nodes that are linked to the internet can use their own internet link apps or can use the ACS message hub (AWS SQS Service) for passing messages to other nodes on the internet.
Message communication between apps on the same node and between apps on different nodes is the same. Messages are address to a specific app in a specific node. Most of the app-to-app communication infrastructure is part of the ARES Core Subsystem (ACS) software package. The only part of the communications infrastructure not directly part of ACS is the low-level node link apps as they are platform dependent. An example is a radio link between a UAV or spacecraft and a ground station. ACS provides a high-level communications interface which includes:
-
Messages - Message passing from app to app regardless of node or hardware passing. Messages originate from an app and are address to another app. The app may be on the same node or it may be on a different node (example: sending messages from a spacecraft app to a ground station app).
-
Message Acknowledgement/Resending - ACS handles message acknowledgement and resending. Link and other apps (including radio link apps) do not need to worry about acknowledgement/retransmission of messages.
-
File Transfer - ACS handles file transfers including transfer errors and retransmission. All file transfers are check-summed to insure correct transfers.
-
Shared Data Pool - ACS handles shared data values and flags between apps on the same node. The shared data pool allows apps on the same node to access a common set of posted data values and flags. Each value has a unique name and stored a byte value or a string value (which can be a float or int but must be converted to/from string to store in the shared data pool). Normally, a single app posts the data (source) and any app can then access the data. Shared data pool data is protected by check-sums and backup copies, reducing the probability of errors. In addition, the shared data pool support "flags". A flag is a simple Boolean signal - if the flag exists, it is true, if it does not exist, it is false.
-
Message/Shared Data Pool Integrity - ACS includes several features to reduce errors in messages and shared data values.
Important
|
Messages are persistent, i.e. they survive the app sessions (and processor reboots). To clear messages in the queue session restart, one launches the node MCP app with a reset flag or have the MCP (or other app) clear the queues and/or shared data values directly. |
Important
|
The shared data pool can either operate via disk or via a python management pool. When operating via disk, vaues are persistent and include checksums and backups. When operating vis a python management pool, shared data values/flags are not persistent, i.e. they do not survive the app sessions (and processor reboots). Nor do they include checksums and backups. |
Warning
|
There are no code mechanisms to prevent multiple apps from posting the same named shared data pool value. Like Python private variables and methods, it is just convention but should be observed to prevent data races. |
Warning
|
Rates - The rates at which apps generate messages such as log and telemetry messages must be lower than the rates that the various message hub and node link pipelines can handle. It is easy to have apps that generate messages (particularly log messages) faster than the communications pipelines can handle! |
Warning
|
Communication Bottlenecks - Related to rates, make sure you understand all the communication bottlenecks in your network. A simple on is how many messages do you allow a link like a radio link to handle each step. |
See Messages for additional details on messages including priorities, reception order, persistence, etc.
3.4. Logging and Telemetry
ARES supports a local and network-wide logging system. Log messages can be sent to the console, a local node log, or a network-wide log. Logging can also distinguish between normal log messages and debug log messages. (See ACS Logging for more information)
Warning
|
Node Log/Telemetry/Memory Files - ARES has no mechanism for limiting the size of node log, telemetry, memory, and other app data files. The only thing ARES handles is limiting the size of the ACS queues. This means that it is up to the mission to handle any such limiting mechanism. A key example is using a node log file on a remote platform node. It generally assumes that no node log file will be used on a remote platform, rather log messages will be sent to a ground station node and its log file. |
Warning
|
Log and Telemetry files store records in the order received, not the order generated. As such, log and telemetry records may be out of time order! |
ARES also provides example telemetry code for handling remote node telemetry including creating, storing, sending, processing, and visualizing telemetry data. The example telemetry approach uses a remote node health app to gather and do on-board processing of the data, a common telemetry class for formatting and storing telemetry snapshots, a ground station telemetry app for receiving and storing the data, and a set of methods for analyzing and visualizing the data.
Telemetry data is stored in records (the time stamp may be extracted from the sending ACS message or may be stored in the telemetry record directly). Each record has a timestamp and a set of values. The AMSTelemetry.py example shows a common way to define, store, and use telemetry records.
3.5. Time, Coordinates, Frames, and Orientations
ARES uses several time and coordinate frameworks (most time information can be found in ACSTime).
Time | Description |
---|---|
Unix Time Unix Epoch Time POSIX Time |
Number of seconds that have elapsed since 00:00:00 Jan 1 1970 UTC minus leap seconds. https://en.wikipedia.org/wiki/Unix_time Unless otherwise noted, all ARES times are in Unix Time in seconds. |
J2000 |
Number of seconds from 12:00:00 Jan 1 2000 |
Important
|
ARES uses the coordinate frames defined by Saint Louis University’s Space Systems Research Laboratory (SSRL) as describes in SSRL Coordinates and Transforms. This is supplemented by the use of NASA’s NAIF SPICE system (https://naif.jpl.nasa.gov/naif/). |
ARES cartesian coordinate systems are right handed coordinate systems with the exception of Unity (AVS4D):
Frame/Coordinate System | Description | ||
---|---|---|---|
ARES Coordinate/Vector |
General right-handed cartesian coordinate system (used in Platform, ECI J2000, and ECEF frameworks below)
|
||
Body Frame |
Local platform right-handed cartesian coordinate framework
Body frame coordinates define points/vectors with the origin at some define location on the platform. For example, it can be used to locate a sensor on the surface of the platform |
||
ECI Frame |
Earth Centered Inertial J2000 right-handed cartesian coordinate framework. Fixed to respect to the stars. Earth’s mean equator and equinox at 12:00:00 Jan 1 2000
|
||
ECEF Cartesian Frame |
Earth Centered Earth Fixed (ECEF) right-handed cartesian coordinate framework. Fixed to the surface of the earth. (See https://en.wikipedia.org/wiki/Earth-centered,_Earth-fixed_coordinate_system) Measured from the earth center. Rotates to respect to the stars.
|
||
ECEF Latitudinal Frame |
Earth Centered Earth Fixed (ECEF) right-handed planetocentric latitudinal coordinate framework.
|
||
Unity Coordinate/Vector |
The Unity3D toolkit is used as part of the ARES Visualization System. It uses a left-handed cartesian coordinate system:
|
Orientations are rotations that take a point or vector from one frame to another. Orientations are normally described by quaternions but can also be described by euler angles and rotation matrixes.
ARES quaternion definition: ARES uses the SSRL Quaternion Definition as described in SSRL Coordinates and Transforms.
Note
|
Unless otherwise stated, all orientations in ARES are ECI to body frame rotation quaternions |
Note
|
Unless otherwise stated, all quaternions in ARES meet this SSRL defintion. The only exceptions are when SPICE quaternions are used for ECI <→ ECEF conversions. |
This is supplemented by the use of NASA’s NAIF SPICE system (https://naif.jpl.nasa.gov/naif/):
NASA NAIF SPICE definition of quaternions. See NASA NAIF documentation for detailed discussions:
Warning
|
DO NOT MIX ARES QUATERNIONS WITH SCIPY ROTATIONS AS THE QUATERNION DEFINITIONS DO NOT MATCH |
Orientation | From Frame | To Frame | Description |
---|---|---|---|
Sensor Body Orientation |
Body Frame |
Body Frame |
Describes the rotation of a vector (1.0, 0.0, 0.0) to the sensor’s actual orientation on the platform. No Frame Change |
ECI Orientation |
Body Frame |
ECI Frame |
Decribes the orientation of a platform in ECI coordinates. In other words, how to rotate a vector in Body frame coordinates to ECI frame coordinates. |
Conversion of a point or vector from body frame to ECI involve two steps:
-
Rotate the point from body frame to ECI coordinates
-
Translate the rotated point to the platform location in ECI coordinates
The same process is involved in converting to ECEF Cartesian or ECEF Latitudinal (although sine the relationship of these frames is coordinates, it is simple to convert a ECEF cartesian to/from an ECEF latitudinal.
Converting a point or vector in the ECI frame, it is just the reverse:
-
Translate the point to body frame coordinates
-
Rotate the translated point in from ECI frame to body frame
ARES software support - ARES includes several modules for handing coorinates, transformations, etc:
-
ACSSpice.py - Provides an interface to NASA NAIF’s Spice Toolkit
-
ACSLORI.py - Provides classes and methods for handling the pre-defined frames and orientations discussed above.
3.6. ACS Clocks
ARS supports the following clocks:
System clock | Time (Unix Time in Seconds) from the underlying system clock (python time.time). |
---|---|
Step Time |
Time (seconds) at the start of a step. |
Session clock (ST) |
Time (seconds) from the start of an app session. |
Lifetime clock (LT) |
Cumulative session time (seconds) since start of initial app session. |
Session step count (SC) |
Number of app steps since start of session. |
Lifetime step count (LC) |
Number of app steps since start of operations. |
3.7. Floating-Point Operations
It is important for ARES users to understand computer floating-point operations (see https://en.wikipedia.org/wiki/Floating-point_arithmetic and https://docs.python.org/3/tutorial/floatingpoint.html). Computer floating-point math operations can produce unexpected values, values with significant "precision". For example, try:
python >>>import math >>>x = 45.32 >>>y = math.sin(math.radians(x)) >>>z = math.degrees(math.asin(y)) >>>x 45.32 >>>y 0.7110449616337289 >>>z 45.31999999999999
As one can see, the z result does not quite match the x starting value. This is a simple example but multiple computations (particularly with math functions such as trig function) can result in numbers with significant invalid precision. This problem can be particularly important when compressing/decompressing or encoding/decoding numbers for storage or remote transmission via limited bandwidth channels (such as radio links). The resulting value does not quite match the original value. How important the differences are is up to the application.
There are several ways to deal with this issue. One is to limit the precision (number of decimal points). For example, if you are dealing with kilometer values and know your instruments are only precise within +/- 0.01 Km, you might limit the number of decimal points to something close to your instrument precisions (depending on the math operations you are doing). Another approach is the use of scaled integers, i.e. integer math operations.
3.8. Tasks, Schedules, and Planning
ARES provides the ability to run schedule tasks from the user interface or by any app/module/sensor in the system. Tasks may be run as part of a pre-planned schedule or when certain conditions are meet such time time, location, or the ability of a sensor to "see' a target.
See Task Scheduling for more details.
3.9. Python Run-Time
Python is a "interpreted", dynamic typing language. (Python actually does compile to an intermediate language. The compiled version can be found in the pycache directory. Compilation occurs at run-time with no separate user directed compile step. However, the dynamic typing aspect of python prevents some of the optimization that occurs when compiling other languages.) As a dynamically typed is has a couple of features not typically found in compiled, strongly typed languages.
A key feature used by ARES is the run-time identification and use of python modules. ARES uses inputs from the ARESAddresses.cvs file and the ARESConfig.toml file to select which modules to run at runtime.
ARES MCP processes typically identity which other processes to run via their app-addresses. With the app-address, the MCP identifies the module to launch as a child process. For example, the AMScAppSCZC example CubeSat MCP app identifies that it needs to run a hardware interface app. This app will have the address with the same node id as the CubeSat MCP and an app type of 'ZM'. From this app address, it identifies the module AMScAPPHI for the child hardware interface app and launches it.
APS-based apps also select an APSSensors subclass module and the APSReasoner subclasses module to run via the APP_MODULE_NAME field in sensor and reasoner tables in ARESConfig (See APS Sensors and APS Reasoners). Thus, one might scan the code for use of APSxReasonerEX and not find it referenced but the code may actually use APSxReasonerEX because it used a reasoner table defined in ARESConfig and referenced in the APSReasonerSuite field of ACSAddresses. This approach allows ARES to quickly select and manage which sensors and reasoners it uses to perform experiments on remote platforms but can take a little time to get use to,
3.10. Cybersecurity
ARES is generally designed as an open network of nodes. However, it does include several features to improve cybersecurity.
3.10.1. Computer/Node Security
ARES operates as a decentralized network of nodes on computers. Normally there is a single node on any given machine but a machine can support multiple nodes as needed.
Key security-related ARES concepts:
-
ARES is written in python and, as such, means that all code is open and not compiled.
-
All data from all nodes on a machine is stored in a single directory structure (typically $ARES/data, but it can be located outside the $ARES directory structure through the use of the $ARESData environment data)
-
ARES includes a ARES key file (~/.ares/data.bin) that stores all needed keys (managed by ARESMgrUI.py) (except AWS keys which are stored in ~/.aws). Keys are stored in an encoded form but form should not be seen as secure. These key files support all nodes on the machine.
ARES relies on physical computer and operating system security. Computers with nodes that include command capability (see Network/Message Security) or nodes with sensitive data should be operated in a secure facility. What "secure facility" means depends on the sensitivity of the node data and operations.
Access to ARES should be managed by the operating system, specifically the account permissions system. To launch ARES nodes, only read permission on the $ARES directory is needed, but the launching account will need read/write permission on the data directory.
Secure facility logs (if available) and OS account usage logs can be used to track ARES usage.
Normally, a node runs on a single computer. This node is launched from a single user account that has been configured as per the installation instructions. This includes having AWS keys in ~/.aws and appropriate AES keys in the ARES key file that supports the node operations (for example the DATA key for data nodes and the DATA/COMMAND/PAYLOAD/SENSITIVE keys for a full remote node such as a CubeSat). The same account is used to attach to the node, accessing data files, and sending commands. However, it can useful to use separate individual accounts for using this node. Individual user accounts access a common $ARES root but have their own copies of AWS keys and, more importantly, specific AES keys their their command role in their own ARES key file (for example only CubeSat controllers would have the COMMAND key on a ground station node). Under these conditions, a single ARES owner account is created, set with the AES keys needed to launch the node, and used to launch the node. A group is created to provide access to the $ARES directory (g=rwx,o-rwx) Then individual user accounts with different roles are added to the group. Use of separate accounts can be useful in monitoring (via OS log files) who are running the user-interface, launching nodes, and/or accessing the data.
Note
|
One can go further and limit different users with different levels of read and write permissions to different directories in $ARES. One can also add OS-level controls to track changes to files. How far one goes with such restrictions depends on the mission. |
Warning
|
Different users should have the same environment variables! One way to ensure this is to set environment variables at a system or group level, not at the user level. |
Note
|
For desktop machines, it can be useful to have just one copy of Anaconda, environments, and packages. This can be done by setting up Anaconda at the system level or setting up Anaconda on the primary account, make sure everyone has rx access, and then just initializing in the local user’s .bashrc file. |
Note
|
Given ARES’s decentralized open node approach, one of the security concerns is "node spoofing", i.e. an unauthorized node using a legitimate address communicating with other nodes in an ARES network (either accidentally or deliberately). Use of AES keys describe below will help. Proper management of keys, knowing who has them and on what machine, will mitigate much of the impact of node spoofing. |
3.10.2. Network/Message Security
As messaging is a key component of ARES, providing the method for passing data between nodes, ARES includes a set of encryption capabilities to:
-
Encrypt messages using AES encryption
-
Limit which users/nodes can communicate what data by using different encryption keys
-
ARES uses AES256 Galois/Counter Mode (GCM) symmetric encryption (This means the both nodes involved in an encrypted message exchange must have the same AES keys)
By creating different encryption keys and limiting which nodes have which keys, one can control which nodes can do what. A prime example of this is using one of the keys to control which nodes can command a remote platform (for example which ground nodes can command a satellite). Image Network/Message Security Example shows an example of using encryption keys to control node capabilities.
To handle different message encryption and ensure valid messages are used, ARES supports a "Message Security Class". Each message created is tagged with a security class.
Message security classes:
-
'Beacon' - Used for any remote platform periodic radio transmission.
-
'Data' - Default Security Class - Used most data shared between nodes including telemetry and log messages.
-
'Command' - Remote Platform Security Class - Used for any command sent from a user interface to a remote platform.
-
'Payload' - Payload (sensitive) Security Class - Used for any commands sent to the payload (APS)
-
'Sensitive' - Sensitive Data Security Class - Typically used for data that require limited distribution (example, NOAA licensed images).
-
'Link' - Used by link apps (example Radio) for any handshake activities.
-
'MissionA' - Mission specific security class
-
'MissionB' - Mission specific security class
Each security class has a corresponding AES encryption key stored in ARES key file (~/.ares/data.bin) and managed by the ARESMgrUI.py script. Overall encryption can be turned on/off via the MESSAGE_ENCRYPTION keywork in ARESconfig.toml. If MESSAGE_ENCRYPTION is set to True:
-
Outgoing messages will be encrypted base on their Message security class and the AES key in the user’s ARES key file. (If the user’s ARES key file does not have an AES key for that message security class, then the message will be unencrypted.)
-
Incoming messages will be decrypted based on their Message security class. Messages that are not encrypted but the local user’s ARES key file has a key for that message’s security class will be rejected. Messages that cannot be decrypted by the AES key in the local user’s ARES key file also will be rejected.
Warning
|
MESSAGE_ENCRYPTION must be the same on all nodes in a network! Failure to do so will result in large-scale message rejection! |
Warning
|
AES keys must be the same on any communicating nodes! |
Note
|
Message header and routing information is not encrypted. Just contents! |
Warning
|
Do to the current implementation of message routing and forwarding, nodes that route message or forward messages across links need the keys for all messages that come through the node. |
Message encryption/decryption:
-
Message encryption occurs only when a message is sent from a node (Intra-node messages, i.e. messages between apps on the same node, are not encrypted).
-
Message encryption/decryption occurs when a message is sent from or received at a node:
-
Messages via the ACS Message Hub (ACSMessageHub._send_message and ACSMessageHub.MessagePipe).
-
Messages via the message convesion to/from byte or bit streams (ACSMessageUtils)
-
For specialized links that do not use byte or bit streams via ACSMessageUtils, encryption/decryption is done by the link app (See AMScAppZI/ZG/ZW for an example)
-
The basic process for sending a message:
-
If MESSAGE_ENCRYPTION is True
-
If the local ARES key file has an AES key for the message’s security class
-
If the message exceeds the length supported by encryption
-
Raise exception
-
-
else
-
Encrypt the message using the local ARES key file’s AES key for the message’s security class
-
Send encrypted message
-
-
-
else
-
Send unencrypted message
-
-
-
else
-
Send unencrypted message
-
The basic process for receiving a message:
-
If MESSAGE_ENCRYPTION is True
-
If the local ARES key file has an AES key for the message’s security class
-
Attempt to decrypt the message with the local ARES key file’s AES key for the message’s security class
-
If decryption worked
-
Put the decrypted message in the receive queue
-
-
else
-
Reject message
-
-
-
else if the message is encrypted
-
Reject message
-
-
else
-
Put the message in the receive queue
-
-
-
else
-
Put the message in the receive queue
-
Most checks for message security class is normally done in the handle_incoming_app_messages method of apps. It’s at this point, incoming messages that do not meet the correct message security class are rejected. For example, ACSApp rejects command messages such as reboot if the message is not a COMMAND security class. Additional checks can be done in various message handlers. Message handlers are the methods that actually do something with the message.
Warning
|
The ARES key file (and the AWS keys) are machine account specific (i.e. they are tied to a specific account on a specific machine). They are not node-specific. Nodes use the keys from the account is used to launch the node! |
3.10.3. AES Key Management
AES keys are managed and stored via the ARESMgrUI.py script. The script allows on to generate AES keys and to store AES keys:
-
Generate an AES 256 Keys - This needs to be done only once for a mission!
-
Run ARESMgrUI.py (python ARESMgrUI.py) for each key to be generated
-
Select 'aesgen'
-
Copy the resulting key - STORE IN A SAFE SECURE PLACE!
-
-
-
For each user
-
For each machine that the user will use
-
Add the appropriate key’s to that user’s account by running ARESMgrUI.py from that user’s account
-
Select 'aesadd'
-
copy/paste or enter the key
-
-
-
-
Add the appropriate keys to all remote (automated) ARES nodes (example a CubeSat)
-
Edit the $ARES/config/ARESConfig.toml file on all nodes
-
Set MESSAGE_ENCRYPTION to 'true'
-
3.11. Software Fault-Detection, Isolation, and Recovery (FDIR)
ARES includes a number of features for software fault-detection, isolation, and recovery (FDIR). Athough elements are found throughout ARES software, they are described as part of the ARES Management and Recovery Subsystem
4. Using ARES
See ARES Platform Requirements for details as to platforms and operating systems.
ARES is designed as a complete distributed network software system. All nodes within the network share a common code based (although individual nodes in the network might have slightly different code bases at any given time based on when the node was updated).
ARES is not a pure library, rather it is a template with library elements that a mission modifies to meet their own needs.
ARES maintains a private GitLab repository of all software and documentation configuration control. The ARES team uses this repository for all development including future releases.
Warning
|
Access to the ARES GitLab repository is currently restricted. To get permission, email the ARES team at bennett@bennettresearchtech.com. |
The general approach for using ARES is:
-
Fork the ARES respository to a mission-specific repository. One option is to:
-
Clone ARES from the ARES Gitlab Repository (https://gitlab.com/kjbennett145/ares3)
-
Copy the entire ARES directory to an individual or mission-specific directory
-
Create a Git repository from that individual or mission-specific directory
-
-
Set $ARES to point to this individual or mission-specific directory (see Configuration)
-
Define a mission name. The mission name must be no more than 6 characters of A-Z, 0-9 and must not start with a digit. Example THOR01
-
Modify $ARES/config/ARESAddresses.csv by adding the mission name to the mission name value to your mission name (3rd line, 2nd column). (see Mission/Network Name for details of changing mission name and/or network in ARESAddresses)
-
Set up the ACS Message Hub (see Desktop ACS Message Hub>)
-
Modify ARES as needed for the mission (see guidelines below)
-
Manually merge ARES updates into the mission-specific directory/repository
In general, users can approach their own software in two ways:
-
Start with a clean sheet design.
-
Modify a reference mission (by copying code to MISSIONxxx modules)
In general, the best practice:
-
Create mission-specific documentation under the $ARES/docs directory (example $ARES/docs/ MISSIONAME _SDD.adoc)
-
Modify $ARES/config/ARESAddresses.csv by adding desired nodes/apps
-
Modify $ARES/config/ARESConfig.toml or create mission-specific ARESConfig.toml file under $ARES/config/ MISSIONAME /ARESConfig.toml
-
Do not directly modify AMS code - rather create copies named MISSIONxxxx
-
If you copy AMS modules, keep track of their source AMS modules
-
CLearly mark changes with comments to make manually updating the modules with updated ARES code easier.
-
-
Avoid modifying ACS/APS/AMR code if possible
-
If changes to ACS/APS/AMR code is necessary, make sure that all changes are clearly mark with comments to make manually updating the modules with updated ARES code easier.
-
Warning
|
Depending on how APS is used, it may be required to modify some of the APS code, particularly related to APS sensors. If you feel you need to do this, please touch base with the ARES team first to discuss the needs. It may be possible to incorporate those needs directly into APS as part of a normal ARES release. |
-
Create any needed mission-specific node or app-specific ARESConfig.toml files
-
Review ARESHardware flags in ACSPlatform.py and add any needed for the specific hardware
Individuals can explore the use of ARES directly by cloning ARES from the ARES Gitlab Repository (https://gitlab.com/kjbennett145/ares3). However, to use the multi-node capability, one needs to access an ACS Message Hub which means getting an AWS account with keys (see Desktop ACS Message Hub>)
Warning
|
Failure by individuals or missions (even if just exploring ARES) to change either the mission name or network name in $ARES/config/ARESAddresses.csv can result in unexpected behavior by missing messages from different groups sharing the same ACS Message Hub. |
ARES is designed to run networks of exploration systems. As such, updates to the code should be very closely managed, tracked, and tested. Therefor, merging updates from the ARES team into a mission-specific implementation needs to very carefully managed, hence the recommentation on manually merging ARES updates.
4.1. Missions
In general, a mission should have a single point of contact with the ARES team. The ARES team may be contacted at bennett@bennettresearchtech.com .
Basically, mission teams:
-
Set the mission name (6 character upper-case ASCII strings (A-Z, 0-9, _, -)
-
Fork ARES into their own repository.
-
Develop the mission software using the ARES framework and example code
-
Commit changed to their forked repository as software is developed.
-
Push those changes to their forked repository.
-
Install their software on various mission computers using the version under their mission.
-
Update their software on various mission computers using the version under their mission branch when new software is available.
-
Create or extend ARES UI functions (see ARES User Interface)
-
Manually merge ARES updates with into their repository. This is very much a mission-specific decision - when to merge updated ARES code with mission code depends on the specific circumstances.
-
Setup the ACS Message Hub, a AWS account with keys (see Desktop ACS Message Hub>) for inter-node communications via the Internet. Distribute those keys as needed to members of the mission team.
The mission software lead is responsible:
-
Communicate information about the mission’s repository to team members.
-
Distribute ACS Message Hub (AWS) keys to team members.
-
Distribute any other mission-specific keys such as encryption keys or web site accounts such as space-track.org.
4.2. Git
Git provides software configuration control. It also convenient way to share code between computers involved in the mission including flight computers, test (flatsat) computers, ground station, communication node computers, etc. Users new to Git should see Using Git.
Individuals and Missions are encouraged to use git for software configuration control.
4.2.1. User ARES Installation from GitLab
The next step is to install ARES from the ARES Gitlab repository. Before proceeding, please review the Using ARES section to setup overall mission requirements.
Once the mission has been set up, mission users can install ARES from the GitLab repository.
Warning
|
You will need a GitLab account and permission to access the ARES repository! |
Tip
|
To get permission, either have your mission configuration manager, C&DH manager, payload manager email the ARES team at bennett@bennettresearchtech.com or send an email directory yourself. |
Tip
|
Users should review the Using ARES and Using Git section for learning git. |
-
Individual Users - to install - From a command line
-
Change to the directory where you want ARES
-
Clone the site to a local directory:
git clone https://your_gitlab_username@gitlab.com/kjbennett145/ares3 cd ares3
-
-
Mission Users - If your mission has set up a ARES repository mission branch:
git checkout -b mission_name origin/mission_name
-
Mission Users - If your mission has forked ARES repository mission branch:
git clone https://your_gitlab_username@gitlab.com/mission_repository
Cloning the ARES project handles most of the file setup requirements but there are few additional steps needed:
-
Change Mission Name/Network in $ARES/config/ARESAddresses (see Mission/Network Name)
-
If you are just working with ARES on you own local machines, set either the mission name or network name to something unique (such as a variation of your name) to ensure you do not interfere with others.
-
-
Update permissions:
cd $ARES/resources/bin_linux chmod a+x mkspk
4.2.2. Using Git
-
Learning Git and GitLab - There are a LOT of resources on-line for learning git. Here are just a couple:
-
Developers update the code and check into the local copy, then push to the repository. See git documentation for more details. A simple example
-
Switch to the mission branch
git checkout mission_name
-
Stage all updated files
git add filename
-
Commit all staged files to local repository
git commit -a -m 'Change message'
-
Push the updates to the GitLab repository
git push
-
-
Developers will need to work with the ARES team to merge any update to ARES code into their branch.
-
Non-developer users can update their clones of the repository by fetching updates. This will copy the latest software for the branch to the local computer.
-
Switch to the mission branch
git checkout mission_name
-
Get the mission software (fetch overwrites the local machine copy, pull merges the branch copy with the local copy - If you are not making changes to the local copy, these are equivalent)
get fetch or get pull
-
5. ARES User Interface
ARES is designed to running most operations autonomously. However, it does support several tools for interacting with an ARES network.
5.1. Launching ARES Nodes/Apps
Launching ARES nodes can be done via the command line, via a launch script, or via the ARES UI.
For example, to launch from the command line:
python AMScAppSCZC.py -m SCZC -r
A launch script can also be used to launch ARES. This is most often used to launch ARES on a remote platform when the platform reboots. ARESLaunch.sh provides an example shell for launching ARES.
Finally, ARES can be launch via a python script like ARESUI.py. To run:
cd $ARES/src python ARESUI.py
5.2. ARESUI.py
ARESUI.py provides a command-line interface for launching ARES nodes/app and a command-line interface for accessing data and sending commands to remote nodes.
ARESUI does not actually operate a node to access the data. Rather, it "attaches" to a node operating on the same platform as ARESUI. Once attached, ARESUI can then access the node’s data files such as log files, telemetry files, and APS memory data.
ARESUI also support sending command to a node. Commands can range from requests for files to reboot a remote platform.
ARESUI can be extended to allow missions to include additional mission-specific data operations and commands (see below).
5.2.1. ARESUI Functions
The ARESUI provides several functions - most of which are clear from the interface. There are several specific concepts/functions that are worth highlighting:
-
In general, one should not directly access a node’s data files to avoid any chance of accidentally locking the file and causing ARES to drop incoming messages. Rather, export the files and access the exported files. There are a couple of commands:
-
ex - export log and telemetry files
-
sh - show exported files
-
-
ARES supports a SQLite3-based memory system. This system is primarily used for APS operations. The memory system offers several commands for accessing memory data:
-
mex - export memory data to csv files
-
mad - access the SQLite3 database
-
mnt - export memory queries to CSV
-
kml - export memory queries to KML (Google Earth)
-
-
Remote App commands - One can send commands to apps in the network. These commands can be "node" command sent to the node’s MCP app or general commands to apps in the network.
-
Telemetry - many ARES missions support the concept of 'telemetry' - standard data messages that contain data about the remote node. AMScUI.py is an example extension of ARESUI that support telemetry. The 'tt' command provides a submenu of telemetry commands including:
-
plot telemetry data
-
plot location (in the case of AMScUI - plot location of the CubeSat reference spacecraft)
-
generate a KML file of the remote node (in the case of AMScUI - plot location of the CubeSat reference spacecraft)
-
DASH-Based Webpages - In addition to the command line interface, one can create specialized scripts for accessing/viewing data. AMScUI.py offers an example of DASH-based webpage interfaces. These interfaces launch from the command-line interface but display data in a local webpage (i.e. one only accessable on the local platform) AMScUI provides an 'xl' command that launches a log file webpage and an 'xt' command that launches a telemetry webpage.
5.2.2. Node/App Types
To help in managing nodes interfaces, nodes are given "node types". Each node may have one or more node types although it is not required. Node Types are used by the various user interface tools to filter and present appropriate options for the node. For example, a base station node may have various commands that it can send to other nodes/apps. An APS-based node may include commands related to accessing synced memory data. A node’s node type is defined in the <_node_type_field, Node Type>> field of the node’s MCP app in ARESAddresses.csv.
In addition, some apps may also have an app_type that allows the user interfaces to limit options to only sending commands to specific app types. A app’s node app_type is defined in the Node Type field of the app in ARESAddresses.csv. The Node Type Field for a given app may have multiple node/app types. Multiple node/app types are seperated by a bar (|). For example a node field might be 'BS|ME'.
ACSPlatforms.py includes a set of pre-defined node types along with a text description:
-
'UI' - User interface node
-
'BS' - Base/Ground station node - supports base station attachment to BS nodes from ARESUI
-
'BR' - Base/Ground communication (Radio) node
-
'RP' - Remote Platform Node
-
'ME' - APS memory-oriented node - supports memory node attachment to ME nodes from ARESUI
-
'OB' - APS observation-oriented node - supports memory node attachment to OB nodes from ARESUI
-
'SA' - APS stand-alone observation node - supports memory node attachment to SA nodes from ARESUI
In addition, ARES supports several pre-defined app_types: * 'RZC' - Remote node MCP app (ZC) * 'RRU' - Remote node UHF Radio Link App * 'GRU' - Ground node UHF Radio Link App * 'RIR' - Remote node Iridium Radio Link App * 'RCM' - Remote node commercial radio network link app * 'RAD' - Remote node ADCS App * 'PYL' - Remote node payload App * 'PRF' - Remote node payload RF sensor App * 'PRO' - Remote node payload Omni-Directional RF sensor App * 'PRD' - Remote node payload Directional RF sensor App * 'PCM' - Remote node payload camera sensor App
5.2.3. Extending ARESUI for Missions
Missions may find ARESUI.py sufficient but they may require additional data access, visualization, and command capabilities. There are three ways missions can extend UI capabilities:
-
Create a mission-specific module(s) like MISSIONUI.py with only the additional functions.
-
Then run ARESUI.py and MISSIONUI.py modules as needed.
-
-
Copy ARESUI.py to a mission-specific module such as MISSIONUI.py and modify.
-
Then run MISSIONUI.py for all UI operations
-
-
Create a subclass of ARESUI, name the subclass MISSIONUI.py, and override the following methods (see AMScUI.py for an example):
_show_bs_data_menu - Shows additional base station data options _handle_bs_data_menu - Handles additional base station data options _show_bs_command_menu - Shows additional base station to remote platform commands _handle_bs_command_menu - Handles additional base station to remote platform commands _show_aps_data_menu - Shows additional APS node (ME, OB, SA) data options _handle_aps_data_menu - Handles additional APS node (ME, OB, SA) data options
-
Then run MISSIONUI.py for all UI operations (this will include all operations from ARESUI.py)
-
5.3. Base Station Command Scripts
Sometimes it is useful to run base station operations as scripts, i.e. a sequence of commands, data checks, and event responses. For example, one might want a script that will monitor telemetry and send an email if a value hits a certain point. Or, one might want a script that sends certain commands to an app every 24 hours.
Such scripts are easy to write in python and ARES as commands are sent via messages. Examples of how to send command can be found in ACSUIUtils.py.
Scripts can also be written in shell language. An example is ARESLaunch.sh.
5.4. ARESMgrUI
In addition to ARESUI, ARES includes a manager UI (ARESMgrUI.py) to support specific management functions like setting encryption keys, adding web site access username/passwords, and setting a UI command confirmation password. To run:
cd $ARES/src python ARESMgrUI.py
5.5. APS Memory
The ARESUI provides a set of tools for exporting APS memory data for use in external programs. APS memory data exports include:
-
CSV Files - CSV (Comma-separated value) files provide a tabular set of data. CSV files can be viewed in many tools such as Excel, LibreOffice, or QGIS. APS Memory CSV files:
-
Header Line defining each column
-
Each row represents on APS memory record
-
Typical rows include:
-
The time the record was created
-
The time the record was received by the node
-
The source app and node addresses
-
The location in ECEF latitudinal coordinates
-
Decimal Latitude (-90.0 to 90.0)
-
Decimal Longitude (0.0 to 360.0)
-
Altitude in Km from Earth Center
-
-
-
-
KML Files - KML files provide an easy way to visualize the data in Google Earth Pro.
5.5.1. KML and Google Earth Pro
To view a KML file:
-
Launch Google Earth Pro
-
File → Open → Select KML file (or just double click on the KML file if Google Earth Pro is setup as the default application for .kml files)
You can control the time range viewed by using the time widget in the upper left corner of the earth display.
5.5.2. CSV and QGIS
Since APS memory CSV files have location, they can be viewed and manipulated in GIS tools such as QGIS.
For example, to load into QGIS, follow https://www.qgistutorials.com/en/docs/importing_spreadsheets_csv.html.
6. Configuration
6.1. Mission/Network Name
A key configuration is the mission and network names. All missions should have a unique 6 character name. Missions, in turn, must have at least one network and possibly more. The mission/network names separate inter-node communications and provide naming conventions for mission-specific code modules and documentation.
The mission and network names are specified in ARESAddresses.csv. To change the mission and network names, one modifies the mission and network values in ARESAddresses.csv.
Note
|
You can use ARESMgrUI.py to change all mission and network names in all ARESAddressesXXX.csv files in $ARES/config. This is an easy way to change your mission/network names. |
6.2. Configuration Sources
ARES is designed to support the development of missions involving networks of remote platform nodes, ground/base station nodes, and various ground-based training and processing nodes. As such, it is highly configurable which is a strength as it is adaptable to many mission types and configurations but a weakness in that is can be a little daunting to get started.
The base code and framework provide a basic multi-processing/message passing architecture for remote node and ground station software. There are no separate blocks of code for the remote nodes vs ground station nodes. Rather, the entire ARES project is copied onto a target node whether that is the ground station computer or the flight computer. Then the appropriate code is executed for this given function. This is because (a) the ground station and remote node share common code; and (b) ARES/AMS is designed to operate in a variety of configurations including desktop and testbed testing; distributed AI training; and flight or field operations.
Configuration of ARES and any mission software is handled through:
-
Environment Variables
-
$ARES/config/ARESAddresses.csv file (ARES Addresses)
-
$ARES/config/ARESConfig.toml file (ARESConfig)
-
Mission, Node, and App-specific configuration toml files (ARESConfig)
-
ARES Keychain (ARES Keychain)
Parameter | Form/Order of Precedence | Description | ||
---|---|---|---|---|
ARES Root (Optional) |
Environment Variable $ARES |
Path to the ARES directory. Technically, this is optional as the code will determine the root as the directory above the source directory where the python code is run. However, the documentation refers to this variable to indicate various subdirectories and files. |
||
ARES Data Directory (Optional) |
Environment Variable $ARESData |
Path to the mission data directory. This defaults to $ARES/data but adding the $ARESData environment variable allows the data to be stored in another location (useful in cases where one might want the data on a separate disk) |
||
ARES Reports Directory (Optional) |
Environment Variable $ARESReports |
Path to the ARES reports directory. This defaults to $ARES/reports but adding the $ARESReports environment variable allows the reports to be stored in another location (useful in cases where one might want the data on a separate disk) |
||
AREA Test Data Set Directory (Optional) |
Environment Variable $ARESDatasets |
Path to the test data directory. This defaults to $ARES/datasets but adding the $ARESDatasets environment variable allows the test data sets, which can often be very large, to be stored in another location (useful in cases where one might want the test data on a separate disk) Defaults to $ARES/datasets |
||
Hardware/Sensor Elements |
Environment Variable $ARESHardware |
Specific hardware/sensor/specialized library configuration. See ARESHardware Fields. |
||
App Address |
App Command Argument |
Each app has a unique address - see App Addressing and ARES Addresses. |
||
App Command Arguments |
Apps have a set of parameters that define how the app behaves. (see App Arguments and ACS Apps Subsystem). These include the app address and a reset flag. |
|||
Mission Name |
ARESAddresses File |
The top level configuration is a "mission". The mission defined the source code, documentation, networks, and data. Users create a mission by defining a directory structure to hold all files and setting various environment variables. Within this directory structure, users create all mission-specific source code, documentation, and data files. This same structure is copied to all nodes and copies used in all development, test, and operations. Node specific operations consist of setting environment variables and launching the correct node apps from this directory structure. Thus, all nodes contain the same source code making configuration control a little easier.
|
||
Network Name |
ARESAddresses File |
Within a mission, the mission team can used one or more "networks". A network is just a logical grouping of apps sharing the same messaging and data files. Networks cannot communicate with each other. The typical use of networks is to split between an operational network and different testing/training networks, but the network concept can be used in anyway a mission see fit.
|
||
Addresses Table ('ARESAddresses') |
$ARES/config/ARESAddresses.csv |
Defines a set of app parameters that control things like rates. These parameters are read from an $ARES/config/ARESAddresses.csv file that defines all the possible apps in a network. If the file is not found or fails to load, the app will exit. |
||
Configuration File(s) |
$ARES/config/ARESConfig.toml |
The configuration directory holds all configuration files. The directory holds a set of "default" configuration files but also can hold node and app-specific versions of the configuration files. (See ARESConfig)
|
6.3. ARESHardware Fields
The ARESHardware environment variable is used to refine the platform configuration with specifics on hardware, sensors, and specialized libraries. The ARESHardware environment variable consists of a set of hardware 'tags' that can be use to indicate what hardware devices or libraries are available on this platform. The tags are separated by bars (example: 'picamera|sensehat' or 'cvcamera').
Warning
|
Tags are case-sensitive |
Tags are stored in a dictionary (ACSPlatform.ARES_HARDWARE_TAGS). If the tag is in the dictionary, the tag was found in $ARESHardware. One can use the ARES_HARDWARE_TAG to check if the tag exists:
if 'hardware_tag_string' in ACSPlatform.ARES_HARDWARE_TAGS: # do something with the hardware
ARES has several pre-defined tages. Mission can define additional tags.
$ARESHardware Pre-Defined Tags:
-
'pi0' - Pi Zero Raspberry Pi running 32-bit Raspberry Pi OS (Bullseye)
-
'pi32' - Pi 2 and above Raspberry Pi running 32-bit Raspberry Pi OS (Bullseye)
-
'pi64' - Pi 3B and above running 64-bit Raspberry Pi OS (Bullseye)
-
'linux_arm' - Used when running linux on ARM machines
-
'higherror' - Indicates that the platform operates in a high error (high radiation) environment. Normally, only set for space-based platforms. Setting 'high error' will engage a set of operations to reduce the chances of corrupted data such as forcing all messages and disk-based shared data pool values to be stored twice and checked with a checksum whenever read. This will reduce performance but reduce the chances of corrupted data.
-
'cartopy' - Cartopy library installed
-
'cvcamera' - Opencv-Capable Generic Camera
-
'picamera' - Pi Legacy Camera (pre-bullseye or bullseye with legacy camera on)
-
'pilibcamera' - Pi Libcamera Camera (bullseye or new with legacy camera off)
-
'pisensehat' - Pi sensehat
-
'rtlsdr' - Platform has the PYRTLSDR library with a Software Defined Radio (SDR) receiver
-
'tf' - Platform has the full tensorflow library installed
-
'tflitert' - Platform has the tensorflow lite run-time library installed
In addition, various reference missions has added the following tags:
-
'pigpio' - Has PIGPIO library installed and a pigpiod demon running
-
'TCA9548A' - Has a TCA9548A I2C Multiplexer
-
'FXAS21002C' - Has a FXAS21002C I2C gyroscope device
-
'MCP9600' - Has a MCP9600 I2C Thermocouple device
-
'FXOS8700CQ' - Magnetometer/Accelerometer
-
'ADS1015' - ADS1015 photodiodes Interface
-
'DS3231' - Has a DS3231 I2C Real-time clock device
-
'FXOS8700CQ' - Has a FXOS8700CQ device
-
'spacecraft_antenna' - Has a CubeSat compatible antenna
-
'cubesat_uhf_transceiver' - Has an CubeSat compatible UHF Radio
-
'radio_ground_transceiver' - Has an Ground SDR UHF Radio
-
'cubesat_solar_panels' - Has CubeSat Solar Panels with MMC5883 and TMP100 I2C interfaces
-
'cubesat_eps' - Has an CubeSat electric power system (EPS)
6.4. ARES Configuration Files
Most of ARES configuration is driven by two file: ARES Addresses and ARESConfig.toml. These files are found in $ARES/config. Together, these files define the network, nodes, apps, and app configuration. The ARES repository includes a default set - ARESAddresses.csv and ARESConfig.toml. It also includes several sets for specific examples:
-
Testing - ARESAddressesTest.csv and ARESConfigTest.toml
-
AMS CubeSat Reference Mission - ARESAddressesCubeSatRef.csv and ARESConfigCubeSatRef.toml
-
AMS Distrubed Observation Network Mission - ARESAddressesAMSDON.csv and ARESAddressesAMSDON.toml
-
APS Test Network - ARESAddressesAPSTestNW.csv and ARESConfigAPSTestNW.csv
To use these configuration sets, one needs to copy the desired configuration to ARESAddresses.csv and ARESConfig.toml.
Warning
|
CHANGE ANY COPIED MISSION/NETWORK SETTINGS IN THE ARESAddresses.csv FILE BEFORE USING!! |
For example, to use the test configuration:
cd $ARES/config # Save the original configuration mv ARESAddresses.csv ARESAddresses.csv.old mv ARESConfig.toml ARESConfig.toml.old # Copy the test version cp ARESAddressesTest.csv ARESAddresses.csv cp ARESConfigTest.toml ARESConfig.toml # If necessary, edit ARESAddresses.csv and change the mission name # run tests.... # reset back to original configuration # remove the test version rm ARESAddresses.csv rm ARESConfig.toml # move the original configuration back mv ARESAddresses.csv.old ARESAddresses.csv mv ARESConfig.toml.old ARESConfig.toml
Note
|
ARESMgrUI.py provides a single command that will change the ARESAddresses/ARESConfig set instead of manually copying. |
6.4.1. ARES Addresses
A mission’s node/app configuration is found in an address table found in $ARES/config/ARESAddresses.csv. This CSV file is a comma separated key-value structure with most of the lines defined apps.
This is a CSV file listing a set of app configuration data. The address tables contains either key-value sets, a comment (starts with #), or an app description. The app description line contains a set of fields that corresponds to ACSApp arguments.
Key | Description |
---|---|
# |
Any line starting with a # is ignored. |
mission |
Mission name - The mission name must be no more than 6 characters of A-Z, 0-9 and must not start with a digit. |
network |
Network name - The mission name must be no more than 6 characters of A-Z, 0-9 and must not start with a digit. |
App |
App address/App Parameters - Consists of a comma separated subfields (see below). |
App Subfield' | Type | Description | ||
---|---|---|---|---|
App Address |
str |
4-character app address consisting. See App Addressing for addressing details |
||
Module |
str |
Python App Module that handles this address. This value is by the User Interface and MCP apps for launching apps. |
||
Name |
str |
A user-friendly name - used in user interfaces rather than addresses.
|
||
NodeType |
str |
A node type used by User Interface tools (ARESUI and subclasses) to organize node option lists. See Node Types This field is used by the user interface to organize options. A bar ('|') separated list of node types. |
||
Reserved |
As of V4.0, this field is not in use. |
|||
Is Payload Base Station |
bool ('t' or 'f') |
True ('t') if this app a payload base station app. In some circumstances, user commands from an attached UI to a base/ground station needs to route responses not to the base/ground station MCP but to a specific base/ground station app. For example, the need to route some incoming files to specific apps for processing. |
||
Is MCP |
bool ('t' or 'f') |
True ('t') if this app is the Main Control Program for this node |
||
Use Message Hub Flag |
bool ('t' or 'f') |
True ('t') if the node should use Message Hub services. Normally, true for nodes connected to the internet. Normally, false for remote nodes not connected to the internet (example: Spacecraft) |
||
Console |
bool ('t' or 'f') |
True ('t') if the node has a console. |
||
Interactive |
bool ('t' or 'f') |
True ('t') if the node is interactive. Allows the app to interact with a user. Primarily used for testing and debugging. |
||
Use Messages |
bool ('t' or 'f') |
True ('t') if the node can send and receive messages via the message queues. If false, the apps cannot send or receive messages. |
||
Log Debug |
bool ('t' or 'f') |
True ('t') if the node logs debug messages. |
||
Log Local |
bool ('t' or 'f') |
True ('t') if the node stores log messages locally. |
||
Log To App |
|-separated list of str |
Target app(s) address for logging to the network log. It consists of a '|' seperated list of addresses (often only one address). For all valid addresses, the log (and logd messages if log-debug is true) are send via ACS messages to the target app for inclusion in the target apps node log files. A typical use is to have remote apps send log messages to a ground station app to be included in the ground station node’s log files. |
||
Save Rate in Steps |
int |
How frequently the app should save its state expressed in steps. If set to 0, no saving except on commanded termination. |
||
Step Time in Seconds |
float |
How long a step should take in seconds. If an app takes less time than this for a step, the app will wait until to approximate this time per step. If 0.0, then the app runs as fast as it can. This does not limit the app step time; apps steps may run longer than this step time! |
||
Console Report Rate in Steps |
int |
How frequently the app should report on the console expressed in steps. If set to 0, no reporting. |
||
Report Rate in Steps |
int |
How frequently the app generates a step report and sends to the logs expressed in steps. If set to 0, no step reporting. |
||
Max Steps |
int |
Maximum number of steps before ending a session. If 0, then no limit. |
||
Max Messages |
int |
Maximum number of messages handled handled by an app.
|
||
Max Queue |
int |
Maximum number of messages that can be queued. This limits the number of messages pending between Apps. This is to prevent the queues from overflowing and slowing down operations (or crashing a platform). Used only by node ACS manager apps only. If the max number of messages queued exceeds this number, the queues are reduce in order of priority. |
||
Pause Wait |
float |
Defines how the pause signal is handled by the App. If 0, then app runs on startup and cannot be paused (normally an MCP or stand-alone APS app). If greater than 0, then the value defines how long an app should after receiving an initial pause signal, the app should sleep (in seconds) between checking for an updated pause signal. |
||
Link Forward List |
|-separated str |
If this is a link app (ignored if not): Bar separated list of node addresses for messages from the send queue to be forwarded across the link (Example: T3|T4). Forwarding and group addresses provide a powerful method of defining network topography. Please see Network Topography and Link Forwarding for a complete description and details of this field. |
||
Route Table |
|-separated str |
Only valid for ACS Route App (ACSAppZT). This field holds a bar separated list of nodes to route received messages. Please see Network Topography and Message Routing for a complete description and details of this field. |
||
App Data |
str |
App specific data |
||
Target App |
str |
Some apps have a "target app", i.e. an app that it sends specific messages to. The exact usage of the Target App field is app specific. |
||
APS Memory Sync Lv1 |
str |
App-address for any APS memory sync (Used only for APS apps). This address is typically used for syncing memory records to a wide number of nodes (example syncing an RF event). |
||
APS Memory Sync Lv2 |
str |
App-address for any APS status records memory sync (Used only for APS apps). This address is typically use for syncing low-priority status memory records to memory or other data storage nodes. A typical example would be sending status records to memory nodes. |
||
APS Sensor Suite |
str |
APS Sensor suite name (Used only for APS apps). Points to an APS Sensor Suite table in ARESConfig.toml in the form APS_SENSORS_xxxx. For example, if the field is DESKTOP_RF, the ARESConfig.toml table will be: [APS_SENSORS_DESKTOP_RF] |
||
APS Reasoner Suite (Valid only for APS apps). |
str |
APS Reasoner suite name. Points to an APS Reasoner Suite table in ARESConfig.toml in the form APS_REASONERS_xxxx. For example, if the field is STSN, the ARESConfig.toml table will be: [APS_REASONERS_STSN] |
||
str |
The platform "path". How this field is interpreted is up to the app. For CubeSat-oriented missions, the Path field usually contains a spacecraft id or a TLE/BSP filename. Other types of missions can interpret this field differently (for example, a robotic mission could use this field as a path field) Specific usage:
|
|||
Schedule |
str/'' |
Provides a schedule for the app. If the field is not blank, it will look in $ARES/resources/schedules for this filename. If found, it will load the schedule tasks in the schedule into the App’s schedule. These tasks will then be carried forward via the App’s state file if the app halts and restarts, unless the app is started with the reset flag true, in which case, the app will reload this schedule. |
||
Notes |
str |
Generate notes about an app |
6.4.2. ARESConfig
The ARESConfig.toml file holds ARES configuration data. Configuration data is a dictionary with keywords and values stored in TOML format (https://github.com/toml-lang/toml) - basically a key=value text format with the addition of tables.
Keys are a simple text string. Values can be string (in quotes), integer, float, or arrays (must be of the same type).
In addition to key-value sets, the ARES config file can contain tables. Tables (headed by [TableName] consists of a set of key-value pairs (or nested subtables). ARES Config uses tables for defining sets of values.
Warning
|
Tables must be placed at the end of the TOML file, i.e. you cannot have single key-value pairs after defining the first table! |
The configuration data is built from several possible files:
-
$ARES/config/ARESConfig.toml
-
$ARES/config/mission_name/ARESConfig.toml
-
$ARES/config/node_address/ARESConfig.toml
-
$ARES/config/app_address/ARESConfig.toml
where app key, values are used in reverse order, i.e mission_name values take precedence over default values, node_address values take precedence over both default and mission values, and app_address values take precedence over all others.
Tip
|
Not all TOML files must have the same keys. So one should only include keys-values or tables in a mission, node, or app specific file if needed. This allows node or app specific settings while using global settings for other keywords. |
Table/ Keyword | Type/ Default | Description |
---|---|---|
VERSION |
Str/ Unknown |
Current Version. This value is logged when starting an MCP app. It can be used to distigush different version of the software. |
SIM_xxx |
||
MANAGER_POOL |
bool/ true |
If set true, the shared data pool will operate using python manager pool. If false, the shared data pool will operate using cached shared files. The use of the python manager pool is faster and reduces disk read/writes but can only be used if all apps are python apps. Set to false if mixing non-python apps with python apps. |
MESSAGE_ENCRYPTION |
bool/ False |
Sets the message security level for intra-node messages. See Message Encryption. |
BEACON_ENCRYPTION |
bool/ False |
If MESSAGE_ENCRYPTION is true and BEACON_ENCRYPTION is true, then the beacon messages are encrypted like other messages. |
MAX_FILE_SIZE_IN_MESSAGES |
int/ 1000 |
Limits the size of files sent from the ground to a remote node. If the number of messages needed to send the file is greater than MAX_FILE_SIZE_IN_MESSAGES, then the user interface prohibits sending the file. This is to prevent someone from accidentally sending a very large file and swamping the communications channels. |
SHUTDOWN_MAX_APP_TIMER_SEC |
float/30.0 |
Sets the maximum time that an app can wait to shutdown before forced termination. |
ACS_MESSAGE_ACK_TIMEOUT_SEC |
float/432000.0 (5 Days) |
Sets the message acknowledgement timeout period. ACS periodically checks all messages requiring a receipt acknowledgement to see if they have received their acknowledgement. If they have not recieved it within the ACS_MESSAGE_ACK_TIMEOUT period, the message is resent. |
MULTIPLE_UHF_GROUND_NODES |
bool/ false |
If true, forwarding messages will be held in the ACS Message Hub. When set to true, ARES uses the ACS Message Hub for forwarded messages. This takes longer to access during a UHF link but prevents duplicate messages from being sent via different UHF ground radio nodes. |
BATTERY_LEVEL_MIN_VALUE |
float/ 0.0 |
AMS battery voltage (mV) range Min |
BATTERY_LEVEL_MAX_VALUE |
float/ 19000.0 |
AMS battery voltage (mV) range Max |
DEFAULT_BATTERY_TRIGGER_GREEN |
float/ 16500.0 |
AMS default battery voltage (mV) trigger test settings |
DEFAULT_BATTERY_TRIGGER_RED |
float/ 14000.0 |
AMS default battery voltage (mV) trigger test settings |
DEFAULT_BATTERY_TRIGGER_BLACK |
float/ 13400.0 |
AMS default battery voltage (mV) trigger test settings |
DEFAULT_BATTERY_ERROR_VALUE |
float/ 13500.0 |
AMS default battery trigger test settings |
SCHL_TELEMETRY_MESSAGE_STEP_RATE |
int/ 0 |
See RADIO_BROADCAST_RATE_SEC below for how frequently the telemetry is send as a beacon message This value controls how frequently SH sends a telemetry message to GH. Unlike beacon messages, standard telemetry messages are queued and sent when the radio link is available. Thus, these messages should normally get to the ground station unlike beacon messages which are only received when the radio broadcasts and the ground station is able to pick it up. The step rate is based on the SH step time - if you adjust the SH step time up, it will send the telemetry at a slower rate. |
BOOT_DEPLOYMENT_TIMER_SEC |
float/ Undefined |
AMS Boot deployment timer in seconds - Many remote platforms have a timer before they can start operating (ex Spacecraft) |
BOOT_ANTENNA_DEPLOYMENT_TIMER_SEC |
float/ Undefined |
AMS If it takes more than an instance to deploy the antenna, then set the value here |
UI_NODE_TYPES |
Dict/ See Below |
Dictionary of Node/App Types to Node/Apps. Using by User Interface scripts to display different options to different nodes or apps. See Node/App Types for details. |
INITIAL_TARGET_MODE |
String/ 'NOMINAL' |
The initial target state - either 'SAFE' or 'NOMINAL'. If set to 'SAFE', the spacecraft will not go to nominal state until commanded to by the ground. |
SHUTDOWN_MAX_APP_TIMER_SEC |
float/ Undefined |
AMS Maximum time allowed to an individual app to do a clean shutdown |
APS_MAXDIRMB |
Integer/ 16000 |
Maximum size of APS directory in MBs. Checked periodically. If the size of the APS directory exceeds the max size, first al *.old files are deleted. If the size is still too big, data files are deleted one by one until the size is reduced to acceptable limits. |
RECENT_NODE_LOG_MAX_MESSAGES |
Integer/20 |
Defines what 'recent' means for Node-sourced log files stored in the log directory of a receiving node (typically a base station). The recent telemetry file is named mission_network_node_recent_telemetry.csv The value is in number of log messages. |
RECENT_NODE_TELEMETRY_TIME |
Integer/7200 (2 Hours) |
Defines what 'recent' means for Node-sourced telemetry files stored in the log directory of a receiving node (typically a base station). The recent log file is named mission_network_node_recent_log.csv The value is in seconds. |
DASHBOARD_MISSION_DISPLAY_NAME |
Str/ 'Mission' |
Mission display name for dashboards. Unlike the mission name in ARESAddresses, this can be a multi-word, mixed cased name. |
DASHBOARD_SC_NODES |
Array/ ['S1'] |
Spacecraft nodes |
DASHBOARD_GR_NODES |
Array/ ['GR'] |
Ground Radio Nodes |
DASHBOARD_GS_NODES |
Array/ ['GS'] |
Ground Station Nodes |
DASHBOARD_PC_NODES |
Array/ ['GP'] |
Ground Payload Control Nodes |
DASHBOARD_OTHER_NODES |
Array/ ['BA'] |
Other Ground Nodes |
DASHBOARD_SC_NODES |
Array/ ['S1'] |
Spacecraft nodes |
DASHBOARD_TRAFFIC_APPS |
Array/ ['GRZM'] |
Nodes that generate 'TRAFFIC' reports |
DASHBOARD_NODE_DESCRIPTIONS |
Table of Arrays * |
Node descriptions with the following fields: * NAME * DESCRIPTION * COLOR Example: |
DASHBOARD_OLD_DATA_YELLOW_CUTOFF |
Float/ 60.0 |
Cutoff time for marking data yellow |
DASHBOARD_OLD_DATA_RED_CUTOFF |
Float/ 180.0 |
Cutoff time for marking data red |
APS_SENSORS_name |
Table/ undefined |
Table of sensor values (see APS Sensors and APS Sensor Configuration Table). The name comes from the ASPSensorsSuite field of $ARES/config/ARESAddresses.csv. |
APS_REASONERS_name |
Table/ undefined |
Table of specific reasoner definitions (see APS Reasoners and APS Reasoner Configuration Table) The name comes from the ASPReasonersSuite field of $ARES/config/ARESAddresses.csv. The APS reasoners table consists of a list of reasoners, each with their own table that provides reasoner parameters. |
6.5. ARES Keychain
ARES support two sets of security data:
-
ARES Keychain - The ARES Keychain holds various account, password, and security key information (see ARES Deployment for directions on how to set keychain values) Stored in ~/.ares
-
Iridium Rockblock WebHook URL, Account, and Password (see Iridium Link Support)
-
Space-Track.org Account and Password - Used for obtaining TLE files for simulation and operations
-
User Command Confirmation Code - Used to confirm ground station commands before sending
-
-
AWS Keys - ARES uses AWS for message communication and certain server functions. In order to access the AWS services, platforms will need a copy of the AWS ARES keys. (See Installing Desktop AWS Keys and Installing Raspberry Pi AWS Keys)
6.6. ARES Simulation
Many ARES activities can be driven by simulation. These include:
-
Time/time rate
-
Communications (Iridium, UHF)
-
Hardware readings
-
Location/Orientation (ADCS)
-
Location/Orientation (Stand-alone APS apps)
-
APS RF Sensor
In general, the simulation settings are driven by parameters in either the ARESAddresses file or ARESConfig.toml file. System-wide simulation settings (example time) are set in the ARESConfig.toml file. App-specific simulation settings are found in the ARESAddresses file.
Source | Table/ Keyword | Type/ Default | Description |
---|---|---|---|
ARESConfig |
SIM_START_TIME |
str/None |
If included, ARES will use a simulated clock rather than real-time. The simulated clock will be started at this given time. The start time should be in the form '2020-11-07T14:23:16.454' |
ARESConfig |
SIM_TIME_RATE |
float/1.0 |
If included, ARES will use a simulated clock rather than real-time. Time rate in simulated seconds per real second. |
ARESConfig |
SIMULATE_EPS |
bool/ false |
AMS should simulate the EPS device (AMSInterfacePIGPIO) |
ARESConfig |
SIMULATE_EPS_LEVEL |
int/ 0 |
Controls the EPS simualation:
|
ARESConfig |
SIMULATE_CDH_SENSORS |
bool/ false |
AMS should simulate the C&DH sensors (AMSInterfacePIGPIO) |
ARESConfig |
SIMULATE_ADCS_SENSORS |
bool/ false |
AMS should simulate the ADCS sensors (AMSInterfacePIGPIO) |
ARESConfig |
SIMULATE_ANTENNA |
bool/ false |
AMS should simulate the antenna controllers (AMSInterfacePIGPIO) |
ARESConfig |
SIMULATE_SOLAR_PANEL_SENSORS |
bool/ false |
AMS should simulate the Solar Panel sensors (AMSInterfacePIGPIO) |
ARESConfig |
SIMULATE_ADCS |
bool/ false |
AMS should simulate the ADCS device (AMSAppADCS). This means simulating the location and orientation of the platform See Simulated ADCS |
ARESConfig |
SIMULATE_UHF_RADIO |
str/ op |
Indicates how the UHF radio should work (see Simulated Radio) |
ARESConfig |
SIMULATE_IRIDIUM |
bool/ false |
Indicates how the Iridium radio should work (see Simulated Radio) |
ARESConfig |
SIMULATE_CR_RADIO |
bool/ false |
Indicates how the commercial radio network should work. If set to 'true', simulate the radio network via ACSMessageHub pipes. |
ARESConfig |
SIMULATE_CR_RADIO_DELAY |
int/ 0 |
Simulated commercial radio network time delay. If the commercial radio network is simulated, then set the message delivery time delay to simulate the time messages take from sending to receiving (on average) Values can range from 0 to 900 (15 minutes) |
6.6.1. Simulated ADCS
If SIMULATE_ADCS is set to true, the location/orientation is simulated.
An example of simulating ADCS is found in AMScAppSCAD. AMScAppSCAD simulates using a TLE id found in the ARESAddresses path field. It simulations location using a this TLE and a simple spacecraft roll model. To simulate the spacecraft, several values are taken from the AppData field of the ADCS app entry in $ARES/config/ARESAddresses.csv. The field should contain a bar separated list of:
-
Spacecraft ID that simulates a spacecraft in orbit (i.e. an existing spacecraft is used to model the spacecraft location)
Note
|
If the Spacecraft’s TLE file (xxxxx.tle) is not in $ARES/resources/spice_kernels, ARES will attempt to get if from space-track.org. In order to do so, you must have a space-track.org account in your ~/.ARES file (See ARES Deployment) |
-
X-axis roll-rate in degrees/second
-
Y-axis roll-rate in degrees/second
-
Z-axis roll-rate in degrees/second
Example AppData field: 52118|0.0|0.0|5.0
6.6.2. Simulated Radio Links
Iridium and UHF radios can be simulated using an ACS Message Hub channel. Link operation is defined by the SIMULATE keyword:
-
'NORMAL' (or keyword is missing) - Run normal hardware UHF radio operations
-
'LIMITED' - Run the normal hardware UHF radio but only when a simulated link is available
-
'SIMULATION_LIMITED' - Run a simulated UHF radio when a simulation link is available
-
'SIMULATION' - Run a simulated UHF radio continuously
Simulated links can be limited to a contact range. The contact range is defined in the $ARES/resources/sim/sim_uhf.csv or $ARES/resources/sim/sim_iridium.csv files. The files contain a list of:
-
Receiver name
-
Type - LLA, CART, ECI
-
LLA - Lat (Decimal Degrees), Lon (Decimal Degrees), Alt (Km from earth center)
-
CART - ECEF X, Y, Z
-
ECI - ECI X, Y, Z
-
-
Max distance from platform to receiver
The simulated link is considered open when the platform is within the given range from the receiver.
6.6.3. Simulated RF Sources
RF sources can be simulated to be used by the APS RF sensor. The simulated sources are stored in $ARES/resources/sim/sim_rf_sources.csv. The files contain a list of:
-
RF source name
-
Type - FIXED or SATELLITE
-
Data
-
FIXED Type - LLA, CART, ECI
-
LLA - Lat (Decimal Degrees), Lon (Decimal Degrees), Alt (Km from earth center)
-
CART - ECEF X, Y, Z
-
ECI - ECI X, Y, Z
-
-
SATELLITE Type
-
Satellite ID
-
-
-
Distance (Km) - Maximum distance in Km that the signal can be detected
-
Frequency (Hz)
-
Power (dB)
-
Power Variance
-
Probability of Transmission - 0.0 to 1.0 - probability that the source is transmitting at any given time.
Note
|
No real attempt is made to model real RF signals taking into account antennas, conditions, etc.. Rather the source dB is just reduced by the square of the distance between the source and the RF sensor. If a better simulation is needed, please update the method simulated_db in the class RFSourcesTable in the AMSxSimulationSupport.py module. |
6.7. ARES Deployment
Note
|
The python command is always assumed to be 'python'. Any redirects of the command to other python command (such as python3) should be made via the environment running ARES. |
There are several steps ones should take before running ARES:
-
Set the Mission and Network Fields of the $ARES/config/ARESAddresses.csv (see ARES Addresses)
-
Setup Iridium Account (If using the Iridium network for message passing)
-
Run ARESMgrUI
cd $ARES/src python ARESMgrUI
-
Select 'ir'
-
Update the Rockblock URL - It normally should be 'https://rockblock.rock7.com/rockblock/MT' (Warning: Only change the URL if you know what you are doing!)
-
Enter Iridium Rockblock Account and Password
-
-
Setup a Space-Track.org account
-
Setup the account at https://www.space-track.org/auth/createAccount
-
Run ARESMgrUI
cd $ARES/src python ARESMgrUI
-
Select 'st'
-
Enter Space-track.org Account and Password
-
-
Create a backup of the source code for use by the remote platform backup and recovery system backup and recovery system
-
Run ARESMgrUI
cd $ARES/src python ARESMgrUI
-
Select 'b'
-
-
If desired, create a ground command confirmation code. This code is required to send a command to a remote platform such as a spacecraft.
-
Run ARESMgrUI
cd $ARES/src python ARESMgrUI
-
Select 's'
-
-
If using message encryption - setup encryption keys (See Network/Message Security)
-
Adjust mission parameters - Several parameters are initially set for development and testing
-
There are several changes that need to be made to code prior to field deployment. This specific are mission-dependent but the following are a list of known changes.
-
Important
|
Missions should develop and maintain a mission and platform checklist! |
Completed w/ Date & Signature | Item | Action |
---|---|---|
Set Antenna Deployment Timer |
Change BOOT_DEPLOYMENT_TIMER_SEC constant in ARESConfig.toml to 1800 seconds. |
|
Review Configuration |
Review all settings in ARESConfig.toml |
6.8. Remote Node Configuration
See ARES Management and Recovery Subsystem for details on remote node configuration and operations.
7. Development
7.1. Development Overview
ARES is a set of software components designed to support the flight or field operations of a simple remote nodes such as CubeSats, UAVs, or field boxes.
Design Concepts:
-
Run on Raspberry Pi or desktop/server processors running Debian-based Linux such as Ubuntu, Mint, Raspberry Pi OS (Bullseye), and Windows WSL2/Ubuntu.
-
Note: ARES will run on native Windows 10/11 and macOS but some services, particularly those related to remote node operations and hardware may be limited.
-
-
Remote node software should be updatable in operations via the ACS messaging system
-
Software should be easy to development by non-CS students
-
Based on an app-based architecture running with multiple processes communicating via a message passing library and protocol
-
Message passing operations extend across both remote/flight processes and ground processes.
-
Primary Language: Python 3.11+ with libraries
-
Strong Use of Python annotated typing and code inspection tools
-
Minimal use of deep OOP design (where possible limit inheritance to a single level)
-
Use of tuples instead of lists when the set is immutable.
7.2. Naming Conventions
ARES users should follow the following naming conventions:
-
Modules (Source Python Files found in $ARES/src)
-
ARESxxxx - ARES wide software modules
-
ACSxxxx.py - ACS core modules
-
AMSxxxx.py - AMS core modules
-
APSxxxx.py - APS core modules
-
MISSIONNAMExxxx.py - Mission-specific modules where the mission name is up to 6 characters (A-Z, 0-9 starting with A-Z)
-
-
Documents ($ARES/docs)
-
ARESxxx - ARES documentation (usually only modified by ARES team)
-
MISSIONNAMExxx - Mission-specific documentation
-
7.3. File Structure
ARES software in stored in a single common directory structure. The structure consists of (not all directories are found in all case - particularly flight computers will not have directory associated with development and test):
$ARES Directory:
-
src - All python files including mission-specific ams apps, mission-specific aps sensors, and mission-specific aps reasoners
-
config - ACSAddrsses.csv files, default configuration files, and app-specific configuration files
-
installation - Installation files
-
resources - Additional resources
-
bin_linux, bin_pi0, bin_pi32, bin_pi64, bin_windows - External binaries required for ACS operations.
-
pass - Pass information used by communication simulators
-
sim - Simulation data
-
spice_kernels - Spice kernel files
-
-
test - Collection of python and other executables for testing various components on target platforms. Examples include OpenCV tests, Tensorflow tests, and specific hardware component tests.
-
depreciated - Collection of older code removed from source.
-
.git - Git repository
-
data
-
MMM - Contains specific data for the mission
-
xxx - Contain specific data files for the 'xxx' network including configuration files and communication queues.
-
nn - Contains specific data files for the node 'nn' for the network 'xxx'
-
log - contains the log and telemetry files for node 'nn'
-
nnaa - contains the data files for the app 'nnaa' for node 'nn' under network 'xxx'
-
acs_local_queue - ACS node local queue directory
-
acs_send_queue - ACS node send queue directory
-
acs_receive_queue - ACS node receive queue directory
-
acs_data_pool - ACS shared data pool directory
-
-
-
-
Other test and operating data files
-
7.4. Guidelines for Development
The general approach is to take ARES and extent it for your own mission.
-
Create a mission specific Gitlab branch (see Using ARES).
-
Modify $ARES/config/ARESAddresses.csv with mission name, network, and mission app definitions.
-
Modify existing source code as little as possible (this will make upgrading a mission to newer versions of ARES easier)
-
Add mission-specific node and app configuration control directories and files in the $ARES/config directory.
-
Add mission-specific modules in the src directory.
-
Add mission-specific documentation in the docs directory.
Below are some general directions for development based on the experience of the ARES developers:
-
ARES was developed on Linux Ubuntu 20.04+, Windows 10/11 via WSL/Ubuntu, native Windows, and macOS machines. It was tested on Windows 10/11 via WSL2/Ubuntu, Raspberry OS Lite (Bullseye), macOS, and Ubuntu Linux.
-
Coding Guidelines:
-
Apps should generally be names 'mission’App’type'.py or AMSApp’type'.py (Example: AURORAAppSH.py)
-
Use of typing in variable definition (example my_variable: int = 0). These are very useful to allow PyCharm to detect object methods while coding.
-
Use of PyCharm Inspections to detect possible problems before running the code.
-
-
IDEs and Debugging:
-
ARES is written in Python and code can be edited in any text editor.
-
However, use of an IDE with integrated code intellisense and debugging is useful. The ARES team uses JetBrains PyCharm and Microsoft Visual Studio Code (VSCode). Each have their pros and cons. PyCharm is probably a better editor for large programs (although VSCode works perfectly well) VSCode has easier support for remote WSL and Raspberry Pi SSH debugging
-
PyCharm (https://www.jetbrains.com/pycharm/)
-
Students can get the PyCharm professional version
-
-
Visual Studio Code
-
If you use Visual Studio Code, make sure to add "subProcess": True to the python debugger launch code to allow debugging of the ARES
-
Using VSCode on WSL - https://code.visualstudio.com/docs/remote/wsl-tutorial
-
Using VSCode to remotely work on a Raspberry Pi - https://code.visualstudio.com/docs/remote/ssh
-
-
Note
|
All source code line endings should be Unix-standard ('\n'). Many IDEs (including Pycharm) allow one to set the standard line endings. If so, and you are editing on Windows or macOS machine, set to Unix-standard ('\n') rather than Windows or macOS. |
7.5. Guidelines for Documentation
The documentation is in ASCIIDocs format with images (see ASCII Docs Appendix for more information).
-
Specifically, ARES uses ASCIIDoctor (https://asciidoctor.org/)
-
Document images are developed using LibreDraw (.odg files) or draw.io (.drawio files)
-
Images are exported to PNG format files in the img directory.
-
When exporting:
-
Select all objects in the page Select export from the file menu Select PNG Make sure 'selection' box is checked Make the name unique for the PAGE Save Make sure the 'interlace' box is NOT checked Make sure the 'transparency' box is checked
-
Updated images should have a version number and the ASCIIDocs file should be changed to reference the new version number. This allows easier tracking of differences.
-
-
To create HTML files, open a command shell, navigate to docs directory, enter:
asciidoctor XXXX.adoc
-
To create PDF files, follow
asciidoctor-pdf JPDD.adoc -a docinfo=shared -d book
-
There is a Generate_Docs.sh command that will generate HTML for all adoc files.
./Generate_Docs.sh
-
HTML can be converted to PDF using the print command in most browsers. For example, one can convert html to pdf via Firefox on Windows 10/11 by
Open Firefox (or other browser) Select file-> print, then print to PDF
7.6. ARES Testing
ARES provides a set of unit, integration, and regression tests.
Warning
|
Different missions will require different levels of testing (for example, to meet customer requirements). Missions may have to extend or replace the basic ARES tests to meet such requirements. |
To run the complete test:
-
Change the ARESAddresses and ARESConfig to the Test set
-
Run ARESMgrUI.py, x option, select Test - this will change the config to the test config
-
-
Run the unit test script
-
Linux/maxOS/Raspberry PI OS
cd $ARES/src chmod a+x test_ARES.sh ./test_ARES.sh
-
Windows
cd %ARES%\src test_ARES.bat
-
-
Run the Network Communications Test
7.6.1. Code Structures
ARES testing assume (really requires) the use of:
-
Use of type hinting
-
All variables should have a type hint
-
All method parameters should have a type hint
-
All methods should have a return type hint including → None for methods that do not return a value
-
-
Use of headers
-
All modules should have a header with a description
-
All classes should have a header with a description
-
All methods should have a header with a description
-
All method parameters should be listed with a :param in the header
-
Use of the :return in the header is only needed if the return is not clear from the module return type hint
-
-
-
Code Inspections - Must pass some form of python conde inspection that tests utilizes type hinting to find possible errors.
-
Pycharm Code Inspections
-
Note
|
Use of hinting and code inspections reduce possible problems such as passing an incorrect type. |
Warning
|
There are cases where you might want to take advantage of python duck-typing or dynamic-typing. Using them is perfectly valid but users should know when and why they are being used. |
Warning
|
ARES test scripts assume that the code uses hinting and passes code inspection. Therefor, most test cases do not test for incorrect parameter type passing. |
7.6.2. Unit Tests
ARES provides the following unit test scripts:
-
test_ACS.sh - Executes all unit test scripts for ACS on Linux/macOS
-
test_ACS.bat - Executes all unit test scripts for ACS on Windows
Warning
|
Failure to change the network name may result in collisions with other testers. |
Warning
|
DO NOT CHANGE THE MISSION NAME |
Warning
|
If you interrupt testing, check the ARESAddresses.csv file. For some tests during testing, the ARESAddresses.csv file may be renamed ARESAddresses_hold_for_testing.csv and ARESAddresses_test_do_not_delete.csv may be renamed ARESAddresses.csv. If you interrupt the testing, you may have to manually rename these files back to their original names. |
These call the following python "unittest" modules. You can directly execute these via the command:
cd $ARES/src python -m unittest -vf test_XXXX # Example python -m unittest -vf test_ACSUtils
Module | Test |
---|---|
ACSAddresses.py |
test_ACSAddresses.py |
ACSApp.py |
|
ACSAppHandler.py |
test_AppHandlerManager.py |
ACSAppManager.py |
test_AppHandlerManager.py |
ACSAppZM.py |
|
ACSAppZR.py |
|
ACSAppZX.py |
|
ACSBufferFloat.py |
test_ACSBufferFloat.py |
ACSBufferHistory.py |
test_ACSBufferHistory.py |
ACSBufferInt.py |
test_ACSBufferHistory.py |
ACSDPRecMR.py |
test_ACSDPRecMR.py |
ACSEncryption.py |
test_ACSEncryption.py |
ACSInterface.py |
test_ACSInterface.py |
ACSInterfaceUtils.py |
test_ACSInterfaceUtils.py |
ACSKeychain.py |
test_ACSKeychain.py |
ACSLORI.py |
test_ACSLORI.py |
ACSMemory.py |
|
ACSMessage.py |
test_ACSMessage.py |
ACSMessageHub.py |
|
ACSMessageUtils.py |
test_ACSMessageUtils.py |
ACSPlatform.py |
Static Module - no unit tests |
ACSPlatformState.py |
test_ACSPlatformState.py |
ACSSpice.py |
test_ACSSpice.py |
ACSSpiceUtils.py |
test_ACSSpiceUtils.py |
ACSStripChart.py |
|
ACSTaskScheduling.py |
test_ACSTaskScheduling.py |
ACSTime.py |
No Unit Test |
ACSUIUtils.py |
|
ACSUtils.py |
test_ACSUtils.py |
ACSUtilsBytesIO.py |
test_ACSUtilsBytesIO.py |
ACSUtilsBinaryIO.py |
test_ACSUtilsBinaryIO.py |
ACSUtilsOS.py |
|
ACSvARESConfig.py |
test_ACSvARESConfig.py |
ACSvBase.py |
Static Module - no unit tests |
ACSCodeMgr.py |
|
ACSvARESFileRecord.py |
test_ACSvARESFileRecord.py |
ACSvHander.py |
|
ACSvQueue.py |
test_ACSvQueue.py |
APSApp.py |
|
APSDataRFScan.py |
|
APSDataRFSequence.py |
|
APSFrame.py |
|
APSMemoryER.py |
|
APSMemoryEROps.py |
|
APSMemoryERRelationship.py |
|
APSModelMPNN.py |
|
APSModelMPNNSklearn.py |
test_APSModelMPNNSklearn.py (Part of test_ARESTF.sh/test_ARESTF.bat) |
APSModelMPNNTFDirect.py |
test_APSModelMPNNTFDirect.py (Part of test_ARESTF.sh/test_ARESTF.bat) |
APSModelMPNNTFDirectMNIST.py |
test_APSModelMPNNTFDirectMNIST.py (Part of test_ARESTF.sh/test_ARESTF.bat) |
APSModelMPNNTFLite.py |
test_APSModelMPNNTFLite.py (Part of test_ARESTF.sh/test_ARESTF.bat) |
APSModelMPNNTFParameter.py |
test_APSModelMPNNTFParameter.py (Part of test_ARESTF.sh/test_ARESTF.bat) |
APSModelRunningMean.py |
|
APSReasoner.py |
|
APSSensors.py |
|
APSSimulationSupport.py |
|
APSTypes.py |
|
APSUIUtils.py |
|
APSxMemoryEREntityEF.py |
|
APSxMemoryEREntityEN.py |
|
APSxMemoryEREntityET.py |
|
APSxReasonerEF.py |
|
APSxReasonerEN.py |
|
APSxReasonerET.py |
To run unit testing:
-
Run the test script:
-
Linux/maxOS/Raspberry PI OS
cd $ARES/src chmod a+x test_ARES.sh ./test_ARES.sh
-
Windows
cd %ARES%\src test_ARES.bat
-
7.6.3. System Tests
The distributed nature of ARES makes higher level automated testing complicated. It is often far easier to run various networks and manually monitor the results and/or analyze the base station log, telemetry, and memory results.
Network Communications Test
The network communications test is used to test both ACSApp methods and operations as well as the various ACS message-based communications.
The Network Communications Test uses the AMS distributed observation example project.
Note
|
This test is not included in the test_ARES master script. |
To run the network communications test:
cd $ARES/src python -m unittest -vf test_NetworkComm.py
Warning
|
The network communications test use the mission and network name in ARESAddresses.csv. You may want change the network name to something unique to avoid issues with others in the mission using the same mission and network names for operations or other testing! |
Network Communications Timeout Test
This test checks if messages are resent after a period if they are not acknowledged. The typical timeout period (defined in ACSPlatform.ACS_MESSAGE_RESPONSE_MAX_WAIT_TIME) is longer than a day. However, the test waits for longer than the timeout period so one may want to temporarily change this value before running the test.
The Network Communications Timeout Test uses the AMS distributed observation example project.
Running this test involves running for the length of the ARESConfog.toml ACS_MESSAGE_ACK_TIMEOUT_SEC. Since this value is usually set pretty high for real missions (the default is 5 days), it is recommended that the value be set to a much smaller number for the test and then returned to the original value.
Note
|
This test is not included in the test_ARES master script. |
To run the network communications test:
cd $ARES/src python -m unittest -vf test_NetworkCommTest.py
Warning
|
The network communications test use the mission and network name in ARESAddresses.csv. You may want change the network name to something unique to avoid issues with others in the mission using the same mission and network names for operations or other testing! |
7.7. Non-ARES Nodes
Not all nodes in a network must be based on the ARES framework software. Nodes can be written in other languages, based on unique platforms, etc. The only requirement is that they meet the following specs:
-
Based on a concept of an addressable "node" and "app" architecture (a node can consist of only one app).
-
Exchange messages that meet the ARES message standard.
-
Coordinate node/app addresses with the rest of the network.
-
Interface via the ACS Message Hub (AWS SQS service) or via defined links (such as a radio).
-
Implement the message-based file transfer specification if the file passing is to be handled.
Please see the following sections:
8. Architecture
ARES is a network-based system consisting of a set nodes running on various heterogeneous platforms. These nodes communicate via a message-based system running over a variety of platform links including radios, satellite networks (example Iridium), and the internet (via AWS SQS services). Nodes are made up of apps that running independently of each of communicating via messages and a shared data pool. App controls are handled only via flags and values in the shared data pool. All nodes share the same code base ($ARES/src) and differ only in configurations; available hardware; and which apps are run.
Structure:
-
Network - Collection of Nodes
-
Node - Collection of Apps
-
Runs on a platform with specific OS and hardware
-
Configured by platform environment variables, mission-specific $ARES/config/ARESAddresses.csv lines, and mission-specific (or node-specific) ARESConfig.toml
-
Includes one MCP (Main Control Program App) for launching and controlling node apps
-
Includes one ACS Manager App (AMA) for handling message communications and file transfer
-
May include one or more link apps for handling message communications via radio and satellite networks
-
May include one or more apps for interfacing to hardware devices such as I2C buses and cameras
-
May include one or more APS apps for handling reasoning
-
Has a data pool for sharing flags and data values between apps
-
Has a set of message queues for sharing messages between apps
-
-
9. ARES Core Subsystem (ACS)
9.1. API
ACS provides the following interface modules:
-
ACSPlatform,py - Provides a set of ARES-wide constants and enumerations
-
ACSInterface.py - Interface class for accessing ACS communications.
-
ACSAddresses.py - Provides access to the $ARES/config/ARESAddresses.csv table
-
ACSInterfaceUtils.py - Provides additional functions for using ACSInterface, ACSMessage, and app addresses.
-
-
ACSMessage.py - Holds an ARES/ACS Message
-
ACSMessageUtils.py - Provides a set of methods for converting message to/from byte streams, bit streams, and ascii. Designed for support of specialized link apps.
-
ACSAppsManager.py - Manager for ACS apps - used by MCP apps to manage other node apps.
-
ACSAppHandler.py - Handles a single ACS App.
-
-
ACSMemory.py - Provides tools to access the ARES SQLite3 Node Database. Each node has a single node database. Primary purpose is to support APS entity-relation models but additional tables and uses can be added. The node database is safe to share between apps on a node making it another method for sharing data between apps.
-
ACSMessageHub.py - Provides access to the ACS Message Hub. It is primary for use within ACS and for use by specialized AMS app links.
ACS provides the following self-contained support modules:
-
ACSUIUtils.py - A set of UI utilities
-
ACSUtils.py - Collection of basic utility methods
-
ACSUtilsBytes.py - Collection of methods to read/write data to and from bytes
-
ACSUtilsIO.py - Collection of methods to read/write data to and from a binary file
-
ACSUtilsOS.py - Collection of methods to interact with the operating system.
-
ACSTime.py - Encasulates time.time - allowing ARES code to adjust time for simulations. Should be used instead of calls to time.time() Access is included in ACSInterface.Interface instantiations.
-
ACSEncryption.py - Provides a way to encrypt/decrypt a set of bytes. Also provides a way to generate and AES key
-
ACSLORI.py - Provides a class to holding and converting Location/Orientation/Roll Rate data
-
ACSPlatformState.py - Provides a data record for passing data around
-
-
ACSDPRecMR.py - Provides a data pool record for AMR data
-
ACSSpice.py - Provides access to NASAs SPICE Library
-
ACSSpiceUtils.py - Provides methods for getting TLE files from space-track.org
-
ACSStripChart.py - Provides simple strip-chart displays
-
ACSBufferHistory.py, ACSBufferFloat.py, ACSBufferInt.py, ACSBufferVector.py - Set of modules that store the last x time dependent data In addition, ACS provides the following pre-defined apps:
-
ACSAppZM.py - ACS Manager
-
ACSAppZR.py - ARES Management and Recover App
-
ACSAppZX.py - ARES Software Watchdog Time App
Finally, ACS provides the following base classes:
-
ACSApp.py - Base class for all apps including AMS apps (Base of APSApp too but APS users should subclass APSApp)
-
ACSLinkSimulationSupport.py - Provides tools for link simulation support.
All ACS packages named ACSv… are for internal APS, ACS, and ARESUI use only.
9.2. ACS Components
ACS includes of the following components:
Component | Interface Module | Description |
---|---|---|
Apps Subsystem |
ACSApp.py |
Base class for all ARES apps. |
App Manager |
ACSAppManager.py |
Provides a class for managing ARES apps. Used primarily by the MCP apps for a given node. |
Communications Interface |
ACSInterface.py |
Interface class for accessing ACS communications. |
Communications Handler |
ACSAppZM.py |
ARES app that handles all communications routing and handling for a given node. A node must have a communications handler if using ACS to communicate between nodes. The handler handles routing messages from the local bus to the link interface apps. |
Utilities Modules |
ACSUtilsXX.py |
General utilities methods including error handling access to OS and IO functions. |
Platform Module |
ACSPlatform.py |
Provides platform-specific settings. |
ARESAddresses |
ARESAddresses.csv |
Found in $ARES/config. This file holds the mission node/app configuration. |
ARESConfig |
ARESConfig.toml |
Found in $ARES/config. This file holds the node configuration. |
Message Hub |
ACSMessageHub.py |
This provides an easy way to share messages between apps connected to the internet (the alternative is to create dedicated link apps for communication between nodes on the internet). |
9.3. App Addressing
The core of ARES mission networks is an app address. All apps within a network have a unique 4-character address:
-
Node address: Unique within a network, 2 characters:
-
First character - A-Z
-
Second character - A-Z, 0-9
-
-
App type address: Unique within a node, 2 characters:
-
First character - A-Z
-
Second character - A-Z, 0-9
-
The address is used to indicate where the message comes from and where it is to go. Apps just need to submit a message via an instance of the ACS interface class with the recipient’s app address to send a message to that app. The app may be on the same node (i.e. the same remote platform or the ground station) or on the other node in which case it will be routed via the node link (example radio link).
ACS depends on a few 'predefined' app type addresses that MUST be used.
-
'ZC' - A node MCP app (for example, node 'GS', the MCP app would be 'GSZC')
-
'ZM' - A node ACS Manager app (for example, node 'GS', the MCP app would be 'GSZM')
-
'ZI' and 'ZJ' - A node Iridium radio link apps
-
'ZR' - A node ARES management app
-
'ZX' - A node ACS Watchdog app
Finally, there are some pre-defined app addresses:
-
'ZZUI' - ARES User Interface app address
9.4. ACS Apps Subsystem
The App subsystem provides a set of tools for creating and managing apps. All apps are children of the ACSApp class in the acs package. Apps then overrides a set of methods to provide app-specific processing.
There are several key concepts:
-
Mission - Mission is defined as the total time the mission operates.
-
Session - Sessions are defined as the time from app startup to app shutdown.
-
App State Files - All apps have an app state file.This file is used to save app data from session to session.
Apps operate in a simple session loop operating a step at a time.
Apps can be started in two ways: (1) A call to the app’s 'app_run' method with a dictionary set with the app’s arguments or (2) via a command line call in the form 'python App app-arguments'.Apps have the following arguments:
Argument | Description |
---|---|
address
|
App address |
Reset
|
|
Start Delay
|
Delays the start of app operations by x seconds. This is normally only used by ARES itself when restarting the application to allow the starting process to complete shutdown before the new app begins operating. |
Revert
|
Revert ARES to the backup copy if available. (See ARES Management and Recovery Subsystem (AMR)) For use by shells to revert if ARES crashes multiple times. |
9.4.1. App Reset
One of the app arguments is "reset". This clears various app data including:
-
Delete app state files
-
Clear app local log file
-
Clear the send and receive files
If the app is an MCP, it also:
-
Clears any incoming messages to this node from the message hub.
-
Clears any telemetry and/log files
-
Clears local, send, and receive queues
-
Clears local data (including the node memory)
9.4.2. MCP App Setup
Apps are created and managed by the MCP app. Below is a typical setup in an MCP app:
# Define child apps # Override ACSApps _child_apps variable with an actual AppsManager # This will also create a manager pool for sharing data pool values and set this in ACSInterface self._child_apps: ACSAppsManager.AppsManager = ACSAppsManager.AppsManager( in_acs=self._acs, in_use_manager_pool=True, in_max_termination_time=self._acs.configs['SHUTDOWN_MAX_APP_TIMER_SEC']) # Add ACS Manager App self._app_zm_address = self._acs.this_app_node_address + ACSPlatform.APP_TYPE_ADDRESS_ACS_MANAGER my_app_module_name = self._acs.addresses.module_name(self._app_zm_address) my_app_module = importlib.import_module(my_app_module_name) self._child_apps.add( in_reset=self._reset_app, in_app_address=self._app_zm_address, in_run_method=my_app_module.app_run ) ... # add remaining apps
9.4.3. ACS Architecture
ACS operations is handled by a combination of the ACSApp base case, specific apps, ACSInterface class and an ACS communications manager (ACSAppZM). In addition, some nodes also include special link apps that handle communciations across non-internet based links such as a radio. ACS is handled with two apps on each node - an ACS Management App (ACSAppZM) and some form of node link app (typically a radio link). In the diagram below, it shows a ground station management app and a remote node ACS management app. Other apps interface to the ACS via an instantiation of the ACSInterface class.
9.4.4. App Controls
Apps can run independently or dependently. Independent apps are started from a command line or IDE and run until halted. Dependent apps are child processes of independent apps. The are started, controlled, and halted by the parent app. Node MCP apps are an example of an independent app. Other node apps are usually dependent apps and are controlled by the MCP.
Dependent apps can be controlled in several ways:
-
ACS Shared Data Pool Values/Flags
-
ACS Messages
-
Parent App Commands
-
Start - Start a child app as a new OS process.
-
Run - Resume operations of a paused child
-
Pause - Pause the operations of a child app at the start of a step
-
Terminate - Terminate the operations of a child app at the start of a step. Allows the child app to cleanly shutdown.
-
Kill - Kill a child app OS process. Does not allow the child app to cleanly shutdown. Rather just halts it where ever it is at.
-
Parent apps can control the operations of a child app using a couple of patterns:
-
"Start/Kill/Start/Kill…/Kill"
-
The app is started and stopped at an OS level (one could replace Kill with Terminate to allow the app a clean termination).
-
Advantage: The child app does not use memory while dead.
-
Disadvantage: Longer startup times each time the app is restarted.
-
Depending on the app, it also may have a spike in memory as it starts up.
-
-
"Start/Run/Pause/Run/Pause…/Terminate"
-
Child apps starts and then runs/pauses. The app retains its state and memory.
-
Advantage: Faster response time as the app does not have to do a complete OS startup.
-
Disadvantage: Child app still holds memory while in the paused state.
-
This is the approach used by ARES MCP apps (APSApp, AMSAppSCZC, etc.)
-
Dependent apps support the following states:
-
READY - App is ready to run but not yet started.
-
RUNNING - App is running
-
PAUSED - App is paused - in memory and waiting at the app step
-
TERMINATED - App is terminated by a termination command
-
KILLED - App was killed by MCP
-
DEAD - App is dead but not by a termination command
Dependent apps can be commanded to:
-
Run - App should run
-
Pause - App should pause
-
Terminate - App should terminate
Apps are commanded using shared pool flags:
-
XAC_pause_appaddress - Command the app to run
-
XAC_terminate_appaddress - Command the app to terminate
Apps are share their state with the shared data pool value:
-
XAS_appaddress - Current state of app with the given address
9.4.5. ACS App Internals
The base class for ACS Apps is ACSApp.py. The basic idea is that a specific mission would create a child app from this ACSApp base app. The basic flow is show below (Italicized methods are overridden methods for child apps):
Run
-
_base_session
-
_base_session_init
-
load_app_state
-
process_loaded_state_lines
-
-
session_init
-
-
_base_step
-
step_ok
-
_base_handle_incoming_messages
-
_base_terminate_app
-
handle_incoming_app_messages
-
-
step
-
save_app_state
-
get_state_lines_to_save
-
-
_base_check_for_termination
-
_base_terminate_app
-
termination_cleanup
-
-
-
_base_terminate_app
-
termination_cleanup
-
-
-
-
_base_terminate_app
-
termination_cleanup
-
9.5. Geospatial Support
ARES includes a variety of astodynamics and geospatial support libraries and modules. These include libraries like cartopy, astropy, photutils, geopy, pygeodesy.
9.5.1. ACSLORI
ACSLORI provides a general set of classes for handling location and orientation data in:
-
ECI (Earth-Centered Inertial) Cartesian Coordinates (XYZ in Km)
-
ECEF (Earth-Centered, Earth-Fixed) Cartesian Coordinates (XYZ in Km)
-
ECEF (Earth-Centered, Earth-Fixed) Latitudinal Coordinates
-
lat is the latitude in decimal degrees (-90.0 to 90.0)
-
lon is the east longitude value in decimal degrees (0.0 to 360.0),
-
alt is the altitude in Km from the earth’s center
-
ACSLORI includes:
-
Set of immutable classes for each type of location and orientation.
-
Set of classes for location and orientation that automatically converts between the various frames.
-
Methods for converting between frames.
-
Methods for encoding/decoding to byte streams
-
Methods for converting to/from CSV text format.
-
Methods for computing basic data such a distance, angle of rotation, and local solar time at a given location.
9.5.2. ACSSpice
ARES also includes NASA’s NAIF SPICE Library (https://naif.jpl.nasa.gov/naif/) accessed via Andrew Annex’s SpiceyPy python interface (https://spiceypy.readthedocs.io/en/main/). This powerful library provides methods for computing a wide range of data about astrodynamics and spacecraft. Examples include using SPICE to compute the location of a spacecraft in orbit or the location of the sun relative to a location on the earth. SPICE is based on a set of "Kernels" which define spacecraft, space objects (such as planets), and time information. SPICE kernels necessary for ARES is found in $ARES/resources/spice_kernels. ARES wraps many of the SPICE library function in ACSSpice.py which includes management of the SPICE kernels necessary for computing spacecraft data. An instantiation of ACSSpice (and NASA NAIF SPICE) is found in ACSInterface allowing users to access SPICE without worrying about managing kernels.
Warning
|
Many of the ACSSpice functions include a precision parameter which limits the precision of output arrays. This defaults to 5 decimal places. Users should take particular care with computer floating-point math operations on astrodynamics data. One can get very precise numbers that are not real, rather a product of computer floating point operations. This can be come a big problem, for example, when converting between coordinates or frames. Thus, the inclusion of a precision parameter. |
9.6. Messages
ACS handles messages on a variety of links with varying challenges. One should understand:
Warning
|
Message may arrive out of order! Do not assume that messages will be received in the order sent. |
Warning
|
There may be occasional duplicate messages (i.e. messages delivered more than once). |
Warning
|
Messages may be lost (See below - Data Integrity) |
Warning
|
Messages may be corrupted (See below - Message and Shared Data Pool Integrity) |
Warning
|
Messages are persistent, i.e. they survive the app sessions (and processor reboots). To clear messages in the queue and shared data values on a session restart, one launches the node MCP app with a reset flag or have the MCP (or other app) clear the queues and/or shared data values directly. |
Warning
|
Messages sent via the ACS Message Hub remain available for four days after sending. This means that recipient nodes that are off-line when the message is sent, will receive the message if the node comes back on-line within four days. (Four days is the default value - it can be adjusted up to fourteen days - see ACS Message Hub) |
Important
|
High radiation or other environments with high error rates should include 'higherror' as a option in the ARESHardware environment variable. This will force ARES to add extra protections against errors in messages and shared data pool values (at the cost of some performance). |
All ARES communications between apps is done via "messages". Each message contains the necessary commands, sizes, and routing data needed for end to end communications.
ARES messages are binary messages. The total length is set by the maximum message length that the network link apps (example, a radio between a remote node and a ground station) can handle (and set in code). See Internal Message Structure for details on message length, message overhead, encryption overhead, and effective message content length.
Messages are routed using app addresses that indicates the recipient of the message.
Message can also include a 1 character "command". This command is interpreted by the message recipient.
The messaging subsystem includes several "standard" commands including logging messages to the ground and sending files.
9.6.1. Message Acknowledgement
See the message table.
Most messages involved some form of "acknowledgement" to let the sender know that the message was received and understood.
The are two major exceptions. First is that logd messages do not expect an acknowledgement. Second, if a message is received at a node and then routed (broadcast) to other nodes via the routing table in ARESAddresses, the original node receiver acknowledges the message but the nodes subsequently receiving the messages do not. This generally works as routing nodes usually involved a special link like a radio link while the subsequent nodes are linked to the original node are over the internet which increases the reliability.
Finally, most messages have a way for the sender to know there was a failure to receive a message - normally a timeout of not receiving the acknowledgement message. This usually results in a retransmission of the message.
9.6.2. Message Priorities
Messages can have one 4 priorities. Higher priorities messages should generally arrive sooner than lower priority messages.
Priority | Description |
---|---|
High |
Highest priority messages. Typically, related to platform and/or payload issues needing human intervention. |
Normal |
Normal operating messages. Typically, related to platform operations and/or logging. |
Data |
Messages typically related to payload operations. |
Low |
Lowest priority messages where timing does not make much difference. A typical example will be file transfers or debug logging |
Note, acknowledgement messages typically have the same priority as the original message.
9.6.3. Data Integrity
Data on board a remote platform is often critical to remote platform operations and may be subject to environment or other errors (for example, radiation errors on a spacecraft).Although the probabilities are low, messages and shared data values can experience errors. To prevent bad data from being passed around, the ACS uses checksums on all data files, messages, and shared data values. ACS also uses a "double-buffered" system that stores and passes two copies of all data files, messages, and shared data. This significantly reduces the chance of bad data being passed between apps. But it does raise the question of how to handle cases of bad data being detected. Therefore, ACS cannot guarantee message delivery. If both copies of a message or shared data value are determined to be corrupted, the message or shared data value is not delivered. In addition, messages passed between nodes (i.e. between a remote node and a ground node) are subjected to even more errors due to transmission errors. These errors are address through a combination of send/acknowledgement, checksums, and, in the case of file transfers, MD5 checksums.
In summary, ACS takes many steps to improve both delivery and integrity:
-
All message/shared data values are handled using a checksum.When a message is sent, a checksum is generated and included in the message. When a message is received, it is checked against the checksum.If a local message fails, the message is not delivered.
-
All local messages/shared data values are sent with two copies.If the primary copy fails reading or checksums, the secondary copy is used. For a message/posted value not to be delivered, both the primary and backup must fail.
-
All messages to/from nodes are acknowledged.Failure to pass a checksum or to acknowledge a message will result in a retransmission request. However, multiple failures will result in the message being lost.
-
Individual apps may add a message/acknowledgement mechanism for critical messages.
Warning
|
In normal operations, individual messages errors are not reported. Rather a count of errors is maintained in each instance of ACSInterface. The count summarized the number of read/write errors since the ACSInterface was instantiated. The count can be reset with a call to ACSInterface.clear_number_read_write_errors. Individual message error reporting can be turned on by setting ACSPlatform.ACS_LOG_MESSAGE_ERRORS but this flag should only be used in testing. |
9.6.4. App Commands
Each message may contain a specific "app-command". The command is used by apps to interpret what to do with a message. The app command consists of 2 upper-case alphanumeric characters (A-Z, 0-9).
9.6.5. Sending Files
Files may be sent from one app to another app by calling the appropriate SCSInterface method. Once the file has been received on the target apps node, a message will be sent to the target app that the file is available. Note:
Note
|
It is up to the apps involved whether they have any form of acknowledgement that the file has been received. |
9.6.6. Logging
Every app has places ways to "log" message strings:
-
Console - A message string may be displayed on the console (if it exists).
-
Local Log - Every app has a local log used to store message strings from the app itself.
-
Node Log - Every node also has a node log files used to store message strings that have been sent to it as log messages from other apps. There is a primary node log which lists all received log messages as well as one for each sending app. This makes it easy to review the log from one app. The node log files are in CSV format and can be viewed in Excel or any text editor.
-
Although every app can write to the node log, the only one that usually matters is the node log of the ground station GSZC app. This is the log that the ground station user interface shows. Typically, other apps send their log messages to GSZC. An app user can send them someplace else by changing the value in the $ARES/config/ARESAddresses.csv table or by overriding this value by setting the app argument "log-to-app" to something besides GSZC.
-
Logging support three types of log messages:
-
Console - A message string may be displayed on the console (if it exists).
-
Log - This logs the message string on the console, in the local log file, and sends it to the node log via the app specified by the "Log-to-App" address, typically GC.
-
Logd - This sends the message to the console and, depending on the app arguments, to the local log file and remote app. These messages are usually useful for debugging or closely monitoring an app but are usually not included in the log files during normal operations. A useful command is to change the logd state allowing the ground station to change the logging of a remote app.
-
Logl - This sends the message to the console and, if available, to the local log file.
Note
|
Log messages are acknowledged messages whereas logd messages are not. |
9.6.7. Message Encryption
Inter-node messages may be encrypted to improve message security. (See Network/Message Security for a discussion of ARES security and the use of encryption keys.
9.6.8. Internal Message Structure
Note
|
As of V3.3, the max message length was 270 bytes. This is set as the max message length for Iridiums is 270 bytes. UHF radio links use a bytestream so there is not fixed message length. Internet ACS Message Hub links are limited to ~256KB including SQS header (which means the actual messages must be smaller) |
Warning
|
Encrypted messages include a 28 byte overhead. So the pratical message length is dropped to 242 bytes |
The effective message length:
-
Total Length - 270 bytes
-
Message Header Length - 42 bytes
-
AES256 Overhead Length - 28 bytes
-
Message Content Length - 200 bytes
Messages are defined in ACSMessage.py. The message consists of a block of bytes as defined in ACSOnlyBase.py. Most message fields are fixed but a few are variable length. In such cases, the variable length field is a '|' separated string.
Bytes | Field |
---|---|
4 |
To address (4 Characters - "A-Z", "a-z", "0-9", "_" for 2nd and 4th characters) |
4 |
From address (4 Characters - "A-Z", "a-z', "0-9", "_" for 2nd and 4th characters) |
2 |
App Command - (2 Characters - "A-Z", "0-9", "_" for 2nd) - It is up to the addressee to interpret the meaning of the command. In general:
(Pre-defined values can be found in ACSPlatform, AMSConstants, APSConfiguration) |
8 |
Sent time stamp (packed double) (time in float seconds from the local time.time()) |
1 |
Message params (packed Integer) - Internal ACS use only
|
1 |
Internal Message type (1 Characters - "A-Z", "0-9") - Internal ACS use only (see Internal Message Commands) (Defined in ACSPlatform.py) |
4 |
Message ID field (packed Integer) - 0 to 2,147,483,647 - Internal ACS use only |
4 |
Referenced Message Id (packed Integer) - 0 to 2,147,483,647 - Internal ACS use only For 'X' file packet messages - holds the packet number |
4 |
Reference From Message Address - Internal ACS use only (4 Characters - "A-Z", "a-z", "0-9", "_" for 2nd and 4th characters) |
8 |
Checksum field (packed long) - Internal ACS use only |
2 |
Reserved for future use by ACS |
28 |
AES Encryption Overhead |
200 |
Message contents if encrypted |
Figure 9 - Internal Messenger Communications
Message Type | Description | Key | ACK | Failure |
---|---|---|---|---|
A |
Acknowledge Message Message used to acknowledge the receipt of any message requiring acknowledgement (See ACK field) Contents: Bar separated list:
|
Cmd Referenced ID Referenced From Address |
None |
None |
Q |
Standard Message |
Cmd Message ID |
Ack Return Message Except when forwarding messages to other nodes. See Message Routing. |
A |
K |
Non-Acknowledged Standard Message |
Cmd Message ID |
None |
- |
M |
Request message |
Cmd Message ID |
Ack Return Message |
A |
N |
Response message |
Cmd Message ID |
Ack Return Message |
A |
X |
File Data Packet - "Chunk" of a base64 file Contents: Packet in Base64 Encoded Byte String |
Cmd Message ID Packet Position |
None |
R |
Z |
End of File Message - Sent after all data packets. Bar separated list:
|
Cmd Message ID |
R Return Message |
R |
R |
File Received Message - May be:
Contents: Bar separated list:
|
Cmd Message ID |
Ack Return Message |
A |
C |
File Cancel Message - Cancel the reception of a file |
Cmd Message ID |
Ack Return Message |
A |
F |
Send File - Send a file from a location to another node Contents: Bar separated list:
|
Cmd Message ID |
No Ack |
? |
9.7. Networks
ACS networks are based on inter-app communications. A network is a collection of nodes operating for a specific purpose. ARES defines a network as all apps/nodes that are part of the same mission and network. The mission and network are defined in the ARESAddresses file (see ARES Addresses) A mission is the total program. The network is a defined topography for that mission. This may be a mission operational network or a test environment network. Messages cannot be shared between networks. Networks also define the data storage for apps on a given node - all data for a network is stored under the data directory under the network name.
ACS networks consist of:
-
Apps - Basic process handling one or more actions (see Apps Subsystem)
-
Local Queue (also known as local message bus) - used for passing messages between apps on the same node.
-
Shared Data Pool - used to store shared data values to sharing between apps on the same node
-
Messages - All ARES communications between apps is done via "messages" (see Messages). Each message contains the necessary commands, sizes, and routing data needed for end to end communications.
-
Nodes - a collection of apps working in concert on a specific platform. Examples: Ground Control Station, Ground Radio Node, or Spacecraft Node
-
ACS Interface Class (ACSInterface.py) - Python class used by Apps to access the ACS network, get and send messages, and post/access posted data values.
-
ACS Manager Apps (ACSAppZM.py) - All nodes have an ACS manager app than handles various ACS network communication activities including file transfer.
-
MCP App - All nodes have an "Main Control Process" (MCP) app that handles app controls such as starting, stopping, and pausing apps.
-
ACS Message Hub - Most inter-node message passing is handled by the ACS Message Hub. Messages between nodes connected to the internet can be passed by the ACS Message Hub. The ACS Message Hub consists of a set of queues, one for each node in the network. Messages are placed in the appropriate queue by an app (typically the ACS Manager App pulling messages addressed to apps on other node from the local queue and placing in the appropriate queue)
-
Link Apps - Link apps handle special links between nodes such as UHF radio links and Iridium links.
ACS is designed to be adapted to multiple configurations.
Warning
|
ARES is not a high-security network but does have security features to reduce the potential for compromised communications. Please see Platform and Node security and Message Encryption. |
9.7.1. Platform and Node Security
ARES is primarily programmed in python and consists of a single unified code-base. Although python has several advantages (particularly for work with engineering-oriented student projects) it is an interpreted language. As such, access to the ARES platforms allows a person to get complete access to the code. Additionally, account and key data is stored on the platform. Althougth the account and key data is scambled to prevent easy reading of the keys, access to the code provides the tools to descamble the key data. All of these elements means that ARES security is dependent on controlling access to the platforms.
-
Access to platforms should be secured using strong passwords
-
Access should be limited
-
Where possible, control nodes such as ground control nodes and ground radio nodes should be in a secure enviroment.
9.7.2. Command Security
Ground Control Nodes (i.e. nodes that send commands to remote platforms such as spacecraft) can have: a 'Command Confirmation Code'. This code is then required to be entered when sending a command. The code is stored in the ARES Keychain and set/updated via ARESMgrUI.py.
Warning
|
The ground confirmation code is not a real password protection, rather it is just a method for introducing a "think about it" step in sending ground commands. |
9.7.3. Network Topography
The network topography is the layout of nodes/apps and how they connect. The network topography is normally defined by the ARESAddresses file (see ARES Addresses). This file defines all the apps in each node in the network along with the app address and app parameters.
In general, ARES is designed with a standard network topography. All nodes are assumed to have the same topography defined in the ARESAddresses file (specifically the node addresses, modules, node types, and various apps-specific forwarding and control data for link apps).
There are some points that mission should consider:
-
Know apps (i.e. apps defined in the ARESAddresses file) can be on or off at any given time, i.e. not all apps in a network topography need be running at the same time. Apps can join or leave the network (i.e. run or shutdown) any time. In most cases, apps rejoining within 4 days (up to 14 days) will normally mean that it will receive all messages sent to it over the previous 4 days (see ACS Message Hub).
-
Unknown node/apps, i.e. nodes/apps not defined in the local ARESAddresses system can send messages to other node/apps via the ACS Message Hub however, how such messages are handled is depending on the specific node/app. An example might be an unknown AEON memory node (see AEON SDD) could join the network and send messages to other AEON nodes. But such a node would not receive messages from AEON observation nodes as those nodes would not know that the AEON memory app exists.
-
There is no security system to prevent 'spoofing' of know apps, i.e. malicious nodes can act in the network using the same node/app addresses as a legitimate node/app.
9.7.4. ACS Message Hub
The ACS Message Hub provides an easy way to pass messages between nodes connected to the internet
Note
|
Nodes can avoid using the message hub by providing their own link apps - this may be useful in cases where one does not want to rely on a central location or where messages have sensitive information). |
The message hub consists of a set of 'queues', one for each node in the network. Normally, the ACS manager app on a node takes messages addressed to apps on another node from the local queue and places them in the appropriate queue. For example, a message addressed to GRZC would be placed in the GR queue. On the GR node, the GR ACS manager app would take the message from the GR queue and place it into the local queue to be read by the addressed GR app.
Note
|
Message passing in ARES is a 'pull' system, i.e. the message resides in the local queue or ACS Message Hub queue until requested by the addressed app. It is not a 'push' system. The advantage is that the addressed app need not be up and running when the message is sent. Rather, it can be sent now and not received until the addressed app is ready for it. |
Note
|
The ACS Message Hub will only retain messages for 4 days. Any messages not retrieved in 4 days (345,600 seconds) will be deleted. This value can be adjusted by stopping all nodes, modifying DEFAULT_MESSAGE_HUB_RETENTION_SECS up to 14 days in ACSMessageHub.py, manually deleting the queues in AWS SQS, and restarting all nodes. |
In most cases, the only app on a node that sends messages via the ACS Message Hub is the ACS Manager App. However, ACSInterface will sometimes bypass the ACS Manager App and directly send a message to improve efficiency. Apps using the ACS Message Hub should have a 't' in MessageHub field in $ARES/config/ARESAddresses.csv.
The ACS Message Hub is built on-top of Amazon Web Services (AWS) Simple Queue Service (SQS). One can either work with the ARES team and use the ARES servers or setup one’s own servers/services. To use AWS, you will need an AWS account. Best practices have:
-
Owner Account - Used for billing, etc.Should not be accessed on a day to day basis
-
IAM Administrator Account - Used for day to day administration (See IAM)
-
ARES Account - Used by software to access appropriate services. This account is used to generate a set of SDK keys.
Each platform must have the AWS SDK keys installed on the platform in the ~/.aws directory.
Note
|
Since it involves the use of AWS servers and charges, the ACS Message Hub SDK keys are not included of the ARES package. The AWS account is managed by the ARES Team. Please contact the ARES team for more information. |
9.7.5. ACS Manager App
The ACS communication manager app (ACSAppZM) implements many of the ACS communication concepts described above, specifically handling:
-
File Transfers
-
Message Acknowledgements
-
Message Communication Errors
-
Message Retransmit Requests and Retransmissions
Note
|
This app should always be included in any node that communicates with other nodes. |
File Transfer Internals
ACS handles sending of files across the node links (breaks files into messages, reassemble files from messages).
ACS uses messages for all data transfer between the ground and remote nodes. However, files can be transferred back and forth from the ground station to the remote nodes by breaking files up into these messages. File transfer involves sending complete files from the ground to the remote nodes and vis versa. First step is taking outgoing files and converting to a set of messages and a file table that keeps track of the status of the transfer. A reverse version is kept on the receiving end and keep track of incoming file messages. The second step involves handing messages from the input file message queue. As messages arrive, they are handling according to the file transfer message type. Errors in messages are reported back to the send as well as errors in the assembled file.
A key feature of the file transfer program is that it is designed to recover if it is kill in the middle of processing. This is to handle the situation where a flight processor is turned off due to power or other issues.
9.7.6. ACS Links
ACS is designed to transfer messages between nodes using various types of links (see Networks). In most cases, ground systems will transfer messages using the ARES Message Hub. But links are not limited to Internet-based connections (ACS Message Hub). Specialized communication links allow the same message-based communications as Internet-based communications. Specialized communication links can range from serial ports between processors on the same platform to radio links (UHF, etc.) to non-internet global networks such as Iridium or Globalstar. Such specialized communication links are handled by Link Apps.
Link Forwarding
Link apps include a key concept of Link Forwarding. Nodes may be connected to the internet or may be connected via link apps across a variety of types of connections such as radio links, serial lines, or internet connections. Forwarding allows link apps to get and forward messages from one part of the network to another. An example would be a radio app taking all messages addressed to apps on a satellite from the ground portion of a network and forwarding them across the link to the satellite portion of the network.
Link app forwarding information is contained in the App’s ARESAddresses table’s link forwarding list field. Link apps have a 'forward list' that indicates which nodes the link apps should handle. The link apps forward any messages listed to nodes listed in the forwarding table to the appropriate node’s counter-part link app.
Link apps on a node on using ACS Message Hub (i.e. on the internet), messages from the ACS Message Hub addressed to apps in the forwarding list will be taken from the ACS Message Hub and forwarded.
In addition to a node address, the forwarding table can use 'ALL'. If the forwarding table entry is 'ALL', all messages from the send queue will be forwarded across the link. The 'ALL' entry is powerful but a little confusing. It cannot be used to forward messages from the ACS Message Hub - only locally generated messages or messages received via other special link app It is designed to work on remote platforms that are not connected to the internet, rather are only connected via special link apps (example CubeSat). Using the keyword all avoids having to list all nodes on the other side of the link (for example, having to list all the ground side apps in a CubeSat mission).
To add to the complexity of the 'ALL' keyword, it will not forward messages that are in the forward table of another link app in the same node. For example, if one link app has 'ALL' and another on the same node has 'T4', then all messages except those addressed to 'T4' will be forwarded. This allows a scenario where one app on the node handles a link such as a radio to the ground while another handles messages to a payload processor node on the same platform.
The combination of link apps, forwarding, and the message hub can be used to create a "forwarding node". A perfect example of such a node is a node dedicated to controlling one end of a radio link. Messages from a ground station to a spacecraft can be addressed to a spacecraft node. The ground station will place these messages in the message hub. A ground radio node can be set to forward all messages addressed to the spacecraft node in the forwarding field of the ground radio node’s radio link app. Then ground radio node will take all messages addressed to the spacecraft from the message hub and sending them to the spacecraft via a radio link.
Link Forwarding and Message Routing
Specialized communication links also support advanced features such as message forwarding and message routing. Message forwarding allows a node connected to another node via a specialized link to forward messages from other node to the linked node (see Link Forwarding for more details). Message routing allows messages to be sent to one node that then routes these messages to other nodes (in effect broadcasts the messages). (see Message Routing for more information). These two features allow optimal use of specialized links, reducing the actual traffic while maintaining the network communications topography. For example a CubeSat node may have radio link to a ground radio node. The messages across the link are controlled by special link apps with Link Forwarding. Downlink messages can then be forwarded from the ground radio link app to multiple nodes using message routing. Thus a single message crosses the radio link but then becomes multiple messages sent to multiple ground nodes.
Link App Architecture
The basic idea of a specialized communication link is to have two link apps, one on each communicating node, that transmit messages between the apps. To operate as a specialized ACS link, the communication channel:
-
Must have two-way communications path between the nodes (note: there is no requirement that both directions use the same communications chanel or the same number of link hops - all that is required is that there is a path both ways between the two nodes to allow at a minumum sending a message and receiving an acknowledgement)
-
Two-way communications need not be simultaneous, i.e. delays between sending and receiving may be as long as the designers wish. All that would be required is to adjust the ACSPlatform.ACS_MESSAGE_RESPONSE_MAX_WAIT_TIME to longer than the longest expected response time.
-
Specialized Links can be:
-
One-way transmission (simplex) (See note above about need for two-way comm)
-
Two-way transmission but only one way at a time (half duplex)
-
Two-way transmission simultaneously
-
ACS messages are variable length up to 270 bytes and can be sent across the specialized link can be sent in several ways:
-
As a communication chanel packet
-
As a set of communication chanel packets where the link apps are responsible for splitting and assembling the message to/from packets
-
As a set of messages encoded into byte stream or a bit stream. ACSMessageUtils.py provides a set of utilities to convert messages to byte or bit streams and to find/decode messages from a byte or bit stream.
The basic process is shown in figures Example ACS Links (Basic) and Example ACS Links (Details)
Each link has a link app on each communicating node. Each link app:
-
Has a unique ACS address
-
Handles message forwarding (see ACS Routing)
-
Has a list of target node addresses in the $ARES/config/ARESAddresses.csv file
-
-
Access to the local node send and receive queues
The message-level flow per step is:
-
Take all messages from the send queue which have a target node address in the links target address list.
-
Send these messages to the linked node via the link’s medium (radio, serial, internet, etc.).
-
For nodes connected to the ACS Message Hub via the Internet
-
Take all messages from the ACS Message Hub queue targeting a node in the links target address list
-
Send these messages to the linked node via the link’s medium (radio, serial, internet, etc.).
-
-
Receive messages from the linked node via the link’s medium (radio, serial, internet, etc.).
-
Put messages addressed to the local node in the local node receive queue.
-
Put messages addressed to another node in the local node send queue. These messages should then be forwarded on by another link app on the local platform (i.e. these messages are “routed”).
-
If the node is attached to the internet and the message is to a node with message routing, this is where the acknowledgement occurs and the message is duplicated and send to the node’s routing table target apps. See Message Routing for more information about message routing.
-
Sending ACS messages involve converting the messages into the communication channel format such as packets or byte streams, Receiving the messages involve converting the communication channel format such as packets or byte streams back into ACS messages
Some links operate more as a stream of bits or bytes rather than descrete packets while other links require ASCII data rather than binary. ACSMessageUtils.py offers tools special message handling including:
-
Sending and receiving messages through streams of bits including bit alignment
-
Sending and receiving messages through streams of bytes including byte alignment
-
Message conversions to and from ASCII
9.7.7. Message Routing
ACS Nodes can "route" messages to other nodes. This allows a message to be sent to one node and have it automatically duplicated and sent on to other nodes. Another way of thinking of this is that ACS nodes can "broadcast" messages. This can be useful for minimizing messages across special links or modifying the network topography without sending an updated ARESAddresses.csv file to every node in the system. Messages can be sent to a known node, that node can route those messages to other nodes based on it’s own ARESAddresses.csv file. These additional nodes need not be in the original senders ARESAddresses.csv file.
Warning
|
Routing messages will slow the arrival of messages to any given node. |
Warning
|
Message routing does not work for file transfers (including cancellation). |
Warning
|
Routed messages are not acknowledged. Rather the routing node acknowledges the message and then routes the messages onto the nodes in the route table as non-acknowledged messages. |
To route messages, one needs a dedicated routing node with a set of routing apps:
-
Add one or more ACSAppZT-based routing apps
-
For each routing app, add a set of app addresses in it’s ARESAddresses RouteTable field
-
These addresses define to whom to route incoming messages to.
-
The RouteTable field is a bar ('|') seperated list of app addressess.
-
-
Each routing node needs at least one ACS Routing App (ACSAppZT)
Messages are routed by sending a message to the routing app address. For example one can route messages from XXApp to YYApp and ZZApp by sending the message to the routing node’s RRApp where the app has YYApp and ZZApp in it’s routing table.
9.7.8. Combined Example
To illustrate the use of links and routing, imagine a scenerio with multiple spacecraft (nodes S1 through S8), a single ground radio node (GR), and a set of ground control/analysis stations (GS, GP, and BA). The spacecraft communicate with each other (via the ground radio node) and with all the ground nodes. All ground nodes receive all log and telemetry data from the spacecraft. All communication with the spacecraft go through a commercial radio network (such as ViaSat). The network provides interfaces with the spacecraft via an APS/Special Hardware and with external ground systems via an API.
This scenario involves both links with link forward settings in ARESAddresses.csv and forwarding with a forwarding table in ARESAddresses.csv. Example from ARESAddresses.csv:
Address | Module | Log To Address | Link Forward List | Route Table | Note |
---|---|---|---|---|---|
GSxx |
Per App Type |
GSZC|GPZC|BAZC |
Ground Statio Node |
||
GPxx |
Per App Type |
GSZC|GPZC|BAZC |
Ground Payload Node |
||
BAxx |
Per App Type |
GSZC|GPZC|BAZC |
Ground Analysis Node |
||
GRZC |
AMScAppGRZC |
GSZC|GPZC|BAZC |
Ground Radio Node MCP |
||
GRZM |
ACSAppZM |
GSZC|GPZC|BAZC |
Ground Radio Node ACS Mgr |
||
GRLG |
ACSAppZT |
GSZC|GPZC|BAZC |
GSZC|GPZC|BAZC |
Ground Radio Node Log Messages Routing App |
|
GRHL |
ACSAppZT |
GSZC|GPZC|BAZC |
GSHL|GPHL|BAHL |
Ground Radio Node HL Messages Routing App |
|
GRL1 |
ACSAppZT |
GSZC|GPZC|BAZC |
GSZC|GPZC|BAZC|S#ZC |
Ground Radio Node Lv 1 Sync Message Routing App |
|
GRL2 |
ACSAppZT |
GSZC|GPZC|BAZC |
GSZC|GPZC|BAZC |
Ground Radio Node Lv 2 Sync Message Routing App |
|
GRR# |
AMScAppGRCR |
GSZC|GPZC|BAZC |
Ground Radio Node Radio Comm Link App |
||
S#ZC |
AMScAppSCZC |
GRZC |
Spacecraft Node MCP |
||
S#ZM |
ACSAppZM |
GRZC |
Spacecraft Node ACS Mgr |
||
S#CR |
AMScAppSCCR |
GRZC |
All |
Spacecraft Node Comm Radio Link |
With this ARESAddresses.csv file, messages are routed via the link forward list and the route table. The link forward list handles uplink and downlink messages to/from the spacecraft. The route table allows the GR node to take single messages from spacecraft or ground nodes and broadcast them to the nodes in the route table. This allows a single message to be send from a spacecraft but arrive at multiple ground stations, thus saving precious radio bandwidth. In addition, additional ground nodes may be added by just updating the ARESAddresses.csv file on the ground radio node and spacecraft downlink messages will be routed to these additional ground nodes without having to update the spacecraft with new ARESAddresses.csv tables.
Warning
|
There is a downside of the RouteTable - any messages send to a route table will be routed on. Thus no messages can be sent directly to the node/apps with a RouteTable! |
9.8. Task Scheduling
ARES Apps run in a step-loop fashion. The Apps steps at a given rate defined in ARESAddresses.csv. However, ACS also offers a task scheduling component that allows qpps, modules, or sensors to execute actions when certain time or other conditions are meet. This "Task Scheduling" component allows functions to be pre-scheduled, tasked by a user via a base or ground function, and/or tasked by on-board planning activities.
The schedule consists of a set of tasks: Each task:
-
Has a set of task type identifier. This is a string that allow apps/modules/sensors to find tasks of interest. It is up to the apps/module/sensors to determine what task are of interest.
-
Has a set of conditions. Tasks may have multiple execute conditions. One condition - 'execute next step' is always executed (ignoring any other condition) In all other cases, the task is executed when ALL conditions are meet
-
Execute Next Step - This will force the task to execute the next step no matter what other tests are
-
Execute at x Step
-
Execute every x steps starting at y step and ending at z step
-
Execute if within a Time Range
-
Execute when the platform is near a location
-
Execute when a sensor can see an target location
-
-
Has an action section consisting of an action string.
-
This string tells the executing app/module/sensor what to do.
-
It is often a '|' separated string.
-
This string cannot contain commas.
-
-
Some tasks 'expire', i.e. they are removed from the schedule because they can not longer ever be meet. Specifically, the tasks that must be executed before a time will expire after that time. Step-based tasks do not expire because different apps run different step clocks.
When conditions are meet, the app/module/sensor executes the command found in the task’s command field using the task’s parameters in the parameter field. This comamnd and parameter strings (which must not contain commas), provides information for the executing app/module/sensor to use when executing. For example, a sensor command may include sensor settings to be used when executing the task. Comamnd/parameters strings with multiple parameters should be bar ('\|') separated strings to avoid problems with csv schedules (see below).
Please see ACSTaskScheduling.py for task details.
Schedules are defined and loaded from schedule files. All schedule files are stored in $ARES/resources/schedules. Schedule files are simple command separated file (CSV) where each line is a task. Lines starting with '#' are comments and ignored. See $ARES/resources/schedules/example_schedule.csv for an example.
Each app has a schedule that can be accessed by any code called by the app. The app can receive tasks via messages sent from other apps or by base station users. The schedule is stored as part of the app’s state file and loaded whenever apps are reloaded.
When the app is initialy run or run with a reset flag, the schedule is loaded from the file referenced in the schedule field of its line in ARESAddresses.csv.
Name | Action | Who Executes | Description |
---|---|---|---|
ACSCMD |
GETAPPCNTL |
ACSApp |
Log the App control variable state (Equivalent to AGS user interface command) |
ACSCMD |
SETAPPLD|{ON or OFF} |
ACSApp |
Set App Log Debug On or Off (Equivalent to SLD user interface command) |
ACSCMD |
SETAPPLL|{ON or OFF} |
ACSApp |
Set App Local Log On or Off (Equivalent to SLL user interface command) |
ACSCMD |
SETAPPLN|Bar-Separated list of Log App Addresses |
ACSApp |
Set App Network Log to a specific app address (Equivalent to SLN user interface command) |
ACSCMD |
SETAPPSR|Save Rate |
ACSApp |
Set App Save Rate (Equivalent to SSR user interface command) |
ACSCMD |
SETAPPST|Mins Step Time |
ACSApp |
Set App Min Step Time (Equivalent to SST user interface command) |
ACSCMD |
SETAPPSX|Max Steps |
ACSApp |
Set App Max Steps (Equivalent to SSX user interface command) |
ACSCMD |
SETAPPSP|Rate |
ACSApp |
Set App Report Rate (Equivalent to SSP user interface command) |
ACSCMD |
SETAPPSM|Max Messages |
ACSApp |
Set App Max Messages (Equivalent to SSM user interface command) |
ACSCMD |
SETAPPSQ|Max Messages |
ACSApp |
Set App Max Queue Size (Equivalent to SSQ user interface command) |
ACSCMD |
CLRAPPLD |
ACSApp |
Reset app debug log to default in ARESAddresses (Equivalent to CLD user interface command) |
ACSCMD |
CLRAPPLL |
ACSApp |
Reset app local log to default in ARESAddresses (Equivalent to CLD user interface command) |
ACSCMD |
CLRAPPLN |
ACSApp |
Reset app network log addresses to default in ARESAddresses (Equivalent to CLN user interface command) |
ACSCMD |
CLRAPPSR |
ACSApp |
Reset app save rate to default in ARESAddresses (Equivalent to CSR user interface command) |
ACSCMD |
CLRAPPST |
ACSApp |
Reset app min step time to default in ARESAddresses (Equivalent to CST user interface command) |
ACSCMD |
CLRAPPSX |
ACSApp |
Reset app max step to default in ARESAddresses (Equivalent to CST user interface command) |
ACSCMD |
CLRAPPSP |
ACSApp |
Reset app report rate to default in ARESAddresses (Equivalent to CSP user interface command) |
ACSCMD |
CLRAPPSM |
ACSApp |
Reset app max message to default in ARESAddresses (Equivalent to CSM user interface command) |
ACSCMD |
CLRAPPSQ |
ACSApp |
Reset app max queue to default in ARESAddresses (Equivalent to CSQ user interface command) |
10. Analytical Processing Subsystem (APS)
The Analytical Processing Subsystem (APS) extends ACS and provides a framework for running sensor/analysis reasoning activities experiments. Experiments are made up of one or more "reasoners". A "reasoner" is a chain of inferences executed through a "model" (reasoners can also be thought of as a simple experiment processing chain). A typical reasoner might be a deep learning neural network model that classifies images or gathers data and generates a map. Reasoners can range from complex neural network reasoning to simple data processing or data gathering reasoners.
APS provides a framework for such experiments and their associated reasoners by providing a specialized ACS app along with a set of supporting classes and methods. Experiments are logical collections of software reasoners. These reasoners may be part of a single APS app or may be spread across several APS apps on the same node or across multiple nodes. For example, one could have a distributed experiment to map light sources across multiple cubesat platforms. In general, these APS-based experiments make-up a node’s "payload" (although there is no reason that an APS-based app cannot be part of the nodes "flight software" such as some form of health monitoring system).
A single or collection of APS apps is known as an APS "instance". APS instances can run stand-alone; as part of a network of APS-only nodes; as a payload app on a AMS-based remote platforms; or as part of a larger network of ARES nodes.
APS software consists of:
-
APS App - The ARES/ACS App that runs the APS framework along with reasoners (based on ACSApp)
-
APS Framework - The APS App common software framework that can be used on multiple hardware platforms. The framework includes:
-
Inter-app/node communications via the ACS subsystem message/file passing system
-
A reasoner framework and manager
-
A distributed memory (database) subsystem
-
A mission interface framework
-
A platform sensor framework
-
Multiple reasoning engines and libraries (ARES MPNN Library, Tensorflow/Tensorflow Lite, Scikit-Learn, Opencv) A “reasoning engine” refers to a toolkit that provides model elements for a reasoner. Examples of reasoner engines are ARES’s MPNN Library, Scikit-Learn, and OpenCV. Not all reasoners use a reasoning engine.
-
-
APS Instances - An APS app with a specific configuration of APS Framework and Reasoners that runs on a specific platform with a specific configuration.
Note
|
See ARESConfig for details on configuration parameters |
10.1. APS Instances
APS is highly configurable. In general, one can see instances running in three ways:
-
Stand-Alone - Stand-alone APS app with no external communications A stand-alone APS instance operates as a complete program with local log files and local memory.
-
Network Node - Network node with an APS app also serving as the node MCP. Each network node must one APS instance as an MCP, an ACSMgr app, and, optionally, other non-MCP APS instances. Nodes may or may not participate in larger networks of ARES node instances.
-
Mission - Non-MCP APS instance can operate as part of a larger platform/node such as a spacecraft. The larger platform/node may or may not participate in a larger network. Mission instances are usually controlled by the larger mission node MCP including launching, pausing, and terminating. Mission instances may also get some sensor and other data from a mission apps.
Configuration differences (Instance Types) include:
-
APS Sensor Configuration - the hardware/data that a given instance can retrieve directly.
-
Experiments
-
Experiment Reasoners - the specific reasoners that run under this instance.
-
Reasoner Configuration - the specific reasoner configurations.
-
-
Reasoner Engines - the specific reasoner engines (such as ARES’s MPNN Library, Scikit-Learn, or OpenCV) available.
-
APS App parameters as defined in the $ARES/config/ARESAddresses.csv table.
A specific instance has both a specific configuration and a specific app address.
Why consider multiple instances? The most typical scenario involves running one or more instances on high-powered ground computers to pre-train certain reasoners. Then run the trained reasoner on a remote platform such as a spacecraft. The only thing transferred between the ground instance of the reasoner and the flight instance of the reasoner will be the trained model (typically a deep learning neural network model). This common approach to reasoners allows a mix of pre-flight or ground-based training and flight-based training and operations.
Note
|
There are generally no restrictions on how experiments/reasoners are mixed on nodes. Some reasoners will be completely located on a remote flight instance of APS. Other might pre-train on the ground and just operate on the flight instance. And other might run a mix of operations between multiple instances including ground instances and multiple flight instances. |
The general concept of APS is to run on a mission platform with mission-specific goals and mission-specific restrictions. The software for each mission is tailored from the base APS framework software.
Note
|
There is no reason that a “mission” cannot be just one or more APS instances running on a local computer doing local reasoning or an instance running on a node in the cloud. APS is nothing if not very flexible in defining what constitutes a “mission”. By designing APS to run on remote platforms with limited communications (for example, a spacecraft), APS can be adapted to a wide range of configurations. |
10.2. APS Configuration (Using APS)
APS instances consist of the following components:
-
APS-Based Apps
-
App Entry in $ARES/config/ARESAddresses.csv
-
Sensor Table in $ARES/config/ARESConfig.toml or mission/node/app specific config file.
-
References to Sensor Modules
-
-
Reasoner Table in $ARES/config/ARESConfig.toml or mission/node/app specific config file.
-
References to Reasoner Modules
-
-
Mission-Specific Reasoner Modules - child classes of APSReasoner class.
-
Mission-Specific Sensor Modules - child classes of APSSensors class.
Using APS consist of defining an instance:
-
Define APS-Based Apps - APS-based apps are defined in the $ARES/config/ARESAddresses.csv file. An app line added to the file should reference the module APSApp in the "Module" field. The line’s APSSensorSuite and APSReasonerSuite fields should reference the definitions in ARESConfig.toml (See Define Configuration below) APSApp can be used directory or subclassed to add/change feature (an example would be to include enhanced ER memory models) A typical line might look like:
#Key AppAddress Module Name ... APSMemSyncLv1 APSMemSyncLv2 APSSensorsSuite APSReasonersSuite ... App S1AP APSApp RFPayload GSAP GSA1 RF_ANOMALIES RF_ANOMALIES_SENSOR
-
Define Sensors - Normal sensor operations are handled by the APSSensors class. It handles a set of pre-defined sensors. If additional sensors are needed, a different set of sensors, or a different handling of sensors, then the APSSensors class should be subclassed and referenced by the APS_MODULE_NAME in the sensor confguration table.
-
Define Sensor Configuration - Which sensors are run for a given APS instance is set in the ARESAddresses line that references an APSApp. Sensors are configured via the a APSSensorSuite referenced table in ARES Configuration (ARESConfig.toml). See APS Sensors for more information. For example:
[APS_SENSORS_EXAMPLE] APS_MODULE_NAME = 'APSSensors' [APS_SENSORS_EXAMPLE.LOC] TYPE = 'TLE' [APS_SENSORS_EXAMPLE.ORI] TYPE = 'SIMULATED' SIMULATED_INIT = [1.0, 0.0, 0.0, 0.0, 0.1] SIMULATED_RATES = [0.0, 0.0, 5.0]
-
Defined Reasoners - Reasoners are implemented via a reasoner module. Most reasoner modules will be named MISSIONReasonerXX.py where XX is the reasoner id. Reasoners are child classes of APSReasoner.Reasoner. Reasoners are configured via the a APSReasonerSuite referenced table in ARES Configuration (ARESConfig.toml). See APS Reasoners for details.
-
Define Reasoner Configuration - Which sensor reasoners are run for a given APS instance is set in the ARESAddresses line that references an APSApp. Reasoners are configured via the a APSReasonerSuite referenced table in ARES Configuration (ARESConfig.toml) The reasoner suite includes a reference to the specific module that will be run. See APS Reasoners for details. That module must be a subclass of APSReasoner.py. For example:
[APS_REASONERS_EXAMPLE] [APS_REASONERS_EXAMPLE.ST00] APS_MODULE_NAME = 'APSxSensorsSenseHat' APS_REASONER_START_STEP = 0 APS_REASONER_END_STEP = 0 APS_REASONER_STEP_RATIO = 1 SYNC_STEP_RATE=10
10.2.1. API
APS provides the following base classes:
-
APSApp.py - Provides the base for all APS instances. Generally, should serve as the module entry in ARESAddresses.csv for all APS-based apps.
-
APSReasoner.py - Provides the base for APS reaonsers. Child modules are specified for use in the APSReasonerSuite defined in ARESConfig. See APS Reasoners for details.
-
APSSensors.py - Provides a standard set of sensors driven by the sensor configuration table in ARESConfig.toml. See APS Sensors for more details.
-
APSxSensorsSenseHat.py - Example of an APS sensors subclass
APS provides the following self-contained support modules:
*
In addition, ACS provides the following pre-defined reasoners:
*
Finally, APS provides some examples:
-
APSxReasonerST.py - Example child reasoner
-
APSxMemoryEREntityST.py - Example ST entity record
All APS packages named APSv… are for internal APS and ARESUI use only.
10.3. APS System Architecture
The figure below shows the basic internal architecture of an APS app. It consists of an APS reasoner; an APS sensor interface; a set of APS reasoners; an ACS interface; a set of configuration and data files; and a local log, telemetry, and memory databases.
In general, APS operates in a series of loops.
-
Mission Loop - From start of the mission until its completion
-
Session Loop - The APS software does not expect to operate continuously through the mission due to power and other resource requirements. A session is the time from the software start until it stops. For example, APS may only operate a portion of a spacecraft’s orbit. Or APS may only run for a given period on a cloud server when the server is available.
-
Step Loop - The step loop is the inner loop from reading sensors, processing them, and acting on them. The simplest example would involve the steps involves in executing a single firing of a neural network.
-
-
10.4. APS Subsystem Design
APS consists of the following components:
-
APS Framework consisting of:
-
APS Session Manager (Part of APS App)
-
APS Reasoners including:
-
Multiple reasoners (experiments)
-
Libraries and Support Modules
-
In addition, there are several key concepts that run across the components:
-
ARES User Interface provides a way to "attach" and view/extract local APS data such as log files and memory data.
-
APS Communications provides methods to communicate between APS instances and other non-APS apps/nodes.
-
APS Clocks provides the general timing information for step loops.
10.4.1. APS App
The APS App is the main APS software component. It consists of a set of Python files including the primary file - APSApp.py. The APS App can be started via:
-
Command Line w/wo Arguments
-
APS User Interface
-
Mission Flight Software
The APS can be terminated by the mission through a command file or a termination message (details of the termination message is host/mission dependent). The APS App can also be used to run a single instance of APS on a local computer.
10.4.2. APS Session Manager
APS Session Manager (part of APS App) is the primary control manager for running the APS framework and reasoners. It is called by all instances of the APS app.
Basically, the APS Session Manager consists of a single loop that runs from the start of a session until termination. Each loop is called a step. During each step, it checks for updates from the APS ground station, reads sensor data either directory or through a mission-specific data frame file, executes selected reasoners, evaluates the results, triggers any mission-specific actions, generates reasoner state files (for use in the next session), and generates a file to be sent to the GS at the end of an ARES session.
The core of the APS Session Manager is a set of “Reasoners” or “experiments”. Each Reasoner can be thought of as an experiment or thought process and has specific input, action, learning, and output controls. Each Reasoner is identified by a type name and a configuration id. The Reasoner uses a host platform-specific sensor suite and consists of a sensor data handler that maps inputs from the sensor suit, a reasoning core or engine that takes the inputs and reasons on them, and an action handler that takes the reasoning core results and performs any needed actions.
Key notes:
-
There is only one sensor suit
-
There can be multiple reasoners (controlled by configuration file)
-
Reasoners may run at different rates (although always a multiple of the framework step rate)
-
Reasoners do not interact directly with each other except via sensor values and/or the APS memory
-
Reasoners share access to the memory
-
Reasoners run sequentially
Note
|
Sensor access and reasoners run sequentially in each APS instance. This avoides problems with sensor reading collisions and data access collisions. If one wants to run reasoning in parallel, one can run multiple APS instances on a given node, sharing data via the ACS data pool or via the APS memory system. Warning, be careful about sharing access to hardware sensors across more than one reasoner! It is recommended that only one instance access a hardware sensor, sharing any needed data with other instances via the ACS data pool or via the APS memory system (part of which is thread safe) |
Note
|
Messages can only be addressed to an entire instance, not to individual reasoners. |
10.4.3. APS Memory Subsystem
The APS framework provides a high-level memory subsystem. APS Memory is based on a SQL relational database. This subsystem can be used to store information between:
-
Sessions
-
Steps
-
Reasoners
-
Instance
-
Nodes (via Memory Syncing))
-
SQLite3 relational database - The APS memory is built on the SQLite3 relational database concept and consists of tables and records. Tables store a set of related data with the same fields. Each table holds zero or more "records" - a record holds the data from some event, observation, or analysis results. However, conceptually, most data consists of a graph database consisting of entities and relationships. In addition to tables/records, the memory subsystem can also include directories of files. The APS memory subsystem also includes the capability to "sync" records across nodes.
The core of the APS Memory Subsystem is an entity-relation model. Entities are basic items such as:
-
Frame (Image) Records
-
RF Event Records
-
Observation Records
-
Etc.
Relations tie these entity record together in a web of connections. Relations can link entity records of different types.
The key modules include:
-
ACSMemory.py - A memory manager based on SQLite3
-
APSMemoryERDef.py - Provides the ER model definitions.
-
APSMemoryEROps.py - Provides the ER model supporting methods.
-
APSMemoryER.py - The base entity-relationship record class
-
APSMemoryERRelationship.py - A class for memory relationships
-
MISSIONMemoryEREntityXX - A class for each memory entity type
10.4.4. APS Clocks
In addition to the normal ACS clocks, APS supports the following clocks:
Reasoner lifetime clock | Total of all session times since the initial state file was generated |
---|---|
Reasoner session clock |
Time (seconds) since start of session |
Reasoner lifetime step count |
Number of steps that the Reasoner executed since the initial state file was generated - may be different from the ARES session step count if the Reasoner does not process each system step. |
Reasoner session step count |
Number of steps that the Reasoner executed this session - may be different from the APS session step count if the Reasoner does not process each system step. |
10.5. APS Sensors
The APS Sensors module (APSSensors.py) provides the interface between APS instances and sensors. The APSApp calls a single APS sensors class on each step. The specific APS Sensors class called is defined in the ARESConfig table set in the APSSensorSuite field of ARESAddresses. An example table:
[APS_SENSORS_EXAMPLE] APS_MODULE_NAME = 'APSSensors' [APS_SENSORS_EXAMPLE.LOC] TYPE = 'TLE' [APS_SENSORS_EXAMPLE.ORI] TYPE = 'SIMULATED' SIMULATED_INIT = [1.0, 0.0, 0.0, 0.0, 0.1] SIMULATED_RATES = [0.0, 0.0, 5.0]
Important
|
The specific sensors class is defined in the APS_MODULE_NAME. This module should be either be APSSensors.py or a subclass of APSSensors.py (the default is APSSensors) |
In general, APSSensors can be obtained from a variety of sources:
-
Direct access of specific sensors
-
Simulated sensor data
-
Fixed sensor data (with or without variations)
-
Other apps on the node (example - from AMS apps reading other hardware sensors)
Single value sensor data is stored in a set of dictionaries. Dictionary entries include: * Exists - does the sensor exist on this platform * Valid - was a valid sensor reading obtained on this step * Range Min * Range Max * Sensor Reading * Sensor Units
These single value readings can be combined into arrays suitable for use in neural networks.
More complex sensor values such as images and RF signals can also be read and provided to reasoner using more complex APSSensor subclassed classes.
10.5.1. LORI Data
APSSensors supports platform location/orientation data obtained from a variety of sources including simualted locations and LORI data posted by the "flight software" via ACSPlatformState.py record.
10.5.2. Scheduling
Some sensors can be fired via the Task Scheduling component. Setting the sensor’s AUTOCAPTURE_RATE ARESConfig key value to 0 will mean that the sensor will only fire via the task scheduling component.
10.5.3. APSSensors Configuration Table
The APS Sensors configuration table defines the available sensors, their source, and their basic configuration. The configuration is from a table in the ARESConfig.toml file, referenced in the ARESAddresses entry for the APS Instance
ARESConfig.toml file contains a set of sensor tables. Each table is names APS_SENSORS_name where name is the ARESSensorSuite field of ARESAddresses for a given app.
The ARESConfig.toml file can contain multiple sensor configurations. Each configuration is a table named 'APS_SENSORS_ sensor_configuration_name'. For example, the sensor suite name is DESKTOP and the config file table is named APS_SENSORS_DESKTOP:
[APS_SENSORS_DESKTOP] contents
Table/ Keyword | Type/ Default | Description | ||||||
---|---|---|---|---|---|---|---|---|
APS_SENSORS_name./ SENSOR_MODULE_NAME |
str/ APSSensors |
The sensor module name |
||||||
APS_SENSORS_name.XXXXX/ AUTOCAPTURE_RATE |
int/ 1 |
Key set for any specific sensor (Example, APS_SENSORSname.TEMP) Indicates how to capture per step. If < 1, do not fire the sensor except via the task schedule. If == 1 fire each step If > 1, fire every x steps For example, if the app fires every 10 seconds and the FIRE_RATE is 2, then the sensor will fire every 20 seconds. If the FIRE_RATE is 0 or 1, then the sensor will fire every app step. |
||||||
APS_SENSORS_name.LOC/ TYPE |
str/ None |
Location source
|
||||||
APS_SENSORS_name.LOC/ FIXED |
Array of float/ None |
(TYPE=FIXED) Defines the lat, lon, alt, error in +/- Km and, optionally, the orientation
|
||||||
APS_SENSORS_name.ORI/ TYPE |
str/ None |
Orientation source
|
||||||
APS_SENSORS_name.ORI/ FIXED |
Array of float/ None |
A fixed orientation is assumed to be a ground sensor Orientation is in ECEF quaternion
|
||||||
APS_SENSORS_name.ORI/ SIMULATED_INIT |
Array of float/ None |
A initial orientation. Orientation is in ECEF quaternion
|
||||||
APS_SENSORS_name.ORI/ SIMULATED_RATES |
Array of float/ None |
The sensor is assumed to be on a satellite and the orientated is simulated using a simple orientation simulation. The simulation assumes:
Parameters:
|
||||||
APS_SENSORS_name.ROLL_RATES/ TYPE |
str/ FIXED [0.0, 0.0, 0.0] |
Platform roll rates source
|
||||||
APS_SENSORS_name.ROLL_RATES/ FIXED |
Array of float/ None |
(TYPE=FIXED) Defines the lat, lon, alt, error in +/- Km and, optionally, the orientation
|
||||||
APS_SENSORS_name.TEMP/ TYPE |
str/ None |
Temperature in C. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.TEMP/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.TEMP/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.TEMP/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.HUM/ TYPE |
str/ None |
Humidity in %rH. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.HUM/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.HUM/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.HUM/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.PRES/ TYPE |
str/ None |
Pressure in mbars. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.PRES/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.PRES/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.PRES/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.MAGX/ TYPE |
str/ None |
Magnetometer X in uT. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.MAGX/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.MAGX/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.MAGX/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.MAGY/ TYPE |
str/ None |
Magnetometer Y in uT. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.MAGY/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.MAGY/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.MAGY/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.MAGZ/ TYPE |
str/ None |
Magnetometer Z in uT. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.MAGZ/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.MAGZ/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.MAGZ/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.GYRX/ TYPE |
str/ None |
Gyroscope X in rad/sec. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.GYRX/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.GYRX/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.GYRX/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.GYRY/ TYPE |
str/ None |
Gyroscope Y in rad/sec. Location source - SH, RANGE, FIXED |
||||||
_APS_SENSORS_name_e.GYRY/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.GYRY/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.GYRY/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.GYRZ/ TYPE |
str/ None |
Gyroscope Z in rad/sec. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.GYRZ/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.GYRZ/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.GYRZ/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.ACCX/ TYPE |
str/ None |
Accelerameter X in Gs. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.ACCX/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.ACCX/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.ACCX/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.ACCY/ TYPE |
str/ None |
Accelerameter Y in Gs. Location source - SH, RANGE, FIXED, |
||||||
APS_SENSORS_name.ACCY/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.ACCY/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.ACCY/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.ACCZ/ TYPE |
str/ None |
Accelerameter Z in Gs. Location source - SH, RANGE, FIXED |
||||||
APS_SENSORS_name.ACCZ/ FIXED |
float/ 0.0 |
If the type is FIXED, defines the fixed value |
||||||
APS_SENSORS_name.ACCZ/ VARIATION |
float/ 0.0 |
If the type is FIXED, this can add a variation applied per step |
||||||
APS_SENSORS_name.ACCZ/ RANGE |
array float/ [0.0, 0.0] |
If the type is RANGE, define the range of values |
||||||
APS_SENSORS_name.ACCZ/ PROCESSOR_TEMP |
Platform Telemetry Record |
-40 to 125 |
||||||
Processor (example: Raspberry Pi) Temperature © |
SDR_1_TEMP |
APS_SENSORS_name.ACCZ/ Platform Telemetry Record |
||||||
-40 to 125 |
Payload SDR # 1 Temperature © |
SDR_2_TEMP |
||||||
APS_SENSORS_name.ACCZ/ Platform Telemetry Record |
-40 to 125 |
Payload SDR # 2 Temperature © |
||||||
SDR_3_TEMP |
APS_SENSORS_name.ACCZ/ Platform Telemetry Record |
-40 to 125 |
||||||
Payload SDR # 3 Temperature © |
SDR_4_TEMP |
APS_SENSORS_name.ACCZ/ Platform Telemetry Record |
10.5.4. RF Sensor Component
AEON uses the standard APS RF sensor component.
The RF sensors (Software Defined Radios) are used to measure the power (dB) of radio signals. See the AEON SDD for more information about radio signals.
The baseline APS RF Sensor is an standard Software Defined Radio accessible via the PYRTLSDR library.
The general process for reading power at a given frequency:
-
Set the SDR sample rate (typically 1KHz but this can be varied in the reasoner model file)
-
Set the SDR gain to 'auto'
-
Set the center frequency
-
Read the samples from the SDR - these are returned as I/Q complex numbers.
-
The samples are converted to \(10 Log_{10} (I^2 +Q^2)\)
RF sensors are either:
-
Omni-Directional RF Sensor - A SDR using an omni-directional antenna. This sensor is usually used for scanning a range of RF frequencies, learning expected signal strength, and identifying unexpected signal strength based on the predicted signal strength.
-
Directional RF Sensor - A SDR using a directional antenna. This sensor is usually tasked to look for signal strength over time at a given frequency. By moving the directional antenna, the signal strength is used to generate a rough signal direction vector.
Table/ Keyword | Type/ Default | Description |
---|---|---|
APS_SENSORS_name.RF[2]/ RF_SENSOR_NAME |
str/ 'Rx' where x is the SDR_Index |
ARES Support two rf sensors, each with a name. RF sensor names used in matching reasoners to SDRs and output. RF sensor names names must be two characters: 1 uppercase character and 1 uppercase alphanumeric character |
APS_SENSORS_name..RF[2]/ AUTOCAPTURE_RATE |
int/ 1 |
Indicates how to capture per step. If < 1, do not fire the sensor except via the task schedule. If == 1 fire each step If > 1, fire every x steps If 1, fire the sensor each step If > 1, fire the sensor every x step, i.e. a ratio sensor firing to app rate. For example, if the app fires every 10 seconds and the FIRE_RATE is 2, then the sensor will fire every 20 seconds. If the FIRE_RATE is 0 or 1, then the sensor will fire every app step. |
APS_SENSORS_name.RF[2]/ SIMULATION |
str/ 'NONE' |
Indicates that the SDR values should be supplemented by the sources in $ARES/resources/sim/sim_rf_sources.csv. Types: * 'NONE' (or missing keyword) - no simulation * 'SUPPLEMENT' - Add the simulation powers to real SDR values * 'SIMULATED' - Just simulate a signal and do not use a real SDR value |
APS_SENSORS_name.RF[2]/ SDR_INDEX |
int/ 0 |
SDR Index Number - If there is only one SDR on the system, this is 0. A second SDR can be present with an index number of 1. |
APS_SENSORS_name.RF[2]/ SDR_RESTART_EACH_STEP |
bool/ False |
If true, the SDR is started/stop on each step |
APS_SENSORS_name.RF[2]/ SDR_MAX_READS |
int/ -1 |
Max number of SDR reads before stopping SDR, pausing, then restarting. If -1, SDR never reset, if 0, SDR resets each step, if >0 SDR resets between x reads |
APS_SENSORS_name.RF[2]/ SDR_PAUSE_SECS |
float/ 0.1 |
Number of seconds (float) between stopping and starting the SDR to prevent hang-ups |
APS_SENSORS_name.RF[2]/ SDR_MAX_READS_PI |
int/ -1 |
(Pi Only) Max number of SDR reads before stopping SDR, pausing, then restarting. If -1, SDR never reset, if 0, SDR resets each step, if >0 SDR resets between x reads |
APS_SENSORS_name.RF[2]/ SDR_PAUSE_SECS_PI |
float/ 0.1 |
(Pi Only) Number of seconds (float) between stopping and starting |
APS_SENSORS_name.RF[2]/ SDR_GAIN |
float/ Auto |
If included, set to a value. If not,set gain to auto |
APS_SENSORS_name.RF[2]/ SDR_SAMPLE_RATE |
float/ 2.4e6 |
SDR Read Sample Rate in Hz |
APS_SENSORS_name.RF[2]/ SDR_NUMBER_SAMPLES |
int/ 256 |
Number of samples per SDR read samples (int) |
APS_SENSORS_name.RF[2]/ SDR_DIRECTIONAL |
bool/ false |
Is the SDR attached to a directional antenna (true) or an Omni-directional antenna (false) |
APS_SENSORS_name.CAMERA[1]/ SDR_BODY_QUATERNION |
4 element array / [1.0, 0.0, 0.0, 0.0] |
The RF sensor is assumed to be located at the center of the body. Given that ARES primarily works with ECI, ECEF, and ECEF cartesian coordinates, the slight offset of the camera on the platform does not have any significant effects (i.e. the rf sensor location relative to the platform is usually lost in rounding errors). So the rf sensor location on the platform is ignored and just "set" at 0.0, 0.0, 0.0. However, the direction of the rf sensor has significant effects. This keyword defines the orientation of the rf sensor in body frame. This quaternion defined the rf sensor rotation from +X direction ([1.0, 0.0, 0.0]) to actual rf sensor orientation in the platform (body) frame. |
APS_SENSORS_name.RF[2]/ SDR_ANTENNA_BANDWIDTH_M |
Float/ 1.0 |
Is the SDR is directional, then this holds the center half-power bandwidth in meters |
APS_SENSORS_name.RF[2]/ DISPLAY_SP_RESULTS_PER_STEP |
boo/ false |
Displays results per step |
APS_SENSORS_name.RF[2]/ F |
Float Array/ None |
Defines what frequencies are included in an RF scan each step. Each subarray is a frequency range block. They can be individual frequencies or a range from start to finish at a given step size.
|
[2] RF - ARES supports up to two RF sensors. The RF keyword can be 'RF_0', or 'RF_1' to support multiple RF sensors
The RF sensor module (AEONSensorRF) generates two types of data:
-
RF Scan - An RF scan is a collection of power values at a set of frequencies
-
Frequencies do not need to be continuous
-
Typically typically used for generation of RT, RF, and RF records.
-
Used for RF event generation (RF records)
-
RF Scans are captures in AEONDataRFScan objects
-
RF Scans are the standard data set captured by the RF sensor
-
This scan is generated anytime the RF sensor captures a scan based on the AUTOCAPTURE_RATE command,
-
If the AUTOCAPTURE_RATE is less than 1, no standard step scan is capture.
-
If the AUTOCAPTURE_RATE is 1, a standard step scan is captured every step
-
If the AUTOCAPTURE_RATE is greater than 1, a standard step scan is captured every x step
-
-
Result scan is passed to reasoner via the AEONSensorRF.std_step_scan method
-
Task Step Scans - Scans can also be captured based on a scheduled task.
-
The scan is capture if all specified capture criteria in the task are meet (SEE ARES SDD Tasking).
-
The task also includes a set of directives on what RF data is to be captured.
-
The task data type is set to 'S'.
-
Result scans are passed to reasoner via the AEONSensorRF.tasked_scans method
-
-
-
RF Waterfalls - a set of power measurements at a specific time and frequency
-
Waterfalls are specified by:
-
Center Frequency in Mhz
-
Number of frequencies (Odd)
-
Frequency step in Mhz
-
Time length in seconds
-
Time steps in seconds
-
-
Waterfalls are typically used to generate RS records
-
Typically used by reaction reasoners trying to capture additional information in response to an RF even
-
Can also be tasked for the RF sensor where the task data type is set to 'W'
-
Command | Field Name | Type | Description |
---|---|---|---|
Generate RF Scan |
Function Name Field |
str - 4 Characters |
'RFSC' |
Action Field |
str (<80 Characters) |
Contains action elements separated by a bar ('|') See below. |
Action Field (THE ACTION FIELD MUST BE LESS THAN 80 CHARACTERS):
-
Tag - some string of characters that define the reading
-
Type - Either 'S' or 'W'
-
If type == 'S'
-
Frequency (same as the F keyword above) except commas are replaced with tildas ('~')
-
-
If type = 'W'
-
Center F in Mhz
-
Number of frequencies (Odd)
-
Frequency step in Mhz
-
Time length in seconds
-
Time steps in seconds
-
-
Example: ..S|[90.7][73.6]]|Rome ..W|436.0|5|0.001|5.0|1.0|Madrid
10.5.5. Camera Sensor Component
AEON includes a camera sensor via AEONSensorTypeCamera.py. The camera sensor supports a variety of input sources including movies, directory of images, Open-CV camera, and Pi camera (as of V4.0 - ARES support the Libcamera-based V2 camera - older legacy camera support defaults to Open-CV). Most desktop cameras are supported via Open-CV. Additional, specialized camera may require a subclass of AEONSensorTypeCamera.py.
The Camera Sensor can generate:
-
AEONFrame.py - A single image captured from a camera sensor with loc/ori/time/* value
-
(future) AEONVideo.py - A set of images captured from a camera sensor with loc/ori/time/* values per frame
Table/ Keyword | Type/ Default | Description |
---|---|---|
APS_SENSORS_name.CAMERA[1]/ AUTOCAPTURE_RATE |
int/ 0 |
Indicates how to capture per step. If < 1, do not fire the sensor except via the task schedule. If == 1 fire each step If > 1, fire every x steps |
APS_SENSORS_name.CAMERA[1]/ NAME |
str/ 'Cx' where x is the camera id |
APS Support three cameras, each with a name. Camera name used in matching reasoners to cameras and output. Camera names must be two characters: 1 uppercase character and 1 uppercase alphanumeric character |
APS_SENSORS_name.CAMERA[1]/ OPERATE_ON_DEMAND |
bool/ false |
Defines if the camera is turned on/off on each capture. If true, the camera is turned off between captures. The exact operation depends on the camera type (for example, some cameras require a warm-up period). |
APS_SENSORS_name.CAMERA[1]/ ADD_LORI |
bool/ false |
Add time, location information to the captured image |
APS_SENSORS_name.CAMERA[1]/ TYPE |
str/ NONE |
Camera Type (source)
|
APS_SENSORS_name.CAMERA[1]/ SAVE_GREY |
bool/ true |
Save the greyscale image |
APS_SENSORS_name.CAMERA[1]/ SAVE_COLOR |
bool/ true |
Save the color (BGR) image |
APS_SENSORS_name.CAMERA[1]/ ID |
int/ 0 |
Camera id used by OpenCV (for CV type) |
APS_SENSORS_name.CAMERA[1]/ MOVIE |
str/ '' |
Movie source file (for MOVIE type) |
APS_SENSORS_name.CAMERA[1]/ FRAME_RATE |
int/ 0 |
Read Frame Rate (for MOVIE TYPE) |
APS_SENSORS_name.CAMERA[1]/ DIR |
str/ '' |
Image directory (for DIR type) |
APS_SENSORS_name.CAMERA[1]/ DISPLAY_BGR |
bool/ false |
Display BGR image during operations |
APS_SENSORS_name.CAMERA[1]/ DISPLAY_GREY |
bool/ false |
Display Greyscale image during operations |
APS_SENSORS_name.CAMERA[1]/ DISPLAY_L |
bool/ false |
Display Luminosity |
APS_SENSORS_name.CAMERA[1]/ DISPLAY_H_MATPLOTLIB |
bool/ false |
Display Histogram Plot in matplotlib popup display |
APS_SENSORS_name.CAMERA[1]/ DISPLAY_H_IN_TERMINAL |
bool/ false |
Display Histogram Plot simple text form |
APS_SENSORS_name.CAMERA[1]/ CAPTURE_SIZE |
array/ [0, 0] |
Set the camera image capture to a given width and height in pixels (if possible with a given camera) If not included or [0, 0], the default camera image size is used. |
APS_SENSORS_name.CAMERA[1]/ HOR_FOV_DEGREES |
float/ 0.0 |
Full horizontal field-of-view in Degrees |
APS_SENSORS_name.CAMERA[1]/ VER_FOV_DEGREES |
float/ 0.0 |
Full vertical field-of-view in Degrees |
APS_SENSORS_name.CAMERA[1]/ CONICAL_FOV_DEGREES |
float/ 0.0 |
A conical field of view in degrees (angle from one side to the other) Used to screen target tasks (See ACSTaskScheduling) |
APS_SENSORS_name.CAMERA[1]/ CAMERA_TO_BODY_FRAME_QUATERNION |
4 element array / [1.0, 0.0, 0.0, 0.0] |
The camera is assumed to be located at the center of the body. Given that ARES primarily works with ECI, ECEF, and ECEF cartesian coordinates, the slight offset of the camera on the platform does not have any significant effects (i.e. the camera location relative to the platform is usually lost in rounding errors). So the camera location on the platform is ignored and just "set" at 0.0, 0.0, 0.0. However, the direction of the camera has significant effects. This keyword defines the orientation of the camera in body frame. The camera frame is assumed to be a right-handed frame with the boresight along the +X ([1.0, 0.0, 0.0]) axis (not the traditional +Z frame). The quaternion rotates a camera vector to a body frame vector, for example, rotates the camera boresight vector from camera frame +X to platform body frame +X. |
[1] CAMERA - ARES supports up to three cameras. The CAMERA keyword must be one of 'CAMERA_0', 'CAMERA_1', or 'CAMERA_2' to support multiple cameras
-
Standard Step Scan - The standard step scan (AEONDataRFScan) as defined by the configuration values
-
Task Step Scans - A list of scans (AEONDataRFScan) generated by the tasks in the apps schedule targeted at the RF sensor.
-
See the Task Scheduling section of the ARES_SDD for details about using tasks and schedules.
-
Command | Field Name | Type | Description |
---|---|---|---|
Capture an Image |
Function Name Field |
str - 4 Characters |
'CMIM' |
Action Field |
str (⇐10 Characters) |
Image Tag - Added to Frame Record The camera supports a few 'special' targets in the tag field
|
10.6. APS Reasoners
The APS Reasoners are the heart of processing. Each Reasoner takes in a set of sensor values (in the form of an APSSensors instance), does some type of reasoning, then may perform some type of action. Reasoners must meet the following requirements:
-
Define a reasoner id
-
Made up of the reasoner type and reasoner instance:
-
Type - 2 upper case character string (A-Z, 0-9)
-
Instance - 2 upper case character string (A-Z, 0-9)
-
Combined, they create the unique reasoner id
-
Example: AA00 or AN01
-
-
-
Reasoners ids must be unique within a node.
-
-
Implemented by a subclass of APSReasoners.py (Example MISSIONReasonerXX.py where XX is the reasoner type)
-
Override the following methods:
-
child_session_init
-
child_step
-
child_save_reasoner_data
-
child_save_reasoner_state
-
child_load_reasoner_state
-
child_end_session
-
-
-
Define a reasoner table in $ARES/config/ARESConfig.toml or a mission/node/app specific ARESConfig.toml. (See APS Reasoner Configuration Key-Value Pairs)
Required | Table/ Keyword | Type/ Default | Description |
---|---|---|---|
Yes |
APS_REASONERS_name/ APS_REASONERS.xxxx |
Table/ undefined |
Table of specific reasoner definitions. Resides in a specific APS_REASONER_ name table. xxxx is the reasoner id. |
Yes |
APS_REASONERS name/ APS_REASONERS.xxxx/ APS_MODULE_NAME |
str/ undefined |
The reasoner module name (example: APSReasonerRF matches the python modele APSReasonerRF.py) |
APS_REASONERS name/ APS_REASONERS.xxxx/ APS_REASONER_START_STEP |
int/ 1 |
Start APS Step (Integer) |
|
APS_REASONERS name/ APS_REASONERS.xxxx/ APS_REASONER_END_STEP |
int/ 0 |
End APS Step (0 mean run forever) |
|
APS_REASONERS name/ APS_REASONERS.xxxx/ APS_REASONER_STEP_RATIO |
int/ 1 |
Reasoner Step to APS Step ratio - if set to 1, execute a Reasoner step for every APS step - if higher, execute a Reasoner step every x ARES steps. |
|
APS_REASONERS name/ APS_REASONERS.STxx/ SYNC_STEP_RATE |
int/ 60 |
Number of steps between syncing ST events |
|
APS_REASONERS name/ APS_REASONERS.RAxx |
See AEON SDD for RA configuration |
||
APS_REASONERS name/ APS_REASONERS.RFxx |
See AEON SDD for RF configuration |
||
APS_REASONERS name/ APS_REASONERS.RNxx |
See AEON SDD for RN configuration |
||
APS_REASONERS name/ APS_REASONERS.FRxx |
See AEON SDD for FR configuration |
Method | Description |
---|---|
start_session |
Handle any work before starting a session. A typical activity is to check if there is a model or engine ready (example a MPNN model). If not, load either a state file or model description file. |
step |
Handle all work for a step. |
save |
Save any intermediate data and state files. |
end_session |
Handle any work at the end of session including saving any state and data files |
load_state |
Load a state file. |
save_state |
Save a state file. |
-
Access all platform-specific sensors via an instance of a sensor class.
-
Allow users to configure the Reasoner for sensor, platform, and experiment parameters.
-
Store all parameters and intra-session data in a Reasoner-specific APS state file.
10.7. APS Communications
APS supports a range of communications between reasoners, APS apps running on different platforms, between remote APS apps and a APS ground station node, and with the APSUI user interface.
At the basic level, APS communications are handled by the ARES Communications System (ACS). This consists of a set of communication processes and communication modules. ACS supports message passing, inter-platform process communications, and file transfer. However, ACS does not understand higher-level APS, reasoner, and memory specific communications. This section describes APS-specific communications.
APS supports the following communication channels:
-
Log Messages - Log messages (via the ACSInterface module) allow an APS app or reasoner to “log” a message in either the local log file or in the APS network log file attached to an APS ground station node. Log routing is controlled in the $ARES/config/ARESAddresses.csv file. In some configurations, AMS mission software may also log messages in the APS network log file (typically by sending log messages to both the AMS mission ground station and the APS payload ground station).
-
Platform Telemetry - In some cases, mission software also sends telemetry data to the APS ground station (typically by sending log messages to both the AMS mission ground station and the APS payload ground station).
-
APS Memory "Syncing" - Each APS node has a memory that can be sync’d with other node memories. Memory “syncing” involves one node sending memory records to another node.
10.8. APS Frameworks and Libraries
The APS framework provides a set of support libraries to support the development of reasoners. In some cases, the APS reasoning libraries are built on top of other frameworks such as ARES MPNN Library, Scikit-Learn, or OpenCV depending on the host platform. In other cases, the reasoning libraries are native python (with support of Numpy).
10.8.1. APS Prediction Machine Learning Component
The APS prediction machine learning component is a structure for defining and using multi-perceptron neural networks (MPNN) to learn and predict expected data. It’s basically a linear regression model where the inputs "predict" the outputs.
A simple example would be to build a model that would take the local time of day and the day of year to predict an RF power value at a given frequency. After building the model, one could train the model on a set of real RF powers. Then one could use this model to predict future RF powers at a given local time of day and day of year (this is essentially what the APSReasonerRF reasoner does).
The APSModelMPNN module provides a basic structure and parent class for defining such MPNN prediction models. The base provides operations like:
-
Build Model
-
Store and Load Pre-Built Models
-
Save and Load Model States
-
Predict Outputs
-
Compute Error (Loss) Between Predicted and Actual Inputs (example sensor data)
-
Learn Based on Error (Loss) Between Predicted and Actual Inputs (example sensor data)
The component consists of:
-
ACSMPNNLib.py - An ARES simple MPNN library
-
APSModelMPNN.py - The base class
-
APSModelMPNNLibParameter - A parameter-drive predictor build on the ARES simple MPNN library
-
APSModelMPNNTF - A base class for tensorflow models Includes a method for converting tensorflow-based models to tensorflow lite.
-
APSModelMPNNTFParameter - A parameter-drive predictor build on Tensorflow
-
APSModelMPNNTFDirect - An example of tensorflow predictor where the model is built in code.
-
APSModelMPNNTFDirectMNIST - An example predictor build on Tensorflow running the Tensorflow MNIST image classification tutorial
-
APSModelMPNNTFLite - A TF Lite based predictor
11. ARES Mission Subsystem (AMS)
The ARES Mission Subsystem (AMS) provides a framework and example code for developing ground station/remote node network software. AMS can be used to develop remote node control ("flight software") software along with supporting ground/base station software. Based on ACS/APS/AMR, AMS provides a set of development patterns, pre-defined modules, and example missions.
Warning
|
AMS is not meant for complex, time-sensitive flight or field operations. More sophisticated platforms should explore the use of NASA’s F Prime flight software, NASA’s Common Flight Software (cFS) or the Robotics Operating System (ROS). |
In general, users can approach their own software in two ways:
-
Start with a clean sheet design.
-
Modify a reference mission (by copying code to MISSIONxxx modules)
Follow the guidelines in Using ARES, particularly those regarding copying AMS code to your own MISSIONNAMExxxx modules.
Note
|
Some AMS code has a set of "Todo AMS - xxx" comments. These indicate ares that are expected to be updated for a mission. |
11.1. AMS Naming Scheme
All AMS modules follow a naming scheme:
-
AMSx… - AMS Example modules - not part of a reference mission
-
AMSo… - AMS Distributed Observation Network Mission
-
AMSc… - AMS CubeSat Reference Mission
11.2. Basic Architecture
The basic node architecture consists of a collection of ACS/APS-based apps. Each app handles one aspect of the node operations. Each app is a separate process and runs logically in parallel with other apps (how parallel apps really run depends on the processor (multi-core vs single core) and the OS) Node functions are divided between apps. Defining apps and allocating functions is the core of node software design. The Control ("Flight") Software Design Considerations Appendix provides some simple guidelines and thoughts as to approaching control or flight software.
Figure ARES Conceptual Remote Node/Ground Station Node Architecture shows a very basic architecture. Each node consists of a set of apps. Each node must has a "Main Control Program (MCP)" apps. The MCP app handles starting/controlling all other apps. Most nodes have an ACS Manager App which handles inter-node communications. Finally, nodes not on the internet need at least one special link app such as a UHF radio link app or Iridium link app.
11.3. Basic Network Architecture
Networks are built up of multiple nodes (see ARES Conceptual Distributed Architecture). Nodes in a network use ACS to communicate via messages. These messages are send via the Internet (ACS Message Hub) or via specialized a UHF radio link app or Iridium link.
Networks are defined in the $ARES/config/ARESAddresses.csv file.
11.4. Modes
A major concept in control software is the operating mode (sometimes also referred to as states). At the simplest level, operating mode defines what functions should be running at any given time. It may also provide more details about how functions should operate.
The operating mode is often closely linked to the platform state (which is why the term state is often used). A simple example is that a platform may be in an off state, an on with no fault state, and an on with fault state. Corresponding modes might be off (nothing running), nominal (everything running), and safe (only specific apps/functions running to allow base/ground controller to try and remotely fix the platfoms). As can be expected there are a a wide range of mode/state designs depending on the mission. Figure Example Mode Diagram shows an example mode diagram.
11.5. ACS/APS/AMR
ACS provides several key elements in AMS design including:
-
ACS Logging - ACSInterface.py
-
Data Pools and Messages - ACSInterface.py, ACSMessage.py,
-
Message Encoding/Decodig for byte/bit streams - ACSMessageUtils.py
-
ACS App Subsystem - ACSApp.py
-
Platform Constants - ACSPlatform.py
-
Geospatial Operations - ACSLORI.py, ACSSpice.py, ACSSpiceUtils.py
-
Utility Functions - ACSUtils.py
-
Data to/from byte encoding/decoding - ACSUtilsBytes.py
-
Data to/from Binary file encoding/decoding - ACSUtilsIO.py
-
OS Operations - ACSUtilsOS.py
-
Location/Orientation Data Record - ACSPlatformState.py
APS extents ACS to include a reasoner-based processing engine along with reasoner support libraries.
AMR provides a set of functions to manage a remote node including software watchdog timers and remote node software updates.
11.6. Constants
AMS uses several enumeration and string values to define operations. AMScConstants.py is an example module for storing those enumerations and string values. One advantage of defining string values in a central place is to lower the risk of defining two different operations (such as a message type) in different places in the code.
11.7. Telemetry
In addition to * logging, another key node to node communication method is telemetry. Both are based on ACS messages.
Telemetry can be thought of as a standard data message containing current state data of the remote node. Telemetry messages are general sent from the remote node to a base/ground station. There the telemetry data is stored in a simple CSV text file. This file can be access via the standard ARES user interface method. Mission may want to develop more powerful tools for accessing and displaying logging and telemetry data (particularly in real-time and/or via the internet).
The general patter for telemetry is to define a telemetry class that defines and hold a telemetry record. A single remote node app would then be responsible for collecting the data from various other remote node apps, creating a telemetry record instance, and sending to an app on the base/ground control node. An example of this can be found in:
-
AMScTelemetry.py - Defines a telemetry record
-
AMScTelemetryDB.py, AMScTelemetryTable.py - Holds telemetry record at the base/ground control node and provides simple tools for accessing the records.
11.8. MCP Apps
At the core of all nodes is the "Main Control Program (MCP)" app. This app is the initial app started (In fact, it is normally the app called when running the python command - "python AMSAppSCZC.py …". The only real exception is when using AMS’s software watchdog timer.)
Typically, the MCP app (a child of the ACSApp.App) initializes the apps state and then setups all the other apps like:
# Setup Hardware Interface App self._app_hi_address = self._acs.this_app_node_address + 'HI' if self._acs.addresses.have_address(self._app_hi_address): my_app_module_name = self._acs.addresses.module_name(self._app_hi_address) my_app_module = importlib.import_module(my_app_module_name) # noinspection PyUnresolvedReferences self._child_apps.add( in_reset=self._reset_app, in_app_address=self._app_hi_address, in_run_method=my_app_module.app_run )
Then controls the app through calls like:
# Pause the hardware interface app self._child_apps.app_handler(in_app_address=self._app_hi_address).signal_pause() # Run the hardware interface app self._child_apps.app_handler(in_app_address=self._app_zm_address).signal_run()
Determining when an app should pause or run is typically controls my the node modes.
AMS offers several example of MCP apps including AMScAppSCZC.py, AMScAppGRZC.py, AMScAppGSZC.py. As can be seen, most MCP apps have an app type of 'ZC'.
11.9. Inter-app Communication
Most inter-app communications will be done with data pool posts. The data pool (see ACSInterface) allows an app to post a named string or byte record for other apps to use. For example an app that compute location could post a byte record that contains the current platform location. Other apps can then read this byte record to get the current location. Apps can also post named flags to communicate boolean values. For example, an hardware interface app could post a flag indicating that it detected the sun.
The frequency of data posts is mission dependent. Different records or boolean flags may be posted at different rates.
The general approach is for only one app to post a specific data record or flag. Multiple other apps can read then as needed. Limiting posts sources to just one app avoid data race conditions than can occur if multiple apps post the same named record.
The AMS examples provide a pattern to handling such data posts. The approach is similar to telemetry. A class is defined that holds the record (Modules named AMScDPRecXXX.py). This class includes the record fields and methods for converting to/from a byte string. Then one app instantiates the record, fills out the data, and posts the record. Other apps read the record and create their own instantiated record.
An example would be AMScDPRecCDHSensors.py. AMScAppSCHI.py creates and posts the record. AMScAppSCHL.py reads the record and incorporates the data into the next telemetry record for transmission to the base/ground station.
11.10. Inter-node Communication
Inter-node communications is based on ACS messages. Communications is simple:
-
App creates a message (either string or bytes)
-
App call ACSInterface.py to send the message to another app with a specific app address.
-
The message is queued and will be sent when a link is available (or immediately if the node is on the internet) based on the message priority and the number of messages waiting to be sent.
-
The receiving app will get the message once the message is sent through all needed links.
11.11. Hardware Interface
ARES is designed to operate remote nodes. The nodes usually have specific hardware such as sensors or effectors. Any app can access hardware but deciding on which apps should access hardware is a node design decision. Of particular concern is access collision, i.e. when two apps try to simultaneously access the same hardware.
AMS examples below isolate most hardware access to a single app. The only exceptions are the radio link apps and specific hardware access needed by the MCP app prior to starting the primary hardware interface app. See AMScAppSCHI.py as an example where most of the interface goes via I2C and accessing all I2C devices in sequence should reduce the chance of locking up the I2C device.
However, this is truly as design decision.
11.12. ADCS
ARES is designed to run on a wide range of platforms including fixed observation nodes, moving platforms, robots, and even simple CubeSats. In most of these cases, there is a need to determine the platforms location and orientation (particularly to determine sensor orientation such as cameras). In some cases, the platform’s location and/or attitude is controllable. For example robots or CubeSats We lump this under "Attitude Determination and Control System (ADCS)"
Some of the AMS examples below have a separate ADCS app that determines location/attitude and posts that data for other apps. The ADCS app may directly access needed hardware or may depend on other apps to access and post the needed hardware data. The ADCS app then uses that data to determine location and/or attitude. Where applicable, the ADCS app also controls location and/or attitude.
ADCS is often one of the more complicated functions on a remote node. The ADCS architecture is one of the ares that varies the most in remote node designs.
11.13. Links Apps
AMS uses ACS Messages and Networks to provide inter-node communications. Nodes connected via the internet use ACS Message Hub. Nodes may also be connected via specialized communication links via links apps such as UHF radio links and satellite networks like Iridium.
ARES includes a complete Iridium link capability. ARES also includes a simple conceptual UHF radio link example. Finally, see the CubeSat reference mission for another UHF radio link example.
AMS includes several examples of specialized communications links:
11.13.1. Iridium Link Apps Component
Components:
-
AMScAppZI.py
-
AMScAppZG.py
-
AMScAppZW.py
ARES includes a component with several modules supporting communications via the RockBlock Iridium satellite network. See https://docs.rockblock.rock7.com/docs and http://makersnak.com/remote-controlled-weather-station/rockblock/index.html for more information.
The ARES Iridium link support consists of three apps:
-
Remote Platform to/from Iridium Hardware Link Interface App (AMScAppZI)
-
One AMScAppZI App per Iridium hardware device per remote platform
-
-
Ground to Iridium Network Interface App (AMScAppZG)
-
One AMScAppZG per target remote platform
-
-
Iridium Network to ACS Message Hub Web Server App (AMScAppZW)
-
Need to match a AMScAppZW per Iridium hardware device but one AMScAppZW can handle more than one device. The simplest configuration is one AMScAppZW app for all Iridium devices in the network.
-
The Iridium link apps are designed to support up to two Iridium RockBlock hardware radios per remote platform (additional ones could be added but will require some modifications of ACS code). In addition to normal link operations, both AMScAppZI and AMScAppZG include a shared data pool flag that allows sending operations to be blocked. This is useful when mutliple links are available (such as a UHF radio link) and blocking the Iridiums from sending will reduce the potential for duplicate messages from the send queue from being sent.
Remote Platform to/from Iridium Hardware Link Interface App (AMScAppZI)
This simple link app provides a link for sending and receiving messages via the RockBlock Iridium satellite device, i.e. from a remote node such as a satellite. The link handles message with the addresses listed in the link field of the $ARES/config/ARESAddresses.csv file. The module includes the app along with a set of methods for controlling the Iridium interface operations. For example, blocking the use of the Iridium.
AMScAppZI uses bar separated app data field of $ARES/config/ARESAddresses.csv to set the initial values for the following parameters. If the field is empty, then the default value is used. For example: 100|COM3|/dev/ttyUSB0|5|19200|True|X
Field | Type | Default | Description | ||
---|---|---|---|---|---|
MAX_SEND_MESSAGES_PER_STEP |
Int |
100 |
Max number of messages that can be sent per step |
||
SEND_WINDOW_TIME |
int |
3600 |
The send window time in seconds. Iridium messages are limited per step (MAX_SEND_MESSAGES_PER_STEP) and the total number sent in a given time window (say a day). SEND_WINDOW_TIME sets that time window. See Sending Control |
||
MAX_MESSAGES_PER_SEND_WINDOW |
int |
100 |
The maximum number of messages sent to an Iridium per send window. Iridium messages are limited per step (MAX_SEND_MESSAGES_PER_STEP) and the total number sent in a given time window (say a day). MAX_MESSAGES_PER_SEND_WINDOW sets the max number per time window. See Sending Control
|
||
IMEI |
String |
UNKN |
IMEI Address (used for simulation purposes only) |
||
WINDOWS_PORTID |
Str |
COM3 |
Port to use if this is running on a Windows device |
||
LINUX_PORTID |
Str |
/dev/ttyUSB0 |
Port to use if this is running on a Linux device |
||
SERIAL_TIMEOUT |
Int |
5 |
Serial time value |
||
SERIAL_BAUDRATE |
int |
19200 |
Serial baudrate value |
||
AUTO_SESSION |
Bool |
True |
Use auto session controls |
||
FACING |
Str |
X |
Iridium antenna facing (CURRENTLY NOT USED) |
As the Iridium Link app is a link app, it uses the $ARES/config/ARESAddresses.csv Forwarding Table field to indicate what messages should be sent via the Iridium device. The field should either be "ALL" or a bar-separated set of node addresses (see ARESAddresses fields - Forwarding Table).
The Iridium link apps are designed to support up to two RockBlock Iridium hardware radios per remote platform (additional ones could be added but will require some modifications of ACS code). Normally, the Iridium apps should be names xxZI and xxZJ where xx is the node name.
In addition to normal link operations, ACSAppZI includes a Shared Data Pool Block Send flag that allows sending operations to be blocked. This is useful when mutliple links are available (such as a UHF radio link) and blocking the Iridiums from sending will reduce the potential for duplicate messages from the send queue from being sent.
AMScAppZI supports several modes of simulation/operations. To operate:
-
All Types of Operations
-
Set All Node Apps MessageHub field in $ARES/config/ARESAddresses.csv to False.
-
Add an AMScAppZI app for each Iridium to $ARES/config/ARESAddresses.csv
-
Set each AMScAppZI app AppData parameters in $ARES/config/ARESAddresses.csv as specified above (Note: some operation modes ignore the parameters)
-
Set each AMScAppZI Forward Node List to 'ALL' (or specific list if the Iridium only handles certain nodes)
-
Add AMScAppZI to MCP as per MCP App Setup
-
Make sure there is a node running AMScAppZG running the same operations type
-
-
NORMAL - Full Iridium Hardware Operation
-
Set the SIMULATE_IRIDIUM flag in ARESConfig.toml file to 'NORMAL'.
-
Uses a RockBlock Iridium device attached to the platform and operated via the AppData parameters of the $ARES/config/ARESAddresses.csv table.
-
Make sure there is a AMScAppZW Webhook running on a web server.
-
If Shared Data Pool Block Send flag is false, send all routed messages from the ACS Send Queue via a RockBlock Iridium device whenever the Iridium network can be accessed.
-
Receive all messages addressed (IMEI Address) to the attached RockBlock Iridium device whenever the Iridium network can be accessed. Place all received messages in the ACS receive queue.
-
Make sure there is a paired AMScAppZG running.
-
Make sure there is a AMScAppZW Webhook running on a web server.
-
-
LIMITED - Full Iridium Hardware Operation restricted to simulated time windows (useful for simulating orbiting spacecraft but with actual hardware)
-
Define the communications windows via a link table.
-
Set the SIMULATE_IRIDIUM flag in ARESConfig.toml file to 'LIMITED'.
-
Uses a RockBlock Iridium device attached to the platform and operated via the AppData parameters of the $ARES/config/ARESAddresses.csv table.
-
Make sure there is a AMScAppZW Webhook running on a web server.
-
If Shared Data Pool Block Send flag is false, send all routed messages from the ACS Send Queue via a RockBlock Iridium device limited to link table.
-
Receive all messages addressed (IMEI Address) to the attached RockBlock Iridium device limited to the $ARES/resources/sim/sim_iridium.csv link table. Place all received messages in the ACS receive queue.
-
Make sure there is a paired AMScAppZG running.
-
Make sure there is a AMScAppZW Webhook running on a web server.
-
-
SIMULATION_LIMITED - Ground Simulation restricted to simulated time windows (useful for simulating orbiting spacecraft)
-
Define the communications windows via a link table.
-
Set the SIMULATE_IRIDIUM flag in ARESConfig.toml file to 'SIMULATION_LIMITED'.
-
Make sure there is a AMScAppZG running in simulation mode.
-
Make sure there is a AMScAppZW running in simulation mode.
-
No RockBlock Iridium device needs to be present.
-
If Shared Data Pool Block Send flag is false, Sends all routed messages from the ACS Send Queue directly via the ACS Message Hub as fast as the interface allows.
-
Receive all messages addressed addressed to this node limited to the $ARES/resources/sim/sim_iridium.csv link table. Place all received messages in the ACS receive queue.
-
Make sure there is a paired AMScAppZG running in simulation mode.
-
Make sure there is a AMScAppZW Webhook running in simulation mode.
-
-
SIMULATION - Just use ACS Message Hub
-
Set the SIMULATE_IRIDIUM flag in ARESConfig.toml file to 'SIMULATION'.
-
Make sure there is a AMScAppZG running in simulation mode.
-
Make sure there is a AMScAppZW running in simulation mode.
-
No RockBlock Iridium device needs to be present.
-
Receive all messages addressed to this node as fast as the interface allows. Place all received messages in the ACS receive queue.
-
Make sure there is a paired AMScAppZG running in simulation mode.
-
Make sure there is a AMScAppZW Webhook running in simulation mode.
-
Note
|
One can get the number of messages sent and received since last reset by calling the get_iridium_status method from AMScAppZI. |
Warning
|
A common issue seen with when testing the Iridiums is a 'device or resource busy: /dev/ttyUSB0' like error that blocks access to your particular com port. To correct, you need to find the process that has it locked and kill it. Try: 'fusers /dev/ttyUSB0' or 'sudo lsof /dev/ttyUSB0' to get the PID number. Then use 'kill PID' to kill the process. |
Ground to Iridium Network Interface App (AMScAppZG)
This app provides a link for sending messages to multiple Iridium devices via the RockBlock Iridium satellite via the Rockblock Web Interace, i.e. from a ground node. The link handles message with the addresses listed in the link field of the $ARES/config/ARESAddresses.csv file. The module includes the app along with a set of methods for controlling the Iridium interface operations. For example, blocking the use of the Iridium. This app sends messages via an HTTP post to the RockBlock Iridium website.
AMScAppZG uses bar separated app data field of $ARES/config/ARESAddresses.csv to set the initial values for the following parameters. If the field is empty, then the default value is used. For example: 100|COM3|/dev/ttyUSB0|5|19200|True|X
Field | Type | Default | Description | ||
---|---|---|---|---|---|
MAX_SEND_MESSAGES_PER_STEP |
Int |
100 |
Max number of messages that can be sent per step |
||
SEND_WINDOW_TIME |
int |
3600 |
The send window time in seconds. Iridium messages are limited per step (MAX_SEND_MESSAGES_PER_STEP) and the total number sent in a given time window (say a day). SEND_WINDOW_TIME sets that time window. See Sending Control |
||
MAX_MESSAGES_PER_SEND_WINDOW |
int |
100 |
The maximum number of messages sent to an Iridium per send window. Iridium messages are limited per step (MAX_SEND_MESSAGES_PER_STEP) and the total number sent in a given time window (say a day). MAX_MESSAGES_PER_SEND_WINDOW sets the max number per time window. See Sending Control
|
||
Target Iridiums IMEI addresses |
Bar Separated List of IDs |
TBD |
A bar-separated list of target Iridiums IMEI addresses |
Warning
|
In addition, AMScAppZG uses the Iridium account data from ARESMgrUI (See ARES Deployment) |
ACSAppZG supports several modes of simulation/operations To operate:
-
All Types of Operations
-
Set All Node Apps MessageHub field in $ARES/config/ARESAddresses.csv to True.
-
Add AMScAppZI app to $ARES/config/ARESAddresses.csv
-
Set AppData parameters as specified above.
-
Add AMScAppZG to MCP as per MCP App Setup
-
Make sure there is a node running AMScAppZI running the same operations type
-
Make sure there is a node running AMScAppZW
-
Setup the Rockblock Iridium Account/Password via the ARESMgrUI (See ARES Deployment)
-
-
NORMAL or LIMITED - Full Iridium Operation
-
Make sure there is a paired AMScAppZI running.
-
Make sure there is a AMScAppZW Webhook running on a web server.
-
Set the SIMULATE_IRIDIUM flag in ARESConfig.toml file to false.
-
If Shared Data Pool Block Send flag is false, send all routed messages from the ACS Send Queue via a RockBlock Iridium network.
-
-
SIMULATION or SIMULATION_LIMITED - Just use ACS Message Hub
-
Make sure there is a paired AMScAppZI running in simulation mode.
-
Make sure there is a AMScAppZW running in simulation mode.
-
Set the SIMULATE_IRIDIUM flag in ARESConfig.toml file to true.
-
No RockBlock Iridium device needs to be present.
-
If Shared Data Pool Block Send flag is false, Sends all routed messages from the ACS Send Queue directly via the ACS Message Hub as fast as the interface allows.
-
Warning
|
Messages sent to an Iridium sit in the Iridium Rockblock queue until the target Iridium device reads them. Unlike the ACS message queues and ACS Message Hub, the reset flag does not clear this queue. |
Sending Control
Warning
|
Pay attention to the parameters. They are very dependent on the operating enviroment. DO NOT JUST USE THE EXISTING VALUES! Failure to do so may result in messages stacking up in the Iridium Network and never deliveried or under utilization of the network! |
The nature of sending messages to Iridium hardware devices through the Iridium network can create a "disconnect" between that rate that messages can be sent and the rate they can be received. Receiving a messages on the Iridium hardware device depends on connections to the Iridium network. For example, satellite connections can only work when the satellite antenna can link to an Iridium spacecraft. Whereas sending messages from the ground to the Iridium network for delivery can be done continuously, i.e. they can always be sent.
This scenario gets more complicated when a remote platform has multiple Iridiums and there is no easy way to know which Iridium will be able to connect with the Iridium network at any given time. A good example would be a spinning spacecraft with two Iridiums with an antenna on opposite sides.
To handle such scenarios, the Iridium link uses the following algorithm for sending messages.
-
There should be one Iridium Link app (AMScAppZG) per target node (not one per Iridium device on the target node)
-
The basic idea is that there is a window of time in which only a limited number of messages can be sent to each Iridium. This will control to flow of messages via the Iridiums and limit the number of messages sent via the Iridiums to a number of messages that can actually be read by the remote node considering things like antennas, Iridium visibility, and remote node power.
-
Another key idea is that messages are sent to different Iridiums during the step. In the case of two Iridiums, messages are sent to alternating Iridiums.
-
Finally, the use of the Iridiums can be controlled by other apps by setting/clearing blocking flags. An example would be to block the use of the Iridiums while another link (UHF radio) is operating or controlling the use of the Iridiums based on link schedules.
To support this algorithm, there are several key inputs:
-
Step_Rate - App Step rate in seconds (set via step rate field ARESAddresses entry)
-
Target_Node - Target node address (2 character node address) (set via the target app field of ARESAddresses)
-
Send_Window_Time - The send window is used to control the maximum number of messages sent during a given time. This prevents sending more messages to the Iridiums than can be read at the receiving end. A typical send_window time might be an hour (3600) (set via the app data field of ARESAddresses)
-
Max messages to be sent per step (set via the MaxMessages field of ARESAddresses)
-
Max messages to be sent during a send window (set via the MaxMessages field of ACSARESAddressesAddresses) This number needs to be computed based on simulations of the remote nodes, antenna placements, and the Iridium network. Too low a number will not take full advantage of the available bandwidth but too high a number will result in messages stacking up in the Iridum network and never getting to the remote node.
-
List of Iridium IMEIs on the target node (set via the app data field of ARESAddresses)
App Step:
-
Check for any signals to block/unblock all Iridiums update Block_All
-
Check for any signals to block/unblock specific Iridiums - update Iridium_Active
-
If we are blocked from sending messages (Block_All=true) - exist step
-
If we are blocked from sending messages through all Iridiums (all Iridium_Active=true) - exist step
-
Check current send window time - have we started a new send window? If so, reset iridium messages to zero
-
Set the current Iridium to the first Iridium that is active and can send messages, if none, exist step
-
Loop until we hit max sent messages per step or until there are no more messages to send
-
Send the next message addressed to the target node to current Iridium
-
Increment the number of messages sent this step
-
Increment the number of messages sent in this send window for the current Iridium
-
Switch current Iridium to the next iridium that is both active and has not maxed out the number of messages per send window
-
If there is no iridium that is both active and has not maxed out the number of messages per send window exit step
-
Iridium Network to ACS Message Hub Web Server App (AMScAppZW)
This app provides a webhook for receiving messages from remote platforms communicating via a hardware Iridium RockBlock device via the Iridium network.
To use the webhook, one starts the AMScAppZW app using the commands below. The app then runs, waiting for a request from the Iridium network to deliver a message. When called, the network delivers a message and ACSAppZW puts this message in the ACS Message Hub for delivery to the appropriate app.
To use AMScAppZW:
-
Make sure there is a line in $ARES/config/ARESAddresses.csv with AMScAppZW with the following settings
-
AppAddress - GZZW
-
Module - AMScAppZW
-
IsGroup - f
-
IsLink - f
-
IsMCP - t
-
MessageHub - t
-
UseMessageQueues - f
-
AppData - USED ONLY FOR SIMULATION:
-
Field | Type | Default | Description |
---|---|---|---|
MAX_SEND_MESSAGES_PER_STEP |
Int |
100 |
Max number of messages that can be received per step |
To launch AMScAppZW in simulation mode:
python AMScAppZW.py -m GZZW -r true
Webserver Management
Starting the AMScAppZW webhook app is different from other ARES apps. Please follow the instructions for installing a webserver at Webserver Installation
Once installed, you have to manage the webserver like any other server.
-
Periodically, one should log onto the webserver and make sure the OS is updated
sudo apt update sudo apt full-upgrade sudo reboot
-
To see if messages are being passed from the Iridium network to the ACS Message Hub, you can check the logs:
cat /var/apache2/log/error.log You should see lines like: [Fri Jun 18 14:48:05.931611 2021] [wsgi:error] [pid 507:tid 140683783837440] [remote 212.71.235.32:43172] Fri Jun 18 14:48:05 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Input: message from: S1ZC [Fri Jun 18 14:48:05.931639 2021] [wsgi:error] [pid 507:tid 140683783837440] [remote 212.71.235.32:43172] Fri Jun 18 14:48:05 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Input: message contents: 1624027574,-1,-1,-1,-1,,,,S1ZC,Starting App S1ZI [Fri Jun 18 14:48:05.931663 2021] [wsgi:error] [pid 507:tid 140683783837440] [remote 212.71.235.32:43172] Fri Jun 18 14:48:05 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Message hub index: GAC_MAIN [Fri Jun 18 14:48:05.931688 2021] [wsgi:error] [pid 507:tid 140683783837440] [remote 212.71.235.32:43172] Fri Jun 18 14:48:05 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW IridiumWebHook Forwarded Message to GSZC from Iridium 300434064049260 [Fri Jun 18 14:48:39.092075 2021] [wsgi:error] [pid 507:tid 140683750266624] [remote 212.71.235.32:43352] Fri Jun 18 14:48:39 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Input: lat: 38.6046 [Fri Jun 18 14:48:39.092129 2021] [wsgi:error] [pid 507:tid 140683750266624] [remote 212.71.235.32:43352] Fri Jun 18 14:48:39 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Input: lon: 38.6046 [Fri Jun 18 14:48:39.092157 2021] [wsgi:error] [pid 507:tid 140683750266624] [remote 212.71.235.32:43352] Fri Jun 18 14:48:39 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Input: imei: 300434064049260[Fri Jun 18 14:48:39.092181 2021] [wsgi:error] [pid 507:tid 140683750266624] [remote 212.71.235.32:43352] Fri Jun 18 14:48:39 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Input: time sent: 21-06-18 14:48:32 [Fri Jun 18 14:48:39.092209 2021] [wsgi:error] [pid 507:tid 140683750266624] [remote 212.71.235.32:43352] Fri Jun 18 14:48:39 2021 LTi:-1 LSt:-1 STi:-1 SSt:-1 GZZW Input: data: 4741432020204d41494e202047535a4353315a4d584c41d8332c6dc184f41351000000110000000000000000ffd574eb303030303030303030313632343032373537352c2d312c2d312c2d312c2d312c2c2c2c53315a4d2c5374617274696e672053657373696f6e cat /var/apache2/log/access.log You should see lines like: 212.71.235.32 - - [18/Jun/2021:14:48:39 +0000] "POST / HTTP/1.1" 200 299 "-" "Rock7PushApi"
ACSAppZW Simulation Mode
ACSAppZW can also run in simulation mode to support ACSAppZI modes c/d and ACSAppZG mode d.
To run in simulation mode, launch on any machine connected to the internet:
cd $ARES/src python ACSAppZW.py -r t -m GZZW
11.13.2. UHF Radio Link Example #1
Note
|
This section provides example information on implementing a UHF radio link. It is not fully implemented. |
Modules:
-
AMSxAppLinkUHFEx1BS.py
-
AMSxAppLinkUHFEx1RP.py
-
AMSxAppLinkUHFEx1RadioOps.py
A node link provides a method for sending ACS messages between platforms. This section describes an example radio link with a pair of radio handler apps. This example assumes:
-
Half-Duplex - Transmission and Reception are done on the same frequency.
-
Radio States: Off, Standby, Listen, Transmit
-
Capable of transmitting/receiving a message radio packet (undefined)
ACS handles most of the higher-level communication stack functions so are not needed by the radio or radio link apps:
-
Message integrity (ACS messages contain a checksum that is checked by ACSInterface)
-
Message acknowledgements
-
Message retransmission
-
File transfers
This radio link app example handles the following:
-
Control of radio state (on/off, transmit message, listen/receive messages)
-
Control of when the radio transmits and when it listens/received
-
Control of when it is ok for a radio to transmit
-
Control of if/when to transmit a beacon message (i.e. do not use any built-in automatic beacon capability since the AMS radio link controls the timing of when to transmit and when to listen).
Note
|
The radios just need to be able to (1) transmit a message (string of bytes) on command; (2) listen, receive messages, and store received messages in a buffer; (3) and provide the messages upon request. Interface to the radios are encapsulated in python methods. Radio apps/radios on each end of the radio link “reflect” each other, i.e. the operate basically the same following the same control algorithms. The only differences are in the base level interface methods (see below). |
The radio handler apps provide a radio link between the remote node and the ground radio node. They work with the ACS as they handle passing of messages from remote node apps to/from ground radio node apps. They also directly interact with other node apps to handle specific situations such as broadcasting unacknowledged messages and handling radio states and errors.
The figure below shows the basic radio app process flow for communicating. During operation, the radios can be operating in a “active” mode or a “passive” mode. The active radio is responsible for sending a broadcast message indicating that it is available. The passive radio just listens for this signal. Either or both remote node or ground station radios be active and the state can be changed during a mission. The radio can also be blocked from transmitting. When blocked, the radio can only receive messages.
The example radio app assume that the radios can either transmit or receive message packets but not at the same time. It also uses the broadcast message at an indicator when it is in communications with the opposite radio and should send some regular messages (note: regular message acknowledgements are handled by the ACS Manager app and do not need to be handled by the radio apps).
11.13.3. Link Tables
Communication link tables define communications targets. They are used for link simulations with or without hardware. Link tables are simply text files where each line is a link source. They are located in $ARES/resources/sim. The tables are named:
-
sim_iridum.csv - Iridium link table
-
sim_uhf.csv - UHF radio link table
Each link table consists of a text line. Line’s beginning with '#' are comments and ignored. Each line consist of a link name (such as 'Iridium-1', type, X, Y, Z, and distance.
-
Name - Comm window identifier
-
Type - Indicates the frame for the window
-
LLA - Latitudinal where x is decimal degrees latitude, y is decimal degrees longitude, and z is altitude (distance from earth center in Km)
-
Cart - Cartesian coordinates
-
ECI - ECI coordinates (Default)
-
-
X, Y, Z - Coordinate
-
Distance - The max distance that the platform can be to send/receive to this link.
11.14. Ground/Base Stations
Most missions will include some form of ground or base station node. This node provides a point for collecting log, telemetry, and memory (APS) data. It also serves as a connection point for a ARES User Interface. Missions can extent the basic User Interface functions found in ARESUI. An example can be found in AMScUI.py,
12. AMS Reference Missions
12.1. Distributed Observation Network
Target: Simple Distributed Observation Network UI: AMSoUI.py - Command Line UI
Components:
-
AMSoTGZC.py
-
AMSoTxZC.py
-
AMSoTxRS.py
AMS provides a framework and example code for developing ground station/remote node software. The example is of a distributed observation network consisting of a pair of base station nodes and a set of observation nodes, some of which are on the other side of a special link.
In addition to serving as a simple example of an ARES-based network, it also serves as the primary testbed for ACS apps and ACS node-based communications.
This reference mission uses a base station and a base memory node (which also serves as a backup base station). Both receive and store all log, telemetry, and APS memory data from remote nodes. Both can be used as to send commands and receive responses. However, individual commands and their responses should only use one of the base stations. To send commands, one "attaches" to a base station node via ARESUI. Then one sends commands to remote nodes and gets responses. However, the responses only go to the base station that was attached to. In other words, the command responses will only go to one of the stations, not both.
The base station serves as a routing node, forwarding received messages to the memory node.
To run (these are Linux directions, make appropriate adjustements when running on windows):
-
Change the ARESAddresses and ARESConfig to the Test set
-
Run ARESMgrUI.py, x option, select AMSDON - this will change the config to the AMS Distributed Observation Network config
-
Do this on all platforms you plan to use
-
-
To run on a single machine (Linux, MacOS, or Windows WSL):
-
./AMSDONLaunch.sh
-
Open another shell and run AMScUI.py and attach to TGZC
-
-
To run on multiple machines:
-
Open 8 shells (terminal windows)
-
Two should be on the same platform.
-
The others can be on the same platform or on other platforms.
-
-
Navigate to $ARES/src
cd $ARES/src
-
Run ARESUI.py in all shells (terminal windows)
python ARESUI.py
-
On the platform with two shells (terminal windows).
-
use one to launch TGZC (Launch a node → Base Station (BS) Node → TGZC)
-
use the other to attach to the TG base station node just launched
-
-
In one of other shells (terminal windows), launch the memory node:
-
THZC (Launch a node → Base Station (BS) Node → THZC)
-
-
In one of other shells (terminal windows), launch the app link node:
-
TLZC (Launch a node → Base Radio Link (BR) Node → TLZC)
-
-
Finally, in the other four shells (terminal windows), launch the observation nodes:
-
T1ZC (Launch a node → Remote Platform (RP) Node → T1ZC)
-
T2ZC (Launch a node → Remote Platform (RP) Node → T2ZC)
-
T3ZC (Launch a node → Remote Platform (RP) Node → T3ZC)
-
T4ZC (Launch a node → Remote Platform (RP) Node → T4ZC)
-
The network is now running. You should see startup messages from the observation nodes show up on the two base station node.
-
-
12.2. Cubesat Reference Mission
Target: Simple CubeSat Mission UI: AMScUI.py - Command Line UI
Components:
-
AMScConstants.py
-
AMScAppGRRS.py
-
AMScAppGRZC.py
-
AMScAppGSHL.py
-
AMScAppGSZC.py
-
AMScAppSCAD.py
-
AMScAppSCHI.py
-
AMScAppSCHL.py
-
AMScAppSCRG.py
-
AMScAppSCZC.py
-
AMScDPRecADCS.py
-
AMScDPRecADCSSensors.py
-
AMScDPRecCDHSensors.py
-
AMScDPRecEPS.py
-
AMScDPRecModesStates.py
-
AMScDPRecSolarPanelSensors.py
-
AMScInterface_PIGPIO.py
-
AMScInterface_ADS1015.py
-
AMScInterface_FXAS21002C.py
-
AMScInterface_FXOS8700CQ.py
-
AMScInterface_MCP9600.py
-
AMScInterface_MMC5883.py
-
AMScInterface_TCA9548A.py
-
AMScInterface_TMP100.py
-
AMScInterface_CubeSatRadio.py
-
AMScInterface_GroundRadio.py
-
AMScInterface_EPS.py
-
AMScTelemetry.py
-
AMScTelemetryDB.py
-
AMScTelemetryTable.py
-
AMScUHFRadioSim.py
-
AMScUHFRadioSupport.py
To run (these are Linux directions, make appropriate adjustements when running on windows):
-
Change the ARESAddresses and ARESConfig to the Test set
-
Run ARESMgrUI.py, x option, select AMSCubeSatRef - this will change the config to the AMS Distributed Observation Network config
-
Do this on all platforms you plan to use
-
-
To run on a single machine (Linux, MacOS, or Windows WSL):
-
./AMScCubeSatRefLaunch.sh
-
Open another shell and run AMScUI.py and attach to TGZC
-
-
To run on multiple machines:
-
Open 5 shells (terminal windows)
-
Two should be on the same platform.
-
The others can be on the same platform or on other platforms.
-
-
Navigate to $ARES/src
cd $ARES/src
-
Run ARESUI.py in all shells (terminal windows)
python ARESUI.py
-
On the platform with two shells (terminal windows).
-
use one to launch GSZC (Launch a node → Base Station (BS) Node → CSZC)
-
use the other to attach to the GS base station node just launched
-
-
In one of other shells (terminal windows), launch the memory node:
-
CAZC (Launch a node → Memory (ME) Node → CAZC)
-
-
In one of other shells (terminal windows), launch the radio app link node:
-
CRZC (Launch a node → Base Radio Link (BR) Node → CRZC)
-
-
Finally, launch the cubesat nodes:
-
C1ZC (Launch a node → Remote Platform (RP) Node → C1ZC)
-
-
The network is now running. You should see startup messages from the observation nodes show up on the two base station node.
-
Note
|
In the default configuration, the Iridium links are turned off. Please review the Iridium links before turning on. |
AMS provides a framework and example code for developing ground station/remote node software. The example is a CubeSat satellite with a core Raspberry Pi as flight/payload processor.
-
Raspberry Pi class processor running Raspberry Pi OS or another Linux OS.
-
No real-time or high-speed processing requirements (it is assumed that such operations have been off-loaded to dedicated microcontrollers or other processors).
-
Interfaces with external hardware are generally of the form of request-response.
-
Need to be able to update software during remote operations.
This section describes an approach for the development of a mission network including the spacecraft and ground observation node flight software.
Note
|
This example is based on a typical satellite/ground station network. We use the term flight software to refer to all the remote node software. |
This reference mission consists of one or more identical remote nodes on remote platforms (spacecraft) that includes apps for controlling the remote node (flight software) as well as an APS payload with a set of APS experiments with associated reasoners. In addition, there is a ground station node for monitoring/controlling the remote node flight software and a ground memory node for monitoring/controlling the remote payload (APS experiments with associated reasoners). Finally, communications is provided using a combination of Iridium, UHF, and S-Band communiction nodes. This may include a remote antenna, radio node, and/or Iridium gateways depending on the communications method.
12.2.1. AMS Reference Mission - CubeSat
AMS provides a variety of modules to support various remote platform designs. AMS was developed with two reference platforms, a simple CubeSat class spacecraft and a more complex CubeSat spacecraft with multiple sensors.
Both reference missions use the same basic software architecture. The primary difference relates to flight and payload hardware.
The CubeSat class spacecraft consists of the following hardware components:
-
Raspberry Pi 3B
-
Raspberry Pi V2 Camera
-
Dual Iridium Radios
-
UHF SDR Transceiver
-
SDR Receiver-Base RF Sensor
-
Real-Time Clock
-
Hardware Watchdog Timer
-
EPS (Power System) including 5 solar panels
12.2.2. Definitions
Term | Definition |
---|---|
Reboot Data |
Reboot data is data which is set before a reboot and which is expected to be acted on by the flight software after reboot in the boot mode. It may be as simple as logging some issue or running some specific test. |
Target Mode |
The target mode tells the flight software if the ground wants to keep the spacecraft in a given mode regardless of other conditions. |
12.2.3. Modes
Mode | Description | ||
---|---|---|---|
Stowed |
Condition of spacecraft during launch. No software activity. |
||
Charging |
Flight processor is off but the EPS is on and monitoring battery power levels. |
||
Boot |
Boot mode handles any operations that need to be completed before the spacecraft can be considered running. These include:
|
||
Safe |
Safe mode is a condition where the spacecraft handles minimal operations. |
||
Nominal |
All operations including payload operations |
12.2.4. Apps
AMS uses standard module names to identify types of components. For example:
-
Modules named AMSDPRecXXX hold data pool records.
-
AMSInterfaceXXX provide direct hardware interface and supporting modules.
Spacecraft apps/modules:
-
SxZC - AMSAppSCZC - MCP App (also handles Software Watchdog timer interface)
-
Input: EPS Data Post (AMSDPRecEPS/AMSConfiguration.DATA_POOL_EPS) - specifically battery level
-
Output: Modes and App States (AMSDPRecModesStates/AMSConfiguration.DATA_POOL_MODES_STATES)
-
-
SxZM - AMSAppSCZM - ACS Manager App
-
SxHI - AMSAppSCHI - Hardware Interface App (I2C, Sense-Hat, EPS)
-
Uses: AMSInterfacePIGPIO
-
Uses: AMSInterfaceSolarPanel
-
Action: Read hardware values on each step and publish them for other apps to use
-
Output: EPS Data Post (AMSDPRecEPS/AMSConfiguration.DATA_POOL_EPS)
-
Output: ADCS Sensor Data Post (AMSDPRecADCSSensors/AMSConfiguration.DATA_POOL_SENSORS)
-
Output: Solar Panel Data Post (AMSDPRecSolarPanelSensors/AMSConfiguration.DATA_POOL_SOLAR_PANELS)
-
Output: C&DH Data Post (AMSDPCDHSensors/AMSConfiguration.DATA_POOL_SOLAR_PANELS)
-
Note
|
AMS design has a single app access all external sensor hardware. Mission should consider whether this should be broken into multiple apps. Considerations include parallel access across devices like I2C, data acquisition rates, and the hardware faults. |
-
ScAD - AMSAppSCAD - ADCS App
-
Input: ADCS Sensor Data Post (AMSDPRecADCSSensors/AMSConfiguration.DATA_POOL_SENSORS)
-
Action: Using sensor data, compute spacecraft location/orientation
-
Action: Using sensor data, perform any active ADCS actions
-
Output: ADCS Results Post (AMSDPRecADCS/AMSConfiguration.DATA_POOL_ADCS)
-
-
SxHL - AMSAppSCHL - Health, Fault, and Telemetry App
-
Uses: AMSInterfacePIGPIO - Handles I2C / EPS Interface
-
Uses: AMSInterfaceSolarPanel - Handles Solar Panel Interface
-
Input: Modes and App States (AMSDPRecModesStates/AMSConfiguration.DATA_POOL_MODES_STATES)
-
Input: ADCS Results Post (AMSDPRecADCS/AMSConfiguration.DATA_POOL_ADCS)
-
Input: EPS Data Post (AMSDPRecEPS/AMSConfiguration.DATA_POOL_EPS)
-
Input: ADCS Sensor Data Post (AMSDPRecADCSSensors/DATA_POOL_SENSORS)
-
Input: Solar Panel Data Post (AMSDPRecSolarPanelSensors/AMSConfiguration.DATA_POOL_SOLAR_PANELS)
-
Input: C&DH Data Post (AMSDPCDHSensors/AMSConfiguration.DATA_POOL_SOLAR_PANELS)
-
Action: Compile a telemetry and beacon telemetry records
-
Action: Determine if there is a fault that requires processor reboot?
-
Output: Telemetry Record (AMSTelemetry/DATA_POOL_TELEMETRY_MESSAGE)
-
Output: Broadcast Telemetry Record (AMSTelemetry/DATA_POOL_BEACON_MESSAGE)
-
-
SxRG - AMSAppSCRG - UHF Radio Interface App
-
Input: Messages from Send Queue
-
Input: Beacon Message Post (AMSTelemetry/AMSConfiguration.DATA_POOL_BEACON_MESSAGE)
-
Output: UHF Radio Record (AMSRecordUHFRadio/AMSConfiguration.DATA_POOL_UHF_RADIO)
-
Uses: AMSEndurosatRadio - Handles Endurosat Type II UHF radio
-
Uses: AMSEndurosatRadioPacket - Endurosat Radio Packet
-
Uses: AMSEndurosatRadioSCW - Radio records
-
-
SxZI - AMSAppSCZI - Iridium Link App
-
Input: Messages from Send Queue
-
Output: Message to Receive Queue
-
-
SxAx - APSApp - APS Payload Apps (also handles Camera and Payload RF Sensor Interfaces)
Ground AMS Modules:
-
GRSZ
-
GRZM
-
GRRS
-
Uses: AMSEndurosatRadioPacket - Endurosat Radio Packet
-
-
GSZC
-
GSZM
-
GSHL
-
ARESUI - Provides a user interface for accessing telemetry and log data as well as sending commands.
-
Please review ARES User Interface and ARESUI.py for a list of supported ground to spacecraft commands.
-
Please review ARES User Interface and ARESUI.py for a information about access telemetry and log data
-
12.2.5. Modules
In addition to the modules supporting the AMS apps described above, there are several other modules:
-
AMSConstants - provides system-wide constant settings for AMS modules
-
Hardware Interface Modules - AMS contains a number of hardware interface modules (AMSInterfaceXXX) that are used to access hardare. Most access is via the HI app but there are special cases for the radio (via the radio link apps) and the MCP app (AMSAppSZ) that needs some EPS access during boot mode.
-
AMSTelemetry - Holds methods for both a telemetry data pool post (from AMSAppHL) and a telemetry message to be sent to the ground station.
-
AMSTelemetryDB - Provides telemetry database support for ground stations
-
AMSTelemetryTable - Provides methods for accessing a telemetry database and displaying results
-
AMSUSTelemetry - Provides high level user-interface methods for accessing a telemetry database and displaying results
-
-
Data Pool Record Methods - see below
-
Support methods - additional methods for example AMSUHFxxx modules for supporting the UHF radio
12.2.6. Data Pool
Most inter-app data transfer on-board the spacecraft is done via the data pool. Messages are normally only used for communicating with other nodes such as the ground station.
The basic approach is for one app to periodically post a record that contains the current set of data for a specific aspect of the spacecraft. These data pool posting are then read by other apps as needed. In most cases, just one other app reads the posting but there are cases where more than one app reads the posting. For example, the MCP app posts a modes/state data pool record on each step containing the current spacecraft mode.
Data pool records are defined by the AMSDPRecXXX modules.
Warning
|
The data pool records are the closest thing AMS has to a set of global variables. This is particularly true as the normal way of working with them is for the source app to create a record object once, update the fields as they change, and post the current state whenever they change. In general, this is a dangerous design as the data is not well encapsulated and any code can make changes. But it does reduce the memory garbage collection. Programmers are reminded to keep track of who is changing the values by looking at variable references. In general, keep non-initialization/non-DPRecXXX module writes to one place in the code. |
Destination SxZC | Destination SxZM | Destination SxZI | Destination SxHI | Destination SxHL | Destination SxAD | Destination SxRG | Destination GSRG | Destination GSZC | |
---|---|---|---|---|---|---|---|---|---|
Source SxZC |
ModesStates |
Log |
|||||||
Source SxZC |
Log |
||||||||
Source SxZM |
Log |
||||||||
Source SxZI |
Log |
||||||||
Source SxHI |
DP:EPS (Battery) |
EPS SolarPanelSensors CDHSensors ADCSSensors |
ADCSSensors |
Log |
|||||
Source SxHL |
Telemetry Beacon |
Log |
|||||||
Source SxAD |
ADCS |
Log |
|||||||
Source SxRG |
UHFRadioStatus |
Telemetry |
Log |
||||||
Source ARESUI |
Target_Mode_Cmd Set_Battery_Lv_Cmd OS_Cmd Reboot_Cmd Restart_Cmd Restart_w_Reset_Cmd Revert_Cmd Update_Cmd Send_File Request_File_Cmd Send_Message Set_App_Settings_Cmd Clear_App_Settings_Cmd |
Send_File Request_File_Cmd Send_Message Set_App_Settings_Cmd Clear_App_Settings_Cmd |
Send_File Request_File_Cmd Send_Message Set_App_Settings_Cmd Clear_App_Settings_Cmd |
Set_EPS_Setting_Cmd Send_File Request_File_Cmd Send_Message Set_App_Settings_Cmd Clear_App_Settings_Cmd |
Send_File Request_File_Cmd Send_Message Set_App_Settings_Cmd Clear_App_Settings_Cmd |
TLE_File Set_Xmt_On_Off_Cmd Set_Radio_Settings_Cmd Request_File_Cmd Send_Message Send_File Set_App_Settings_Cmd Clear_App_Settings_Cmd |
Send_File Send_Message Request_File_Cmd Set_App_Settings_Cmd Clear_App_Settings_Cmd |
12.2.8. UHF Radio Link
Note
|
This section describes a UHF radio link. Please review ARES Links before continuing. |
AMS includes a UHF radio link designed to connect a ground radio node with a spacecraft node.
Modules:
-
AMScAppGRRS.py
-
AMScAppSCRG.py
-
AMScUHFRadioSim.py
-
AMScUHFRadioHardware.py
-
AMScUHFRadioSupport.py
The node link provides a method for sending ACS messages to and from the CubeSat. The radio link app assumes the following radio capabilities:
-
Half-Duplex - Transmission and Reception are done on the same frequency.
-
Radio States: Off, Standby, Listen, Transmit
-
Capable of transmitting/receiving a messages via a byte stream
-
Direct commands to control radio state
-
Additional radio state controls via a byte string (referenced here to as 'scw')
-
Ability to collect and return radio status data (but not while transmitting or receiving)
-
Handshake consists of a DIR signal indicating the direction of transmission and an SACK signal acknowledging the DIR signal.
ACS handles most of the higher-level communication stack functions so are not needed by the radio or radio link apps:
-
Message integrity (ACS messages contain a checksum that is checked by ACSInterface)
-
Message acknowledgements
-
Message retransmission
-
File transfers
All spacecraft nodes should include:
-
ACS Manager App with an address link such as 'SCZC' or 'SxZC' (where x is the spacecraft number)
-
ACSAppSCRG app with an address link such as 'SCRG' or 'SxRG' (where x is the spacecraft number)
-
Specific routing information (see Link Forwarding) in the $ARES/config/ARESAddresses.csv file
-
-
Specific link app parameters in ARESConfig.toml (see below for specifics)
The ground radio node should include:
-
ACS Manager App with an address link such as 'GRZC'
-
One ACSAppGRRS app for each spacecraft with an address link such as 'GRRS' or 'GRRx' (where x is the target spacecraft number)
-
Specific routing information (see Link Forwarding) in the $ARES/config/ARESAddresses.csv file
-
-
Specific link app parameters in ARESConfig.toml (see below for specifics)
The basic flow per step is:
-
Take all messages from the send queue which have a target node address in the links target address list.
-
Send these messages to the linked node via the link’s medium (radio, serial, internet, etc.).
-
For ground nodes connected to the ACS Message Hub via the Internet
-
Take all messages from the ACS Message Hub queue targeting a node in the links target address list
-
Send these messages to the linked node via the link’s medium (radio, serial, internet, etc.).
-
-
Receive messages from the linked node via the link’s medium (radio, serial, internet, etc.).
-
Put messages addressed to the local node in the local node receive queue.
-
Put messages addressed to another node in the local node send queue. These messages should then be forwarded on by another link app on the local platform (i.e. these messages are “routed”).
The AMS Radio apps control:
-
Control of when the radio transmits and when it listens/received
-
Control of when it is ok for a radio to transmit based on commands from Ground Station UI
-
Control of if/when to transmit a beacon message (i.e. do not use any built-in automatic beacon capability since the AMS radio link controls the timing of when to transmit and when to listen).
To handle communications on a single frequency requires the spacecraft radio and ground radio to follow a simple handshake operation. On each step, the ground radio node (AMSAppGRRS) attempts to initiate contact based on a table of contact passes. Contacts alternate between uplink and downlink operations per step.
image::AMScCubeSat_Ref_UHF_Radio_Ops.png["AMS Radio Link Operation",align="center", link="img/AMScCubeSat_Ref_UHF_Radio_Ops.png"]
The AMS UHF radio link is controlled by several parameters in ARESConfig.toml and $ARES/config/ARESAddresses.csv. Some of these parameters can also be controlled by signals from the ground station to either the Ground Radio Node or Spacecraft Nodes.
-
To setup ACSAppSCRG:
-
Add an ACSAppSCRG app for each spacecraft node to $ARES/config/ARESAddresses.csv
-
Set MessageHub field in $ARES/config/ARESAddresses.csv to False.
-
Set each ACSAppSCRG Forward Node List to 'ALL'
-
Set the target app field to the address of the ground radio node ACSAppGRRS app that handles the link
-
Add the app to spacecraft MCP as per MCP App Setup
-
Set the app data fields in $ARES/config/ARESAddresses.csv
-
Make sure 'cubesat_uhf_transceiver' is set in the spacecraft node platform If not included, the link will operate in simulation mode - see below
-
Set the SIMULATE_UHF_RADIO flag in ARESConfig.toml file to NORMAL, SIMULATION, or SIMULATION_LIMITED. If set to SIMULATION or SIMULATION_LIMITED, the link will operate in simulation mode - see below
-
-
To setup ACSAppGRRS:
-
Add one ACSAppGRRS app for each target spacecraft in the ground radio node to $ARES/config/ARESAddresses.csv
-
Set MessageHub field in $ARES/config/ARESAddresses.csv to True.
-
Set Forward Node List field to 'Sx' where x is the target spacecraft number
-
Set the target app field to the address of the spacecraft node ACSAppGRRS app that handles the link
-
Add the app to ground radio node MCP as per MCP App Setup
-
Set the app data fields in $ARES/config/ARESAddresses.csv
-
Make sure 'cubesat_uhf_transceiver' is set on the ground radio node platform If not included, the link will operate in simulation mode - see below*
-
Set the SIMULATE_UHF_RADIO flag in ARESConfig.toml file to NORMAL, SIMULATION, or SIMULATION_LIMITED. If set to SIMULATION or SIMULATION_LIMITED, the link will operate in simulation mode - see below
-
Warning
|
Both nodes of the UHF link must be operating with hardware or in simulation mode. |
Pass Table
This link is a "ground-initiated" link system, i.e. the ground initiates links. It includes the ability to limit attempts by the ground to connect to the spacecraft via a "pass table"
The contact pass data is read from a simple text file consisting of start and stop times in UTC. The contact pass file is found in $ARES/resources/pass/node-address.txt (Example: $ARES/pass/grr1.txt) The times are in date month year hour:min:sec format (example: 1 Jan 2021 06:36:32.879).
Warning
|
Pass information times must be in time order from earliest to latest! |
The file format can either be a STK-generated access table of the form:
10 Mar 2021 07:15:09 FOR UNFUNDED EDUCATIONAL USE ONLY Satellite-DORRE-Transmitter-DORREtxUHF-To-Facility-GndStation-Receiver-RxG: Access Summary Report DORREtxUHF-To-RxG ----------------- Access Start Time (UTCG) Stop Time (UTCG) Duration (sec) ------ ----------------------- ----------------------- -------------- 1 1 Jan 2021 06:36:32.879 1 Jan 2021 06:42:18.058 345.180 2 1 Jan 2021 08:12:59.141 1 Jan 2021 08:18:44.091 344.950
To generate the STK file:
-
Create an STK scenario with a base station and a satellite in correct orbits.
-
Run the scenario some.
-
Set the scenario time range (click on the scenario on left)
-
Open Graph and Report Manager
-
Select Access at top
-
Select Access under Install Styles
-
Save the report
Or the file format can be a simple text file of the form:
1 Jan 2021 06:36:32.879 1 Jan 2021 06:42:18.058 1 Jan 2021 08:12:59.141 1 Jan 2021 08:18:44.091
Note
|
One can get a "continuous" pass but using a single line file with a very early start time and a very late end time. This can be useful in early stages of operations where the location of the spacecraft is not well known. |
AMScAppSCRG Parameters
AMScAppSCRG uses bar separated app data field of $ARES/config/ARESAddresses.csv to set the initial values for the following parameters. If the field is empty, then the default value is used. For example: XXXX
Field | Type | Default | Description |
---|---|---|---|
CALLSIGN |
Str |
Defaults to add address |
Call sign for this radio |
IRIDIUMS |
Str |
None |
Colon separated list of Iridium App Addresses to be blocked when sending messages via UHF |
AMScAppGRRS Parameters
AMScAppGRRS uses bar separated app data field of $ARES/config/ARESAddresses.csv to set the initial values for the following parameters. If the field is empty, then the default value is used. For example: XXXX
Field | Type | Default | Description |
---|---|---|---|
CALLSIGN |
Str |
Defaults to add address |
Call sign for this radio |
IRIDIUMS |
Str |
None |
Colon separated list of Iridium App Addresses to be blocked when sending messages via UHF |
Limiting the radio link
Under some conditions, one might want to run actual hardware but limit communications to when a spacecraft can see a ground station. This is useful for testing radio links on the ground but under the conditions of only operating when the spacecraft is in range of a ground station.
This is the concept behind setting the SIMULATE_UHF keywork in ARESConfig to LIMITED. When set to LIMITED, the radio will only communicate when it can see a targate via the UHF Link Table in $ARES/resources/sim/sim_uhf.csv. When in range of a target, communications proceed as normal.
However, the current example code does not implement the LIMITED capability. One can see how it is done in the Iridium link examples.
Simulating the radio link
UHF Radio simulation is engages when:
-
The SIMULATE_UHF keywork in ARESConfig is set to SIMULATE or SIMULATE_LIMITED.
-
One is lacking the 'cubesat_uhf_transceiver' keyword in ARESHardware on the spacecraft platform
-
One is lacking the 'cubesat_uhf_transceiver' keyword in ARESHardware on the ground radio node platform
Both the spacecraft and ground radio nodes should be using real hardware or be simulated. Do not try to mix real operations and simulations as they will not work!
There are two types of simulations (both set as they value of the SIMULATE_UHF_RADIO keywork in ARESConfig.toml)
-
SIMULATION - If set, then the messages are passed via the message hub when added to ACSInterface.
-
SIMULATION_LIMITED - If set, then communications are limited to the Simulated Links in a simulation link table ($ARES/resources/sim_uhf.csv). When in SIMULATED_LIMITED mode, the spacecraft will only be able to communicate when in a link range.
Warning
|
Do not confuse the simulation link table and the pass table! The pass table controls when a ground radio attempts to communicate. This is used for both normal radio operations and all simulated operations. The link table controls when the spacecraft can hear the ground. The link table is only used with SIMULATTION_LIMITED. |
Testing the UHF radio link
One can test the UHF radio link without the rest of AMS by:
-
Make sure the console is turned on ('t' in the console field) for both apps in $ARES/config/ARESAddresses.csv
-
Make sure the SIMULATE_UHF_RADIO keywork in ARESConfig.toml is false
-
Make sure that 'cubesat_uhf_transceiver' is set in the ARESHardware environment variable
-
Make sure that an Endurosat is hooked to both computers.
-
Run AMScAppGRRS on the ground radio node computer
> python AMScAppGRRS.py
-
Run AMScAppSCRG on the spacecraft node computer:
> python AMScAppSCRG.py
12.2.9. Test and Deployment
There are several items that need to be done once the code is developed.
Parameters
ARES is designed to support a wide range of platforms and environments. Operations are heavily driven by parameters, particularly in $ARES/config/ARESAddresses.csv and ARESConfig.toml.
Warning
|
Do not just accept the default parameters! Understand the parameters in ARESAddresses.csv and ARESConfig.toml (see Configuration) Modify the values to fit your situation! |
Unit and Integration Testing
Please see Testing section of development.
System Testing
Completed w/ Date & Signature | Test | Description |
---|---|---|
Command Tests |
Test each ground to remote platform command |
|
OS Command Tests |
Test expected OS commands from ground to remote platform command |
|
File Transfer |
Test file transfers from ground to remote platforms (and from remote platforms to ground if such file transfers are part of operations) |
|
Remote Platform Update |
Test Remote platform updates including rollback errors |
|
Day-in-the-life |
Run a complete day in the life of the system tests (Note, it is really recommended that this be closer to a month-in-the-life system-level test!) |
Deployment
See ARES Deployment
Error Handling and Restart
AMS Error handling occurs at multiple levels:
-
Low-Level - Handled via Python exception handling where it makes sense. Decisions on low-level error handling center on what responses are available to the error and what type of error.
-
App-Level - Errors that are not handled at a lower level will cause the app to exit. The node MCP is responsible for restarting apps that exit prematurely. See AMSAppSCZC for examples of how to restart apps.
-
Node-Level - If the MCP exits prematurely due to an error, it will be up to either the operator or the OS to restart the node. For remote nodes, the easiest way is to use a combination of a startup script and OS restarts. See Node Startup
Node Startup
On remote nodes, one will usually want the node’s MCP to start/restart when:
-
Platform boot/reboot
-
MCP App prematurely exits due to error
The best way to handle this is to:
-
Create a Startup Shell Script that will restart the node MCP
-
Add the startup shell script to the OS to execute when rebooting
AMS includes an example shell scripts:
-
AMSRun.sh - This script runs a node based on the node address
-
AMSRunS1SZ.sh - This script runs a SCZC MCP app with the address of S1SZ
======= Automatically Start a Node
You can setup an ARES node to automatically startup when the platform starts up. (see https://www.tomshardware.com/how-to/run-script-at-boot-raspberry-pi)
-
Create a startup script
-
There is an example script in ARESRunS1ZC.sh in the $ARES/src directory
-
You will need to add the same environment data as in your .bashrc script
-
-
Edit the crontab
sudo crontab -u pi -e
-
Select the nano editor and add the line (replace the path to a path to your script)
@reboot /bin/bash -c "/home/pi/ares_deimos/aresx/src/ARESRunS1ZC.sh"
-
If you want a log of output:
-
@reboot /bin/bash -c "/home/pi/ares_deimos/aresx/src/ARESRunS1ZC.sh" > /home/pi/.ares/ares.log 2>&1
-
Change the permissions on the script file:
chmod a+x $ARES/src/AMSRunS1ZC.sh
More information can be found at:
Tools:
-
sudo grep CRON /var/log/syslog
-
ps aux | grep ARESRunS1ZC
13. ARES Management and Recovery Subsystem (AMR)
The ARES Management and Recovery Subsystem (AMR) extents ACS to provide processor, OS, and software management services as well as software fault-detection, isolation, and recovery.
This consists of AMR/FDIR specific modules as well as a set of scripts and apps to handle single remote node operations. Future development includes:
-
Expanding OS/Software corruption/fault detection, repair, and recovery
-
Multi-node software management including updates
ARES offers several capabilities for remote node operations including:
-
Startup Script with Error Handling, Crash Recovery, and a software watchdog timer
-
Primary and Backup Software
-
Software Watchdog App
-
Remote Node Updating
-
Remote Node Control Commands - Reboot, Restart, Revert to Backup Version Commands
Warning
|
Most of these capabilities are limited to Linux. Some are further restricted to Raspberry Pis. |
13.1. Startup Script
ARES includes a bash script (ARESLaunch.sh) that handles launching an ARES app. The script attempts to run ARES continuously unless it exceeds a halt limit. The script includes:
-
Configuration settings at the top of the script (one should modify them as needed)
-
Launching the app
-
Relaunching the app if it crashes
-
Reverting to backup source code if it crashes so many time (see Backup and Recovery)
This script can be setup to be automatically run on processor startup.
13.2. Software Watchdog App
ARES provides a software watchdog capability. The software watchdog monitors a node’s MCP and restart it if fails to respond in a given period of time.
To use the software watchdog timer:
-
Add an ACSAppZX app to the node by adding a line in ARESAddresses
-
Set the MCP field to true ('t')
-
Set the parameters - a bar separated list in the ACSAppZX AppData field
-
First value - number of seconds after launch before starting watchdog monitoring. This allows time for startup processes
-
Second value - number of seconds between checking for updated watchdog file
-
Example: 180|60
-
-
-
Launch the node using the ACSAppZX app address rather than the MCP app address
The watchdog timer works:
-
MCP App
-
Started by the watchdog app
-
On each step, touches the watchdog file
-
-
Watchdog App:
-
Starts the MCP app
-
On each step, it check if the watchdog file has been touched
-
If it has been touched within the touch interval, nothing happens
-
If it has not been touched within the touch interface, the watchdog kills the MCP app and exists with a 1 error code,
-
-
It is generally assumed that the watchdog will be run within a larger startup script such as ARESLaunch.sh (Startup Script) that will handle restarting ARES including when to launch with reset flags, etc..
13.3. Remote Node Commands
The ARES User Interface offers several remote node commands:
-
Restart
-
Restart with reset flag true
-
Revert (see Backup and Recovery)
-
Reboot (Raspberry Pi nodes only)
-
Execute remote OS command
With the exception of the remote OS command, these commands only work when ARES is run from a bash shell like ARESLaunch.sh as the shell handles multiple launches and error handling.
13.4. Backup and Recovery
ARES software offers a backup and recovery system including:
-
Supports a backup copy of the src, config, and resources directories with file-level checksums.
-
ARESMgrUI provides an interface for generating the backup copy.
-
-
Supports a "revert" command which will revert code in src, config, and resources directories to the backup copy.
-
Supports an "update" command (see Remote Code Updates) which allows remote node software update.
-
Updates are checked for update errors using a checksum.
-
Failure to update will roll back the updates.
-
The core of the system is a "backup" copy of src, config, and resources directory. To create the backup, run ARESMgrUI option 'b'. This creates backups with three copies of each file (and checks the copies with MD5 checksums)
Warning
|
If you want to use the backup/recovery system, you must create backup copies via the ARESMgrUI interface while you have command line control of the remote node. |
The revert command reverts the src, config, and resources directories to the backup copies. Copies are all checksum tested against the three copies. It uses the copy which matches at least one other copy (Note, this is somewhat excessive but is trying to prevent single bit upsets in the code on high error platforms).
Warning
|
The revert command restarts the app with a reset. So all saved state data will be deleted. |
13.5. Remote Code Updates
ARES provides the ability to remotely update the remote node code. This allows "in-flight" code updates.
Updating spacecraft software during a mission is a complex and critical task that requires careful planning and execution. Here are some general steps that may be taken to update spacecraft software in-flight:
-
Establish a communication link: A reliable communication link between the spacecraft and the ground station must be established.
-
Prepare the new software: The new software should be thoroughly tested and validated on the ground before it is uploaded to the spacecraft. This ensures that the new software is functional, compatible with the spacecraft hardware, and does not introduce any errors.
-
Upload the new software: The new software is uploaded to the spacecraft through the communication link. The upload process should be carefully monitored to ensure that the software is transmitted without errors.
-
Verify the new software: Once the new software is uploaded, it must be verified to ensure that it has been correctly installed and is functioning as expected. This may involve running diagnostic tests or simulations to confirm that the software is performing as intended.
-
Switch to the new software: Once the new software has been verified, the spacecraft can be switched to the new software. This may involve restarting the spacecraft or executing specific commands to initiate the new software.
-
Monitor the spacecraft: After the new software has been installed, the spacecraft must be carefully monitored to ensure that it is operating correctly. Any anomalies or errors should be quickly addressed to prevent further issues.
Warning
|
Updated source code will use primary ARES directory. If you have switched from a primary to backup ARES directory and then issue a code update, the code will not update the current running code, but the primary code base. |
The module ACSCodeMgr.py provides the methods to perform a code update. The module provides two methods:
-
ui_update_code - Provides a user interface to creating a code update message to send to a remote platform. It can be accessed directory or via the ACSUI.ui_app_control_menu.
-
handle_update - Provides a method for handling an incoming code update message.It should be handled by an MCP app as part of handling an incoming file.NOTE: The MCP App should shut down all other apps before handling code update!
To create a code update file:
-
Create a directory under $ARES on the ground station.
Warning
|
This directory will be created on the remote platform. If the directory exists on the remote platform, the contents will be replaced! |
-
Copy all files that are to be updated into this directory (with no subdirectories)
-
Create and edit an 'ares_update_command.txt' file
-
Lines starting with # are comments and are ignored.
-
Remaining lines list files to be replaced or deleted.
-
The source filename and the target filename need not be the same
-
Note
|
Target file paths are in Linux format (i.e. '/' directory separators.Paths can be two forms: (1) Relative to $ARES (no leading '/') like 'my_mission/AMSAppSCZC.py' or (2) Fully rooted paths (i.e. with a leading '/') like '/home/pi/user/ares_backup/acs/my_new_file.txt' |
-
Add/Replace Command: 'R'
-
Will replace the file on the remote platform with the given file.
-
If the file does not exist, it will add the new file.
R source_filename target_full_filename (filename with Linux-type path relative to $ARES or fully rooted path)
-
-
Delete Command: 'D'
-
Will delete the file on the remote platform
-
If the file does not exist, will ignore command
D target_full_filename (filename with Linux-type path relative to $ARES or fully rooted path)
-
-
Execute an OS command:
-
Must have permissions
-
Commands are executed from the mission directory so any os command involving file or paths should reference $ARES
OS command
-
-
Example:
# Example ares_update_command.txt file R ARESAddresses.csv ams/ARESAddresses.csv R ARESAddresses_acs.csv acs/ARESAddresses.csv D AMSOldFile.py R ACSApp.py acs/ACSApp.py R APSApp.py aps/APSApp.py R config.txt data/ARES/MAIN/SC/SCPL/config.txt
-
Select 'update remote node code' from the user interface.
-
This will build and send an zip file and send it to the selected app (usually the MCP for the node)
-
-
All files are uploaded with a MD5 checksum (including the manifest file).If ANY of the updated files fails the checksum, then none of the updated files are applied and an error message is sent back to the ground.
-
When the remote MCP received the file, it:
-
-
Extracts each new file
-
Checks the MD5 checksum on the new file
-
If all new files pass their checksum, the new files replace the old files and the remote node restarts.
ACSApp.py handles the update zip file by calling ACSCodeMgr update method.
13.6. Running Flight Software on Boot
This section describes a method for running ARES on machine boot. It is oriented to Raspberry Pis but should work with most Linux boxes.
Note
|
Thanks to the Saint Louis University’s Space Systems Lab (SSRL) team for these instructions! |
Note
|
A complete guide on Raspberry Pi Services can be found here: https://roboticsbackend.com/make-a-raspberry-pi-3-program-start-on-boot/ |
13.6.1. Setup
-
Enable ARESLaunch.sh
$ cd ~ $ cd $ARES/src $ chmod +x ARESLaunch.sh
-
Create the Service File - copy AMScBoot.service to a MISSION_BOOT_FS.service file
-
Edit the file and change paths as needed
ImportantService Files do not accept bash variables. $ARES will NOT WORK. The entire path must be written out. EXAMPLE: /home/pi/mission/ares3_7/src/ARESLaunch.sh
-
Copy the file to the systemd system directory:
$ cd /etc/systemd/system $ sudo $ARES/src/MISSION_Name_Boot.service MISSION_BOOT_FS.service
-
Enabling the Service
-
Execute the following in the command line
$ sudo systemctl daemon-reload $ sudo systemctl enable MISSION_BOOT_FS.service
-
13.6.2. Checking Status
Will display the status of the Flight Software Service
$ systemctl status MISSION_BOOT_FS
13.6.3. Starting
Use it to start a service. Does not persist after reboot
$ sudo systemctl start MISSION_BOOT_FS
13.6.4. Stopping
Use it to stop a service. Does not persist after reboot
$ sudo systemctl stop MISSION_BOOT_FS
13.6.5. Restarting
Use it to restart a service
$ sudo systemctl restart MISSION_BOOT_FS
13.6.6. Enable Service
Turns the service on, on the next reboot or on the next start event. It persists after reboot.
$ cd /lib/systemd/system $ sudo systemctl daemon-reload $ sudo systemctl enable MISSION_BOOT_FS
13.6.7. Disable Service
Turns the service off on the next reboot or on the next stop event. It persists after reboot.
$ cd /lib/systemd/system $ sudo systemctl disable MISSION_BOOT_FS.service
13.7. Software Error-Prevention and Software FDIR
Error prevention and software fault-detection, isolation, and recovery (FDIR) services are found in several places within ARES.
-
Hardware
-
Operating System
-
Python exception and handling approach
-
Software watchdog and other restart capabilities
-
File Error Prevention and FDIR (checksums)
Tip
|
Normal operations include multiple error-prevention and FDIR capabilities built into the ARES modules. For the most part, these are invisible to the ARES user. There are some error-prevention and FDIR operations that come with a (normlly) small performance cost. To enable these error-prevention and FDIR operations, particularly in high radiation or other environments with high error rates, one should include 'higherror' as a option in the ARESHardware environment variable. This will force ARES to add extra protections against errors in messages and shared data pool values (at the cost of some performance). |
13.7.1. Hardware Error Prevention and FDIR
Hardware error prevention and FDIR are generally beyond the scope of ARES. Selection and protection of the hardware such as ECC memory and various hardware protection (such as radiation shielding and hardening) are mission and environment specific decisions. Another key consideration for hardware is the inclusion of a hardware watchdog timer that will restart the system if it detects hardware lockup.
13.7.2. Operation System Error Prevention and FDIR
Modern operating systems have a variety of built-in software error and FDIR capabilities. These capabilities are beyond the scope of ARES.
13.7.3. Python Exception and Handling Approach
As a general approach, ARES takes advantage of python exception handling. Where the error can be understood and captured, python exceptions are used to capture errors and take corrective action. In some cases, this action is focused on just preventing bad data or operations from impacting the rest of the system. In others, alternative methods of creating, using, or correcting the data/operations are used.
13.7.4. Software Watchdog and Other Restart Capabilities
In cases where the error is severe enough to prevent the software from recover, the error is propogated to the top layer and the software is halted. This is where the software watchdog timer app and startup scripts are used to restart the software based on app statefiles.
These same software watchdog timer app and startup scripts can be used to detect and restart the software in the case of the software entering some form of infinite loop.
Finally, various base station operator commands and the backup and recovery system can be use to restart the remote ARES software using the existing code base or the backup code base. This will help in cases there the code base itself has been corrupted.
13.7.5. File Error Prevention and FDIR
ARES uses several file types for internal operations:
-
Posted Shared Data - posted shared data is used to communication data pool data between ARES apps.
-
If the system is not using python manager pool operations (specified by the MANAGER_POOL flag in the ARESConfig.toml file), then shared data is stored in files on the disk. If the 'higherror' flag is found in the ARESHardware environment variable, then these files are stored redundantly and with checksums to reduce the chances of disk storage errors.
-
-
Message Queues - messages are stored in various 'queues' as they are transfered between apps and nodes. These queues are essentially file directories with each message stored as a file. Messages are stored with checksums and checksum integrity is checked whenever the message is loaded. This allows message storage errors to be detected and the message is rejected.
-
Other Files - other files can also use ARES tools to reduce file errors. ACSUtils includes a set of methods for storing and checking files. These include:
-
MD5 checksum comparison
-
Redundant binary and text file with or without checksum operations
-
13.8. AMR Monitor App
AMR provides an AMR app that runs with either a full AMS-derived platform or a stand-alone APS node. The app gathers data from the processor/OS/software, reports that data through either the AMS telemetry record and/or an APS ST record. Data includes:
-
Disk storage
-
Memory usage
Appendix A: Installation Guide
This appendix describes the installation procedures for ARES.
A.1. System Requirements
ARES is designed and tested to run on a wide range of desktop machines and Raspberry Pis. The primary target platform is Debian-based Linux systems such as Ubuntu, Mint or Raspberry OS, however, ARES will run on Native Windows, macOS, and other Linux distros with some limitations. The limitations are mostly related to specialized hardware, multi-node management, error recovery, and OS operations. ARES has been tested on the following platforms:
-
Ubuntu Linux 20.04+
-
Raspberry Pi 3B, 3B+, and 4 running 64-bit Raspberry OS Lite (Bookworm)
ARES is designed to run primarily on Debian Linux. However, it is written in Python and, on the desktop, designed to run with Anaconda python. As such, it is possible to run on other flavors of Linux, macOS, and native Windows, basically, anywhere python can run.
Warning
|
There will be some ARES functions that will only work on specific platforms. In most cases, these relate to hardware/library-specific functions. For example, Native Windows will work fine as a ground control platform but will not handle Raspberry-Pi specific hardware devices such as a sense-hat or I2C controller. |
ARES is designed to run from a command line (i.e. shell). Unless otherwise noted, the commands below assume a Linux bash shell. Users of other command line/shells may have to adjust the commands (for example, the use of the Z shell on MacOS). For those not familiar with Linux commands, there are a number of sites that describe Linux commands such as https://www.hostinger.com/tutorials/linux-commands.
Unless noted, all commands are Linux bash shell commands:
# Linux bash shell command
There are also several Linux command line editors such as nano, vi, and vim. Some Linux distros do not include nano by default. To install:
sudo apt install nano
A.1.1. MacOS
In general, ARES is a command line program and should be run on macOS in the terminal. MacOS users should follow the Linux installation instructions below with a couple of key differences:
-
MacOS uses a Z-Shell so users should use .zshrc instead of .bashrc
-
MacOS users should also use Homebrew instead of the Debian apt package management system (i.e. the apt get commands).
Warning
|
MacOS users must be very careful not to mix Apple Silicon (M1/M2) libraries and Intel libraries. For example, if you are using Apple Silicon, make sure you download the Apple Silicon version of Anaconda python! When in doubt, do a file command to see the architecture (file filename). |
A.1.2. Native Windows and Other Platforms
ARES runs on native Windows 10/11 with a few limitations, mostly related to hardware. However, windows handles several things very differently than Linux:
-
Setting environment variables on Windows requires the use of the environment variable control panel. Environment variables in Windows are referenced by %variable% rather than $variable. For example, %ARES% is the Windows version of $ARES.
-
Another difference is the "shell". On Debian-base linux, the primary shell is a bash shell (hence the .bashrc file). In windows, one should use the specific Anaconda command prompt via Windows Terminal.
-
For GIT, check out the git windows download page at https://git-scm.com/download/win
The installation instructions below capture these differences.
Warning
|
If you setup ARES on a OneDrive directory, make sure you check the 'Always keep on this device' for the ARES root directory. Failure to do so may result in database and data file corruption messages. |
A.1.3. Using Windows and WSL
You can run ARES on Windows via WSL, Hyper-V, or other VMs. WSL works well and is the recommended way to run ARES on Windows machines.
Note
|
It is recommended that users use WSL2 on Windows 10 Build 21362+ or Windows 11. This will support graphics operations. |
WSL and ARES Dashboards
One can even run the ARES Dashboards via WSL:
-
In a WSL shell, launch Firefox:
firefox &
-
Run a dashboard like normal from an attached UI
-
Copy the dashboard URL (typically something like http:///127.0.0.1/80XX)
-
Paste the URL into the firefox that was launched from the WSL shell
WSL and Blender
Blender is used for simulated image generation. Blender can run via WSL. Just install:
sudo apt install blender
Installing WSL
Windows users should:
-
Setup WSL (suggest using WSL2/Ubuntu)- see https://docs.microsoft.com/en-us/windows/wsl/setup/environment
-
Windows Terminal is the recommended way to access WSL
-
Setup WSL GUI - see https://docs.microsoft.com/en-us/windows/wsl/tutorials/gui-app To use graphics including MatPlotLib and ARES UI plots:
-
For Windows build 21362+, WSL2 support graphics and there is nothing else needed.
-
For Windows prior to build 21362+, you will need to setup X Windows. See:
-
-
WSL and Python IDEs
You can use WSL in two ways, one with the ARES code installed only on WSL and the other with ARES code "shared" between the Windows side and the Linux side. The advantage of the Linux only approach is slightly better performance (but given the ARES step architecture, not much). The advantage of the shared approach allows one to work with ARES on both the Windows and the Linux sides with the same code (this is the general approach used for the early development of ARES). For example, one can normally run ARES on the Linux side except where specific USB hardware is needed (SDR Radios). One can also run a Windows-based IDE and do all debugging on the Windows side.
Note
|
Recent improvements in WSL now allows the operations of native Linux IDEs such as Pycharm to run generally as well as the native windows version. |
Key points:
-
You can access the Linux command line/shell via the Ubuntu WSL shell or Windows Terminal.
-
You can access the Linux file system via Windows Explorer from:
\\wsl.localhost\Ubuntu
-
You can access with Windows file system via the Linux command line/shell from the mount point at:
/mnt/c # For example,, to access you're windows user files: cd /mnt/c/Users/your_account_name/ # or to access Downloads directory cd /mnt/c/Users/your_account_name/Downloads
To install just on the WSL Linux side:
-
Download and Install ARES in a directory under ~/ and follow the normal Linux desktop installation.
-
Access the Linux command line/shell via the Ubuntu WSL shell or Windows Terminal.
-
Follow the instructions for installing ARES on Linux including installing Anaconda Python for Linux and the Linux AWS credentials on Linux
Note
|
If you download the Linux Anaconda installation script from you Windows browser, you can access it at /mnt/c/Users/your_account_name/Downloads/ |
To install 'shared' between the Windows and the Linux side:
-
Set up a directory on Windows (example C:\Users\ account \projects\ares3)
-
On the linux side, you can access this directory from the '/mnt/' directory (example /mnt/c/Users/ account /projects/ares3)
-
Download and Install ARES either on the Linux or Windows side (Linux will be easier if you set up an SSH key on GitLab)
-
Set up the Linux side following the normal Linux desktop installation of ARES including installing the Linux aws credentials on Linux
-
Access the Linux command line/shell via the Ubuntu WSL shell or Windows Terminal.
-
Follow the instructions for installing ARES on Linux including installing Anaconda Python for Linux and the Linux AWS credentials
-
-
Set up the Windows side following the normal Windows installation including installing the Windows aws credentials on Windows
-
Access the command line/shell via the Anaconda Prompt.
-
Follow the instructions for installing ARES on Windows including installing Anaconda Python for Windows and the Windows AWS credentials
-
A.2. Setup and Installation
ARES software is installed in a single directory tree (referenced to as $ARES) ARES software is maintained and released via the ARES Gitlab repository (https://gitlab.com/kjbennett145/ares3). Revuiew Using ARES.
Warning
|
Be careful about just cutting and pasting these commands as they often fail. Type the commands in if they fail. |
Tip
|
Unless noted, all commands are run from a command line. |
Tip
|
Use 'python -m pip install…' instead of 'pip install…'. See https://snarky.ca/why-you-should-use-python-m-pip/ |
A.3. Desktop/Server Setup
A.3.1. Install GIT
Install GIT from website: https://git-scm.com/downloads (See instructions at https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
A.3.2. Download and Install ARES
Review Using ARES and Using Git.
Download and install ARES:
-
If you are an individual just looking to explore ARES,
-
Clone the repository to a local directory:
git clone https://your_gitlab_username@gitlab.com/kjbennett145/ares3 cd ares3
-
Change Mission Name/Network in $ARES/config/ARESAddresses
-
-
If you are a member of a mission team:
git clone https://your_gitlab_username@gitlab.com/mission_repository cd mission_repository
-
Change the mission name if you are not working as part of a larger development network.
-
-
Update permissions:
cd ./resources/bin_linux chmod a+x mkspk
A.3.3. Install Anaconda3 Python
ARES uses python 3.11+. For the desktop, the easiest way to set up python and the ARES environment is to use Anaconda3 python and a specific python 3.11 conda environment.
Note
|
Where possible, install Anaconda3 Python as a local user |
To Install on macOS:
-
Download the correct Anaconda3 package for your processor from Anaconda.com (https://www.anaconda.com/products/distribution)
Warning
|
Make sure that you use the correct version for your processor! Do not just pick macOS from Anaconda.com (https://www.anaconda.com/products/distribution). Rather, go to other versions and pick the M1 version if you have Apple Silicon (M1/M2). |
-
Install the package
-
It is recommended that you have anaconda initialize Anaconda via your .zshrc on macOS
-
Note
|
Anaconda is installed in ~/opt/Anaconda3 |
To install on Linux/WSL:
-
Install Anaconda3 python and conda commands (See https://www.anaconda.com/products/distribution and https://docs.anaconda.com/anaconda/install/)
-
Download the Anaconda3 installation shell command
-
Run:
# If linux: ~/Downloads # If WSL: /mnt/c/Users/your_account_name/Downloads # Execute the scipt (something like Anacond3-2022.10-Linux-x85_64.sh - yours may vary on the date downloaded) cd a+x Anacond3-2022.10-Linux-x85_64.sh ./Anacond3-2022.10-Linux-x85_64.sh
-
Note
|
If you download the Linux Anaconda installation tarball from you Windows browser, you can access it at /mnt/c/Users/your_account_name/Downloads/ |
-
It is recommended that you have anaconda initialize Anaconda via your .bashrc shell (.zshrc on macOS).
-
If you did not have the anaconda install initialize Anaconda, add anaconda3 path to .bashrc (.zshrc on macOS):
nano ~/.bashrc # Add the following line at the end of file export PATH="~/anaconda3/bin:$PATH"
-
(Optional) Update the OS (this can avoid some issues later on)
-
sudo apt update sudo apt upgrade
Linux/macOS/WSL Update
-
Setup conda virtual environment (the installation examples uses 'ares311' as the name, but you can use whatever name you wish):
conda update conda conda create -n ares311 python=3.11 anaconda
-
Activate your virtual environment (You may want to add this to .bashrc)
conda activate ares311
WarningYOU MUST USE THIS CONDA ENVIRONMENT FOR ALL SUBSEQUENT INSTALLATION AND OPERATION OF ARES! Otherwise, you will get missing packages when trying to run ARES. You might want to set the activation in your .bashrc file after the Anaconda initialization: # Edit your ~/.bashrc (~/.zshrc on macOS) file: nano ~/.bashrc # Add to the end of the file: conda activate ares311
To install on Windows:
-
Follow the Anaconda Python installation instructions. Install as a local user.
-
Open the Anaconda Python Prompt
-
Always use the Anaconda Prompt as it has Anaconda Python setup as the default python.
-
-
Setup conda virtual environment (the installation examples uses 'ares311' as the name, but you can use whatever name you wish):
conda update conda conda create -n ares311 python=3.11 anaconda
-
Activate your virtual environment You will need to do this each time you open the Anaconda Prompt. (If you’re ambitious, you could set up Windows Terminal to open into this Anaconda Environment by opening terminal settings, cloning the Command Prompt, and setting the new terminal command line to something like 'cmd.exe /K C:/Users/username/Anaconda3/Scripts/activate.bat C:/Users/username/Anaconda3/envs/ares311')
conda activate ares311
A.3.4. Install Desktop Base Packages
-
Install python anaconda packages from command prompt (make sure you have activated your ares311 environment first!)
Linux/WSL:
conda install -y numpy scipy scikit-learn scikit-image bitarray conda install -y astropy bitarray requests toml cryptography flask conda install -y h5py boto3 conda install -y pandas conda install -y dash conda install -y -c anaconda pyserial conda install -y -c conda-forge dash-bootstrap-components conda install -y -c conda-forge cartopy conda install -y -c conda-forge geopy conda install -y -c conda-forge spiceypy conda install -y -c conda-forge awscli conda install -y -c conda-forge bitstring conda install -y -c conda-forge photutils python -m pip install opencv-python python -m pip install pyrtlsdr pairing pygeodesy python -m pip install dash-daq
Native Windows:
conda install -y numpy scipy scikit-learn scikit-image bitarray conda install -y astropy bitarray requests toml cryptography flask conda install -y h5py boto3 conda install -y pandas conda install -y dash conda install -y dash-bootstrap-components conda install -y -c anaconda pyserial conda install -y -c conda-forge cartopy conda install -y -c conda-forge geopy conda install -y -c conda-forge spiceypy conda install -y -c conda-forge awscli conda install -y -c conda-forge bitstring conda install -y -c conda-forge photutils python -m pip install opencv-python python -m pip install windows-curses python -m pip install pyrtlsdr pairing pygeodesy python -m pip install dash-daq
macOS
conda install -y -c conda-forge cryptography conda install -y numpy scipy scikit-learn scikit-image bitarray sqlite conda install -y astropy bitarray requests toml cryptography flask conda install -y h5py boto3 conda install -y pandas conda install -y dash conda install -y dash-bootstrap-components conda install -y -c anaconda pyserial conda install -y -c conda-forge cartopy conda install -y -c conda-forge geopy conda install -y -c conda-forge spiceypy conda install -y -c conda-forge awscli conda install -y -c conda-forge bitstring conda install -y -c conda-forge photutils python -m pip install pyrtlsdr pairing pygeodesy python -m pip install opencv-python python -m pip install dash-daq
Base Package Errors
-
cyptography Using the anaconda-based cryptography library on macOS can cause problems. That is why it is installed from conda-forge. If you continue to have problems, try recreating the environment and uninstalling the old library before setting up the new libraries:
conda uninstall -y cryptography
-
Spiceypy If you get issues with the spiceypy installation, try:
conda install -c https://conda.anaconda.org/andrewannex spiceypy
-
OpenCV If you get an error trying to use OpenCV (example WSL), try:
sudo apt update sudo apt upgrade sudo reboot # Try opencv again python import cv2 # If still getting errors, exit python and try: python -m pip install msgpack sudo apt install -y python3-opencv
A.3.5. (Optional) Install Tensorflow
Follow instructions at https://www.tensorflow.org/install for the specific OS. As of 1.23, these instructions are listed below but it is always better to check the current instal instructions at the website.
Linux
Warning
|
In general, try the installation instructions at tensorflow.org first as the specific libraries change over time! |
conda install -y -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/ nano ~/.bashrc # Add to end of file export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/ # Save and exit python -m pip install tensorflow keras_cv pycocotools # Verify install: python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
macOS (Apple Silicon)
Warning
|
Installing tensorflow on Apple Silicon can be a challenge as there can be package conflicts. You may have to vary these instructions to get a setup that works. |
Try this approach first:
python -m pip install tensorflow-macos python -m pip install tensorflow-metal python -m pip install keras_cv pycocotools # Verify install: python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
If that does not work, try:
conda install -y -c apple tensorflow-deps python -m pip install tensorflow-macos python -m pip install tensorflow-metal python -m pip install keras_cv pycocotools python -m pip install numpy --upgrade python -m pip install pandas --upgrade python -m pip install matplotlib --upgrade python -m pip install scikit-learn --upgrade python -m pip install scipy --upgrade python -m pip install plotly --upgrade python -m pip install cryptography --upgrade conda update --all # Verify install: python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
macOS (Intel)
# Intel python -m pip install tensorflow keras_cv pycocotools # Verify install: python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
Windows Native
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 python -m pip install "tensorflow<2.11" python -m pip install keras_cv pycocotools # Verify install: python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
WSL2
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/ nano ~/.bashrc # Add to end of file export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX/lib/ # Save and exit python -m pip install tensorflow keras_cv pycocotools # Verify install: python -c "import tensorflow as tf; print(tf.config.list_physical_devices('GPU'))"
A.3.6. (Optional) Install Tensorflow Lite Runtime
Install the tensorflow lite runtime on Linux/WSL:
python -m pip install tflite-runtime
A.3.7. (Optional) Install Coral
Install the Coral Accelerator. Follow instructions at https://coral.ai/docs/accelerator/get-started.
Linux
echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" | sudo tee /etc/apt/sources.list.d/coral-edgetpu.list curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add - sudo apt-get update sudo apt-get install libedgetpu1-std python -m pip install coral
To run an example:
conda install Pillow python examples/classify_image.py --model test_data/mobilenet_v2_1.0_224_inat_bird_quant_edgetpu.tflite --labels test_data/inat_bird_labels.txt --input test_data/parrot.jpg
A.3.8. Installing ASCIIDoctor
You need to install the base ASCIIdoctor and the PDF controls. For details on setting up the PDF controls, see (https://asciidoctor.org/docs/asciidoctor-pdf/). ASCIIDoctor is much easier to install and use on Linux. It is recommended that Windows users just install on WSL and then just use WSL for generating ASCIIDoctor outputs. ARES includes a script in $ARES/Docs/Generate_Docs.sh that will generate all the ARES documents from the .adoc files.
-
Install ASCIIDocs plugin in PyCharm or Visual Studio Code
-
Install:
sudo apt-get install asciidoctor sudo gem install asciidoctor-pdf --pre
-
Generate documents:
cd $ARES/docs ./Generate_Docs.sh
A.3.9. Desktop ACS Message Hub
ARES uses an AWS-based Messaging System (ACS Message Hub) for message communications. In order to use the ACS Message Hub, you will have to create local AWS credentials. Since these credentials are keys, they are not included in the ARES repository. You will need get the credentials from the ARES team. Usually one person on the mission team will get a copy of the credentials and distribute as needed. Usually this is the mission configuration manager, C&DH manager, or payload manager. They may set up a secure communications channel for distribution.
Note
|
You will need get the credentials from the ARES team, mission configuration manager, C&DH manager, or payload manager |
-
The credentials will come in a zip file.
-
Unzip the file and you will get:
aws_unzipped_directory linux config credentials windows config credentials
Install AWS on Linux/macOS/Pi
Install the AWS credentials. This example assumes the aws zip file is aws.zip and is located in your home directory. Change filename and directory as needed.
+
# Change to the directory holding the aws zip file. cd ~ # Unzip the aws file (change aws.zip to whatever name your zip file has) unzip -d aws_zip aws.zip cd aws_zip cd linux mkdir ~/.aws cp * ~/.aws
Install AWS on Windows:
Install the AWS credentials.
-
Unzip the aws zip file using windows zip utility
-
Create an .aws directory in your users home directory (example: C:\Users\Your_Username) using Windows Explorer or from a command prompt:
mkdir C:\Users\Your_Username\.aws
-
Copy the windows credentials and config file from the unzipped AWS file to your .aws directory using Windows Explorer or from a command prompt (This example assumes the unzipped aws is file is aws_zip and is located in your home directory. Change filename and directory as needed):
# Change to the directory holding the unzipped. cd aws_zip cd windows copy * ~/.aws
-
C:\Users\Your_Username\.aws should now contain config and credentials file
AWS Issues
If you get issues with python and AWS, try reinstalling the AWS python packages and/or check your .aws directory for config and credentials files.
+
conda install boto3 python -m pip install awscli
A.3.10. Setup Desktop Environment Variables
ARES uses a two environment variables to define a range of configuration information. The first is ARES which points to the root of the ARES directory structure. The second is ARESHardware which defines the available hardware that ARES can access. ARESHardware is a bar ('|') seperated list of available hardware. See ARESHardware Fields for valid ARES Hardware values.
Additional environment variables can be used to alter the ARES structure such has having the data directory in another location. See Configuration.
Setup Linux/macOS Environment Variables
Add line to .bashrc (Note: macOS this is .zshrc)
+
nano ~/.bashrc # Add towards the end of the file: export ARES='path to ares root directory with no ending slash' # Add the bar separated list of hardware such as: export ARESHardware='cvcamera|rtlsdr'
Setup Windows Environment Variables
Windows uses a bit different approach to environment variables. To set an environment variable, goto the search box next to the start menu in the lower left corner and type 'environment'. Look for and select "Edit the system environment variables". Select environment variables in the lower right corner, this will bring up the environment variable panel.
Note
|
Windows uses %name% to expand the environment variable - equivalent to $name in Linux/macOS. |
Add the ARES variable by selecting the new button under user variables:
Variable Name: ARES Variable value: Path to ares root directory with no ending slash (Example: C:\Users\username\projects\ares3)
Add the ARES variable by selecting the new button under user variables:
Variable Name: ARESHardware Variable value: Bar separated list of available hardware (Example: cvcamera|rtlsdr)
A.3.11. Install RF Sensors (SDRs)
Some ARES reasoners use an RF Sensor (i.e. a Software Defined Radio (SDR)) sensor for detecting radio signals. ARES uses the pyrtlsdr library (https://pypi.org/project/pyrtlsdr/) to access the SDR. Setting up a Software Defined Radio (SDR) is platform dependent.
Note
|
ARES uses the RF Sensor only for receiving radio signals. However some mission-specific platforms may use the SDRs for communications including transmission. This installation guide has only been tested for using an SDR as a receiving RF sensor. Additional steps and/or different libraries and tools may be needed for mission-specific SDR use. |
A long list of SDR software can be found at: https://www.rtl-sdr.com/big-list-rtl-sdr-supported-software/.
SDR Installation - Linux
-
Install librtlsdr and pyrtlsdr:
conda install -c conda-forge gnuradio sudo apt-get install rtl-sdr python -m pip install pyrtlsdr
-
Setup RTL-SDR rules (see https://www.instructables.com/id/rtl-sdr-on-Ubuntu/)
-
Get the data:
lsusb
-
Look for something like Bus 001 Device 008: ID 0bda:2838 Realtek Semiconductor Corp.
-
Note the vendor id ('0bda' in the above example)
-
Note the product id ('2838' in the above example)
-
Create a new file /etc/udev/rules.d/20.rtlsdr.rules that contains the following with the correct vendor and product id:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bda", ATTRS{idProduct}=="2838", GROUP="adm", MODE="0666", SYMLINK+="rtl_sdr"
-
-
Make sure 'rtlsdr' is included in your ARESHardware environment variable when you setup the environment variables as per Setup Desktop Environment Variables below. Also, see ARESHardware Fields.
Warning
|
Failure to add rtlsdr to your ARESHardware environment variable will prevent the use of the SDR in ARES. |
-
Test the installation:
rtl_test
-
Test the python:
cd $ARES cd test cd General python IMMP_rtlsdrtest.py
SDR Installation - MacOS:
-
Use homebrew to install librtlsdr:
brew install librtlsdr
-
Test:
rtl_test
-
Install pyrtlsdr if you did not install above:
python -m pip install pyrtlsdr
-
Now, as of 7/22, there is a problem with pyrtlsdr finding the librtlsdr library (even with LD_LIBRARY_PATH) set. So, we copy the library to a traditional location ( assumes an Apple Silicon version of homebrew, adjust homebrew location as needed)
cd /usr/local/lib # If this directory does not exist: sudo mkdir /usr/local/lib sudo cp /opt/homebrew/lib/librtlsdr.dylib /usr/local/lib/
SDR Installation - Windows:
-
For most SDRs, you can install SDRSharp to test your SDR. This includes updating windows drivers to support the SDR. See https://www.rtl-sdr.com/rtl-sdr-quick-start-guide/ for a quick start guide.
-
Install SDRSharp (https://airspy.com/download/)
-
Confirm that the SDR is operating correctly by testing with SDRSharp
-
The pyrtlsdr library requires librtlsdr.
-
Install from https://github.com/librtlsdr/librtlsdr/releases or
-
Use the version from %ARES%\resources\bin_windows\rtlsdr-bin-w64_static
-
-
Add the path to the librtlsdr directory to PATH: Select start, type environment, edit the system environment variable, select environment variables in the lower right, find the PATH variable and edit, add a new line with the path to the GNURadio bin directory (example %ARES%\resources\bin_windows\rtlsdr-bin-w64_static).
-
Make sure 'rtlsdr' is included in your ARESHardware environment variable when you setup the environment variables as per Setup Desktop Environment Variables below. Also, see ARESHardware Fields.
Warning
|
Failure to add rtlsdr to your ARESHardware environment variable will prevent the use of the SDR in ARES. |
-
Test the python:
cd $ARES cd test cd General python IMMP_rtlsdrtest.py
SDR Installation - Windows WSL
You can use an SDR via Windows WSL. As of 10/22:
-
Setup the SDR to be seen by WSL - See https://learn.microsoft.com/en-us/windows/wsl/connect-usb
-
Look at available USB devices in powershell as administrator:
usbipd wsl list BUSID VID:PID DEVICE STATE 1-1 413c:9016 USB Mass Storage Device Not attached 1-6 8087:0029 Intel(R) Wireless Bluetooth(R) Not attached 2-4 0b05:18f3 AURA LED Controller, USB Input Device Not attached 4-1 1b3f:2008 USB Audio Device, USB Input Device Not attached 6-2 0bda:2838 Bulk-In, Interface Not attached 6-3 0c45:6366 USB Camera Not attached 6-4 0bda:2838 Bulk-In, Interface Not attached 8-1 046d:c08b USB Input Device Not attached 8-2 045e:00db USB Input Device Not attached 8-5 0424:274c USB Input Device Not attached
-
Attach the SDR (usually a bulk-in interface) in powershell as administrator. For example:
usbipd wsl attach --busid 6-2
Note
|
You will need to do this each time you reboot or restart WSL |
-
The device will now show up in WSL. For example:
lsusb Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 001 Device 002: ID 0bda:2838 Realtek Semiconductor Corp. RTL2838 DVB-T Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
-
Install librtlsdr and pyrtlsdr:
sudo apt-get install rtl-sdr python -m pip install pyrtlsdr
-
Setup RTL-SDR rules (see https://www.instructables.com/id/rtl-sdr-on-Ubuntu/)
-
Get the data:
lsusb
-
Look for something like Bus 001 Device 008: ID 0bda:2838 Realtek Semiconductor Corp.
-
Note the vendor id ('0bda' in the above example)
-
Note the product id ('2838' in the above example)
-
Create a new file /etc/udev/rules.d/20.rtlsdr.rules that contains the following with the correct vendor and product id:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0bda", ATTRS{idProduct}=="2838", GROUP="adm", MODE="0666", SYMLINK+="rtl_sdr"
-
-
Make sure 'rtlsdr' is included in your ARESHardware environment variable when you setup the environment variables as per Setup Desktop Environment Variables below. Also, see ARESHardware Fields.
A.3.12. Install Rockblock Iridium
If you want to use the Rockblock Iridum on your desktop:
-
Linux
-
Identify the correct com port in using lsusb
-
The com port should be added to the Iridium ACSAppZI app data field.
-
-
Windows
-
Review existing serial ports via Device Manager (You may need to turn on legacy hardware under view and add legacy hardware under action)
-
Download the driver from https://ftdichip.com/drivers/ or use the driver in $ARES/installation/windows
-
Plug in the Rockblock Iridium via an FTDI to USB cable. The Iridium will appear in device manager (usually either COM3 or COM4 but that varies with machine)
-
Identify the correct com port in Windows device manager
-
The com port should be added to the Iridium ACSAppZI app data field.
-
A.3.13. Install Blender
Some missions use Blender for generating images, if so, you will need to install Blender (https://www.blender.org/)
-
On Windows - Go to the Blender site and download/install Blender Windows (3.3+)
-
On MacOS - Go to the Blender site and download/install Blender MacOS (Either Intel or Apple Silcon as needed) (3.3+)
-
On Linux:
sudo apt install blender
A.3.14. Setup Desktop Development Tools
-
SQLite3 - ARES uses SQLite3 databases for local memory storage. SQLite3 is part of python but it can be useful to have a GUI-interface for accessing the database. One option is DB Browser for SQLite (https://sqlitebrowser.org/)
-
Remote Access (for example remote access of Raspberry Pi):
-
Windows
-
SSH - Install PuTTY - Enable X11 Forwarding under PuTTY Connection/SSH/SCP
-
WinSCP - Useful GUI for transfer of files to remote machines vis SCP
-
X Windows Client - Install VcXsv. Then start VcXsv before starting PuTTY or ssh -Y.
-
-
Linux/macOS/Windows WSL
-
SSH - Use command line: ssh -Y pi@immp
-
SCP - command line command 'scp'
-
X Windows Client - macOS - You may have to install Xquartz as it is no longer included in macOS
-
-
IDE - Almost any text editor can be used to program Python, however an Integrated Development Environment (IDE) can be useful, particularly for debugging.
-
Options:
-
PyCharm CE or Professional.
-
Students/Faculty can get PyCharm Professional.
-
Configure to use Anaconda3 as python environment.
-
-
Visual Studio Code
-
Using VSCode with WSL: https://docs.microsoft.com/en-us/windows/wsl/tutorials/wsl-vscode
-
-
-
-
Install/Select a Text Editor such as PSPad on Windows or TextWrangler on macOS
-
Google Earth - ARES generates KML files for some types of data visualization. These can be viewed in either the desktop or web versions of Google Earth
-
Cosmographia - ARES generates Cosmographic JSON files for some types of data visualization.
-
GIS - ARES generates shapefiles for some types of data visualization. Shapefiles can be loaded in a variety of GIS tools including ArcGIS and QGIS. QGIS is free and runs on multiple platforms.
A.3.15. Complete Desktop Setup
Please see Using ARES and ARES Deployment Section to complete the setup. In particular, pay attention to setting the mission/network names.
A.3.16. Desktop Test
There are several tests that will help you determine if ARES is correctly installed. The first is to run the ARES Test Suite from ARES Testing:
-
Linux/macOS:
cd $ARES/src ./test_ARES.sh
-
Windows:
cd %ARES%/src test_ARES.bat
These should finish with "Completed ARES Testing - Passed".
Other tests include:
Command | Expected Output |
---|---|
python --version |
Python 3.11.x |
python |
Python 3.11.x with additional output |
import cv2 |
No output |
cv2.version |
'3.4.1' or something like this |
import spiceypy |
No output |
import rtlsdr |
No output |
quit() |
Back to command prompt |
echo $ARESHardware |
rtlsdr (may also include |cvcamera if you have a camera) |
cd $ARES/test/General |
Change into ARES test directory |
python IMMP_rtlsdrtest.py |
You should get a set of SDR tests along with a plot. If you get an error that it cannot find an SDR, then the SDR is not installed correctly. You should see something like: Found Rafael Micro R820T tuner [R82XX] PLL not locked! Configuring SDR... sample rate: 2.400000 MHz center frequency 100.000000 MHz gain: 8 dB Reading samples... signal mean: (-0.0008263980641084357-0.0007981244255514648j) Testing callback... in callback signal mean: (-0.0007762235753676503-0.0007948632333792912j) in callback signal mean: (-0.0007813397575827166-0.0007981543447456983j) Testing spectrum plotting... And a plot window something like below although the actual plot will vary depending on the signals the SDR is receiving: |
cd .. |
Change back to ARES root directory |
cd src |
Change into src directory |
python ARESUI.py |
Should show APS menu: SLUGOP - APS User Interface: Current ARES Configuration: Current Mission Name (From ARESAddresses.csv): SLUGOP Current Network Name: MAIN Current UI Address: ZAUI Current ARESAddresses File: C:\Users\kjben\Documents\projects\ares\ARESAddresescsv Current ARES Root Directory: C:\Users\kjben\Documents\projects\ares Current Data Directory: C:\Users\kjben\Documents\projects\ares\data Current Platform: windows Current Node Directory: C:\Users\kjben\Documents\projects\ares\data\SLUGOP\MAIN\ZA Current Network Log Directory: C:\Users\kjben\Documents\projects\ares\data\SLUGOP\MAIN\\ZA\log l - Launch a Node a - Attach to a Local Ground Station Node m - Attach to a Local APS Memory Node o - Attach to a Local APS Observation Node b - Attach to a Local App q - quit Command: [q]: |
l |
Change to launch menu |
5 |
Select stand-alone observer node menu |
number |
Select stand-alone observer node. Enters app parameter menu |
1 |
Select reset |
y |
Set reset to true |
y |
_Launch app - should get a string of output |
At this point, ARES is installed and one can proceed with the remaining platform installation steps.
A.4. Raspberry Pi Setup
Notes on ARES and PIs:
-
ARES has been installed and tested on a variety of Raspberry PIs.
-
The current officially support configuration is Pi Models 3B and up running 64-bit Raspberry Pi OS (Bookworm) with Python 3.11
-
Due to the shear number of Raspberry Pi configurations (including variations of installed hardware), not all features of ARES have been tested on all configurations.
-
Finally, given the wide range of Pis and configurations, some of the instructions may fail. The PI Build Specifics give a set of procedures for building certain libraries. These methods have been used in the past although more recent installations have not needed them. However, they are included as starting points if one have problems with installations.
Warning
|
As of V4.4, ARES no longer officially supports Pi 3B and above running 32-bit Raspberry Pi OS and any version older than Bullseye. However, it should be possible to run on smaller Pis and older versions depending on what hardware is to be use (for example, older versions of Raspberry Pi OS use a different camera system). This may require building libraries and other installation procedures. |
A.4.1. Setup Raspberry Pi OS
Warning
|
It is assumed that the Raspberry Pi will only be used for ARES. As such, no installation provisions have been made to use virtual environments or other methods to manage a different configuration. The easiest way to manage different configurations on the Pi is to use separated MicroSD cards. |
Important
|
The following instructions are for 64-bit Raspberry Pi OS Lite (Bookworm). Versions older than Bullseye of Raspberry Pi OS are not supported due to a change in the way Raspberry Pi OS handles cameras. |
-
Download 64-bit Raspberry Pi OS Lite (Bookworm) (see https://www.raspberrypi.com/software/)
Tip
|
Users should use the 64-bit version where possible. |
-
Setup the PI with a monitor, keyboard, and mouse attached
-
macOS/Windows - Use Etcher to install Raspberry Pi OS Lite onto SD Card or SSD Drive
-
Tip
|
To install on an SSD card, see Boot from SSD or Flash Drive |
-
Boot raspberry pi with the new SD card with a monitor, keyboard, and mouse.
-
Once setup, you can operate via SSH and will not need the monitor, keyboard, or mouse.
-
Login via pi, raspberry
-
-
-
Either attach via Ethernet, enable wireless, or other type of network connection
-
Set Username/Password and Hostname
-
Configure PI via raspi-config (From the command line, just enter sudo raspi-config):
-
Enable SSH
-
(Optional) Enable I2C if you plan to use I2C devices
-
(Optional) Enable SPI if you plan to use SPI devices
-
(Optional) Enable serial if you plan to use serial devices
-
At this point, you can reboot without the monitor, keyboard, and mouse and just access via SSH if desired.
-
Open shell:
-
sudo apt update sudo apt full-upgrade sudo reboot
-
A.4.2. Boot From SSD or Flash Drive
See:
A.4.3. Setup Raspberry Pi Swapfile
A.4.4. ZRAM Approach
As of V3.5, we use zram instead of a swapfile (See https://qengineering.eu/install-raspberry-64-os.html#MemorySwapping)
# remove the old dphys version sudo /etc/init.d/dphys-swapfile stop sudo apt-get remove --purge dphys-swapfile # install zram sudo wget -O /usr/bin/zram.sh https://raw.githubusercontent.com/novaspirit/rpi_zram/master/zram.sh # set autoload sudo nano /etc/rc.local # add the next line before exit 0 /usr/bin/zram.sh & # Save and Exit sudo chmod +x /usr/bin/zram.sh sudo nano /usr/bin/zram.sh # alter the limit with * 2 mem=$(( ($totalmem / $cores)* 1024 * 2)) # save with <Ctrl+X>, <Y> and <Enter> sudo reboot
Swap File Approach
Note
|
This approach has been replaced with the zram approach above. However, if you are compiling large tools (such as OpenCV or Tensorflow), you may need to temporarily switch to this approach. |
The pi comes with a small swapfile on the SD card. At a minimum, you should increase the existing swapfile by changing the CONF_SWAPFILE size in /etc/dphys-swapfile. You may want to add a larger swapfile on an external USB disk:
-
Create and mount an external USB drive
-
Follow https://www.raspberrypi.org/documentation/configuration/external-storage.md
-
Assuming sda1 and type vfat:
sudo mkdir /mnt/usbdisk sudo mount /dev/sda1 /mnt/usbdisk sudo blkid # NOTE UUID and File Type (vfat) sudo nano /etc/fstab # Add line replacing the UUID with the one seen in sudo blkid and the vfat with the type. UUID=5C24-1453 /mnt/usbdisk vfat defaults,auto,users,rw,nofail 0 0 sudo reboot
-
-
Create a swapfile on the external drive
-
Edit the /etc/dphys-swapfile and change setting (change usbdisk to your external disk name)
sudo nano /etc/dphys-swapfile CONF_SWAPSIZE=2048 CONF_SWAPFILE=/mnt/usbdisk/swap.file
-
Setup the swap file (Note: this can take time!)
sudo dphys-swapfile setup sudo dphys-swapfile swapon sudo chmod 0600 /mnt/usbdisk/swap.file
-
A.4.5. Setup Pi SSH
To ssh into the Pi:
-
From Windows - just use PuTTY
-
Set the X11 value under Connection SSH to enable X11 forwarding and set X display location to localhost:0.0
-
-
From Linux - You may need to setup SSH on the linux box:
sudo apt-get install openssh-server sudo systemctl enable ssh sudo systemctl start ssh nano ~/.ssh/config add the following lines for each pi: Host PiName HostName Pi_ip_address (get from ifconfig on Pi) User pi sudo nano /etc/ssh/ssh_config uncomment and set: ForwardX11 yes ForwardX11Trusted yes sudo systemctl restart ssh They you can sshL ssh pi@pi_name
A.4.6. Install ARES software onto PIs
Warning
|
It is assumed that the Raspberry Pi will only be used for ARES. As such, no installation provisions have been made to use virtual environments or other methods to manage a different configuration. The easiest way to manage different configurations on the Pi is to use separated MicroSD cards. |
First, make a basic ares directory (you locate it anywhere and/or name it anything you want)
mkdir ~/projects
There are four basic methods for installing and managing ARES code on the Pi:
-
Install/manage ARES on a desktop development machine. Do development work on the desktop machine and just copy the files from the development machine to the Pi.
-
If you are using the Pi as a remote target platform and plan to do most development on a desktop machine, you will need a method to transfer files from the desktop machine to the Pi.
-
If you copy files from a desktop machine, at a minimum, copy:
-
$ARES/setup.py
-
$ARES/src
-
$ARES/config
-
$ARES/test (Optional but does contain some files useful for testing the Pi)
-
$ARES/resources/all files and directories except bin_os directory
-
$ARES/resources/platform/os specific bin directory
-
-
There are several ways to share files between your development machine and the Pi. The recommended way is to use the SSH tool SCP as it works well with remote Pis. Other options include using Samba to create shared directories.
-
To use SCP:
-
From a command line:
-
scp <source> <destination>
-
Example to copy a file from your dev machine to the pi:
-
scp /path/to/souce_file pi@pi_machine_name:/path/to/destination_file
-
Example to copy a directory from your dev machine to the pi:
-
scp /path/to/source_directory -r pi@pi_machine_name:/path/to/destination_directory
-
From windows - you can use the tool WinSCP which provides a simple GUI for file transfers.
-
-
Install/manage ARES via an the team Git repository such as a branch on the ARES Gitlab repository. Do most development work on a desktop machine, checkin to the git repository, then pull the updates from the repository to the Pi.
-
If you plan to use git on the Pi: Install GIT from website: https://git-scm.com/downloads See instructions at https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
-
-
Install ARES from the Gitlab repository, do all development work locally, then checkin the updates to the team repository.
-
If you plan to use git on the Pi: Install GIT from website: https://git-scm.com/downloads See instructions at https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
-
-
Setup a samba ‘share’ on the Pi. Then access the Pi’s shared file on the development desktop.
-
Install Samba:
sudo apt-get install samba samba-common-bin
-
Edit the /etc/samba/smb.conf file (sudo nano /etc/samba/smb.conf):
-
Under [homes], change browseable from no to yes
-
Under [homes], change read only from yes to no
-
Under [homes], add line writeable = yes
-
Add the following lines at the end (changing the path to your path)
[ares] path=/home/pi/projects writeable=yes read only = no browseable=yes create mask=0777 directory mask=0777
-
-
Add Samba User using the Pi account and the same password used for Pi account:
sudo smbpasswd –a pi sudo reboot
-
Using the samba share:
-
To do this under windows:
-
Open an explorer window
-
In the path bar, type: \\pi_name\ares_samba_share
-
-
Do to this under the windows linux subsystem:
-
cd /mnt sudo mkdir /mnt/ares_share sudo mount -t drvfs ‘\\pi_name\ares_samba_share’ /mnt/ares_samba_share
-
A.4.7. Setup PI Environment Variables
Note
|
Change the value of ARESHardware if this Pi includes access to sensors and other target hardware - See ARESHardware Fields for valid fields. |
Important
|
Add one of the pi settings (pi32, pi64, pi0) to ARESHardware depending on the pi and the operating systems. See ARESHardware Tags |
-
Edit and add lines to ~/.bashrc:
nano ~/.bashrc # add lines: # # Set the break package flag (see Setup Python) export PIP_BREAK_SYSTEM_PACKAGES=1 # # export ARES='path to ares root directory with no ending slash' - example: export ARES="/home/pi/projects/aresx" # # export the ARESPlatform (optional) as Linux export ARESPlatform="linux" # # export ARESHardware - # Add device/library tags for any devices or libraries on this platform # Add one of the Pi settings (pi64, pi32, pi0) - normally pi64 # example: export ARESHardware="pi64|rtlsdr|tf|tflitert|pilibcamera" # # If you are using PIGPIO, add this line: sudo pigpiod
-
If you plan to use a remote debugger, you might want to add the following to .bash_profile:
[[ -r ~/.bashrc ]] && . ~/.bashrc
-
Either source the ~/.bashrc or log off and log back on
A.4.8. Setup Python
Warning
|
It is assumed that the Raspberry Pi will only be used for ARES. As such, no installation provisions have been made to use virtual environments or other methods to manage a different configuration. The easiest way to manage different configurations on the Pi is to use separated MicroSD cards. |
Warning
|
Python 3.11 is the default python for Lite (Bookworm). You can check by typing python --version. |
Make sure everything is upgraded:
sudo apt-get update sudo apt-get upgrade
A.4.9. Install base packages:
If you have not done this, before installing, add the following line to your .bashrc file:
nano ~/.bashrc # Add export PIP_BREAK_SYSTEM_PACKAGES=1 # Save, exit source ~/.bashrc
sudo apt install -y python3-full sudo apt install -y python3-pip sudo apt install -y python3-psutil sudo apt install -y sqlite3 sudo apt install -y python3-opencv sudo apt install -y rtl-sdr sudo apt install -y gfortran libatlas-base-dev libopenblas-dev liblapack-dev -y sudo apt install -y python3-matplotlib sudo apt install -y python3-scipy sudo apt install -y x11-apps sudo apt install -y i2c-tools sudo apt install -y python3-picamera2 --no-install-recommends # Do not use sudo for python/pip installation python -m pip install --upgrade numpy python -m pip install scikit-learn python -m pip install scikit-image python -m pip install bitarray requests msgpack-python pyserial pyrtlsdr python -m pip install bitstring pairing python -m pip install boto3 awscli pigpio python -m pip install sense-hat toml python -m pip install cryptography python -m pip install spiceypy python -m pip install astropy photutils python -m pip install pandas python -m pip install dash python -m pip install dash-bootstrap-components
A.4.10. Install Tensorflow
For PIs running 64-bit OS:
python -m pip install tensorflow python -m pip install tflite-runtime
For PIs running 32-bit OS, only tensorflow-lite run-time is available. Install Tensorflow lite by following instructions at https://www.tensorflow.org/lite/guide/python
A.4.11. Install I2C/SMBUS
If you plan to use I2C or SMBUS:
sudo apt install -y python3-smbus python3-dev i2c-tools pigpiod python -m pip install adafruit-blinka adafruit-circuitpython-busdevice adafruit-circuitpython-tca9548a
Installing the pigpio library is not enough to use the library. You must do the following:
-
Add 'pigpio' to the ARESHardware environment variable (see <<_areshardware_fields, ARESHardware Fields)
-
To run, you need the pigpiod demon running.
-
To run once:
sudo pigpiod
-
Since it needs to be running all the time, you should add it to your .bashrc script
-
A.4.12. RF Sensors Setup
Install RF Sensor (i.e. a Software Defined Radio (SDR)). See the discussion in the development platform installation for more information.
-
Install rtl-sdr (librtlsdr) and pyrtlsdr (included above in Pi library setup)
-
Setup RTL-SDR rules (see https://www.instructables.com/id/rtl-sdr-on-Ubuntu/)
-
Get the data:
lsusb
-
Look for something like Bus 001 Device 008: ID 0bda:2838 Realtek Semiconductor Corp.
-
Note the vendor id ('0bda' in the above example)
-
Note the product id ('2838' in the above example)
-
Create a new file /etc/udev/rules.d/20.rtlsdr.rules that contains the following with the correct vendor and product id
sudo nano /etc/udev/rules.d/20.rtlsdr.rules # Add the following line with the correct vendor and product id SUBSYSTEM=="usb", ATTRS{idVendor}=="0bda", ATTRS{idProduct}=="2838", GROUP="adm", MODE="0666", SYMLINK+="rtl_sdr"
-
-
Test the installation:
sudo reboot rtl_test
A.4.13. Camera Suite Setup (Libcamera)
Note
|
As of ARES V4 - Pi camera operations were switched to the Libcamera / Picamera2 based system |
A.4.14. Camera Suite Setup (Legacy)
Note
|
Raspberry OS Bullseye uses a new camera stack (LibCamera). However, as of V4.0, ARES no longer uses the legacy camera stack. You can switch between the two by using raspi-config and enabling/disabling the legacy camera. |
Warning
|
DO NOT USE THE LEGACY CAMERA WITH ARES V4+ |
To enable the legacy camera:
sudo raspi-config # Select interface options # Select enable legacy camera # Reboot
In order to handle multiple cameras, you must capture the OpenCV camera Ids. Then map those camera ids to the appropriate APS camera sensor in ARESConfig.toml. For example, if you have defined a camera sensor in the ARESConfig.toml named CAMERAS_TEST, it would look like this:
[APS_SENSORS_CAMERAS_TEST] [APS_SENSORS_CAMERAS_TEST.CAMERA_0] AUTOCAPTURE_RATE = 1 ID = 0 NAME = 'WA' FIRE_OPERATIONS = false TYPE='CV'
The ID field is the value that needs to be set to map a particular APS camera sensor to a particular camera.
Note
|
If there is only one camera, the ID is always 0 and you can skip the instructions below. |
To map a camera, you need to determine what OpenCV camera IDs are valid and which ID matches which camera. To aid, there is a command in ARESMgrUI called 'fc' that will test the possible IDs and capture and image from them. The tool will list the valid IDs and capture an image in the $ARES/src directory with the ID and time captured. From there, you can determine which camera maps to which id.
Note
|
You should check anytime you change cameras and reboot as the IDs may map differently. |
A.4.15. Pi ACS Message Hub
In order to use the ACS Message Hub, you will have to create local AWS credentials.
Note
|
You will need get the credentials from the ARES team. Usually one person on the mission team will get a copy of the credentials and distribute as needed. Usually this is the mission configuration manager, C&DH manager, or payload manager. |
-
The credentials will come in a zip file.
-
Unzip in your home directory and you will get:
aws linux config credentials
-
Make .aws directory in your home directory:
-
Copy contents of aws linux directory to the .aws directory
mkdir ~/.aws cp 'aws_root/linux/* ~/.aws/'
-
~/.aws should now contain config and credentials file
A.4.16. Blender
Warning
|
Using Blender on the PIs is very compute intensivise. Therefor, it is generally discouraged. |
Some missions use Blender for generating images, if so, you will need to install Blender (https://www.blender.org/)
sudo apt install blender
A.4.17. Test Pi Installation
Test - except where noted, these should load with no errors.
sudo apt-get update sudo apt-get upgrade sudo reboot python import cv2 import spiceypy import numpy import scipy import sklearn import skimage import matplotlib matplotlib.use("Agg")
-
I2C Devices Only such as Real-Time Clock
-
Confirm i2c setup - Should return table of i2c devices
sudo i2cdetect -y 1
-
Don’t forget to add 'pisensehat' to the ARESHardware environment variable.
Warning
|
The sense-hat device is easy to corrupt. If you have errors, see Sense-Hat Issues |
A.4.18. Pi Notes
The following are some notes on Pi issues that have appeared:
-
WiFi and Buster - Buster includes a WiFi power management system that will disconnect the WiFi after a period of time. There have been several suggestions to fix the problem. Here are two to try:
-
Disable power off To disable, see https://raspberrypi.stackexchange.com/questions/96606/make-iw-wlan0-set-power-save-off-permanent or add the following line to /etc/rc.local ahead of exit 0:
sudo /sbin/iwconfig wlan0 power off
-
From https://thepihut.com/blogs/raspberry-pi-tutorials/disable-wifi-power-management, edit /etc/network/interfaces and add:
auto wlan0 allow-hotplug wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf wireless-power off iface default inet dhcp
-
-
"The Raspberry Pi Model B is equipped with two USB 2.0 ports; the B+, 2B, 3B and 3B+ have four USB 2.0 ports. The Pi 4 has two USB 2.0 ports and two USB 3.0 ports.In all models prior to the Pi 4, the USB ports connect to a combo hub/Ethernet chip, which is itself a USB device connected to the single upstream USB port on BCM2835. On the Pi 4, the USB hub chip is connected to the SoC using a PCIe bus."
-
Make sure you use a USB 2 port for the RTL dongle.
-
Sense-Hat Issues
If you have errors, try the following:
See if the sense-hat is being detected:
i2cdetect -y 1
This should return something like this. If you do not see numbers in the fields, then the sense-hat is not operating.
i2cdetect -y 1 0 1 2 3 4 5 6 7 8 9 a b c d e f 00: -- -- -- -- -- -- -- -- -- -- -- -- -- 10: -- -- -- -- -- -- -- -- -- -- -- -- 1c -- -- -- 20: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 30: -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- 40: -- -- -- -- -- -- UU -- -- -- -- -- -- -- -- -- 50: -- -- -- -- -- -- -- -- -- -- -- -- 5c -- -- 5f 60: -- -- -- -- -- -- -- -- -- -- 6a -- -- -- -- -- 70: -- -- -- -- -- -- -- --
One option is to add dtoverlay to the boot config:
sudo nano /boot/config.txt add line: dtoverlay=rpi-sense sudo reboot
PI Build Specifics
Given the wide range of Pis and configurations, some of the instructions may fail. This section gives a set of procedures for building certain libraries. These methods have been used in the past although more recent installations have not needed them. However, they are included as starting points if one have problems with installations.
Build RTLSDR Library
Install:
+
sudo apt-get install cmake build-essential python-pip libusb-1.0-0-dev python-numpy git pandoc cd ~ git clone git://git.osmocom.org/rtl-sdr.git cd rtl-sdr mkdir build cd build cmake ../ -DINSTALL_UDEV_RULES=ON -DDETACH_KERNEL_DRIVER=ON make sudo make install sudo ldconfig
A.4.19. Complete Pi Setup
Please see Using ARES and ARES Deployment Section to complete the setup. In particular, pay attention to setting the mission/network names.
-
Check permissions on binaries
-
Example, for 32-bit Raspberry Pi OS on a Raspberry Pi 3b and above - Change the permissions on mkspk:
cd ARES_top_level_directory cd resources cd bin_pi32 chmod a+x mkspk
-
Example, for 64-bit Raspberry Pi OS on a Raspberry Pi 3b and above - Change the permissions on mkspk:
cd ARES_top_level_directory cd resources cd bin_pi64 chmod a+x mkspk
-
For Raspberry Pi Zero - Change the permissions on mkspk:
cd ARES_top_level_directory cd resources cd bin_pi0 chmod a+x mkspk
-
A.4.20. Raspberry Pi Test
There are several tests that will help you determine if ARES is correctly installed. The first is to run the ARES Test Suite from ARES Testing:
-
Raspberry OS:
cd $ARES/src ./test_ARES.sh
A.5. Webserver Installation
ARES uses a web server for interfacing to the Iridium network.
The ARES web services can run on any web server. This section describes how to setup a webserver on AWS Lightsail.
-
Create an AWS account
-
Select Lightsail under products
-
Select Linux/Unix
-
Select No OS - then Ubuntu 20
-
Select a machine with at least 1GB of memory
-
Give it a name
-
Launch
-
Get the IP number
-
From the Lightsail website - log into server (click the > button)
-
You can also log on via ssh (see https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-ssh-using-terminal)
-
-
Install Python
sudo apt update sudo apt full-upgrade sudo apt install python3-pip sudo apt install python3-flask sudo pip3 install numpy scipy scikit-learn scikit-image bitstring pyrtlsdr pairing imageio sudo pip3 install bitarray requests h5py boto3 toml cryptography pyserial wheel six geopy spiceypy awscli
-
Install Apache2 (See https://www.digitalocean.com/community/tutorials/how-to-install-the-apache-web-server-on-ubuntu-20-04)
sudo apt install apache2 sudo systemctl status apache2
-
Install mode_wsgi (see https://flask.palletsprojects.com/en/1.1.x/deploying/mod_wsgi/)
sudo apt-get install libapache2-mod-wsgi-py3
-
Setup the Projects and ARES Code
cd ~ git clone https://gitlab.com/kjbennett145/ares3
-
Complete flask setup
cd /home/ubuntu/ares3/IridiumWebHook/IridiumWebHook sudo mkdir static templates sudo chown -R $USER .
-
Configure Apache
sudo cp /home/ubuntu/ares3/IridiumWebHook/iridiumwebhook.conf /etc/apache2/sites-available/IridiumWebHook.conf cd /etc/apache2/sites-available sudo nano IridiumWebHook.conf Change all instances of 'XXXX' to the IP address of the server exit (^O^X) sudo a2dissite 000-default.conf sudo a2ensite IridiumWebHook.conf sudo systemctl reload apache2
-
Setup AWS Access
-
Copy contents of Linux config and credentials:
cd ~ mkdir ~/.aws nano ~/.aws/config copy nano ~/.aws/credentials copy
-
-
Rockblock Setup
-
You need to add your webhook to the Iridium Rockblock Site
-
Log onto rockblock.rock7.com
-
Select Delivery Groups
-
Setup a Delivery Group for all Iridiums to be handled
-
Add the address using HTTP_JSON format (Delivery Groups → Delivery Addresses)
-
Appendix B: ASCII Docs
ARES documentation in down in ASCIIDocs. Basically, all documentation is written in a ASCII text with markup commands. The markup commands are in ASCIIDoc format. These ASCII text files are converted to HTML and PDF using the ASCIIDocs converter.
See Installing ASCIIDoctor for instructions on installing.
ASCII Doc files are directly rendered in GitLab. They are also rendered directly in PyCharm if one installed the ASCIIDoc plugin. But it is useful to have an HTML version too for reading the documentation on a local machine.
Converting ASCIIDoc files to html is done using ASCIIDoctor. ASCIIDoctor uses Ruby as it’s language.
Note
|
There is an alternative to ASCIIDoctor - ASCIIDoc3 which is pure python3 (the same language that ARES is written in). If you have problems installing ASCIIDoctor, you could try ASCIIDoc3 |
B.1. Using ASCIIDocs
ARES ASCII text files have an .adoc extension. To render to html, open a command shell, navigate to docs directory, enter:
asciidoctor XXXX.adoc
For Linux, macOS, or WLS Only - There is a Generate_Docs.sh command that will generate HTML for all adoc files.
./Generate_Docs.sh
HTML can be converted to PDF using the print command in most browsers. For example, one can convert html to pdf via Firefox on Windows 10/11 by
Open Firefox (or other browser) Select file-> print, then print to PDF
Using the ASCIIDOCs plugin for Pycharm also includes a PDF generator that can directly create a PDF from *.adoc files.
B.2. ASCIIDocs Syntax
ASCIIDoc files (.adoc) are just text files with ASCIIDocs markups. The best reference is ASCIIDoctor. Feel free to check out the .adoc files in $ARES/docs for examples. In addition, there are specialized editors for ASCIIDocs. For example, if you use PyCharm, make sure you install the ASCIIDocs plugin. It provides a renderer window as well as a set of basic commands via icons.
Tip
|
ASCIIDocs handles spaces when rendering. Thus, you can use tabs to help make the text more readable. For example, tabs when going to sub-items or lower list numbers. |
B.2.1. Header
There are a wide range of header commands. The easiest way to get started is to include the following header (changing the fields to the appropriate values):
= Document Title
:author_name: Bennett Research Technologies LLC
:author_email: bennett@bennettresearchtech.com
:author: Keith Bennett
:email: bennett@bennettresearchtech.com
:toc:
:toc-title: Table of Contents
:toc-placement: left
:toclevels:5
:numbered:
:description: ARES Documentation Overview
:keywords: ARES
:imagesdir: ./img
:source-highlighter: rouge
:website: http://bennettresearchtech.com/
:stem:
B.2.2. Paragraph
Just a space between lines (or a + sign at the start of the line)
B.2.3. Lists
Ordered (numbered) and unordered lists.
Important
|
Insert a blank line before the list. |
-
Unordered List:
* Item ** Sub-item *** Sub-sub-item
-
Ordered (Numbered) Lists
. Item 1 .. Item 1.1 ... Item 1.1.1
-
Continued Numbered Lists - Sometime you want to put some note between numbered lists. To do this, insert a plus sign:
. List Item X + .... My Code Line .... . Next Item X+1
-
Description List:
Item:: definition
B.2.4. Code Inserts
....
My Code Line
....
B.2.5. Sections
== Section
=== Subsection
==== Etc.
B.2.6. Text Formatting
-
bold *constrained* & **un**constrained
-
italic _constrained_ & __un__constrained
-
bold italic *_constrained_* & **__un__**constrained
-
monospace `constrained` & ``un``constrained
-
monospace bold `*constrained*` & ``**un**``constrained
-
monospace italic `_constrained_` & ``__un__``constrained
-
monospace bold italic `*_constrained_*` & ``**__un__**``constrained
B.2.7. Literal
There are several ways to pass special characters:
-
Backslash '\'
-
Encase multiple lines in ….
-
Or put single words between + signs
B.2.8. Admonitions
-
TIP: tip
-
IMPORTANT: important point
-
WARNING: warning
-
CAUTION: caution
-
Example:
Warning
|
Warning |
B.2.9. Images
Images are stored as png files in an img subdirectory. Images can have headers and references.
[#img-coordinate_systems_example_results_image]
.Left-handedcoordinatesontheleftRight-handedcoordinatesontheright
image::Coordinate_Systems.png[align="center",link="img/Coordinate_Systems.png"]
-
Results in:
B.2.10. Links/References
Local Link: link:ARES_Installation_Guide.html[ARES Installation Guide]
Link: https://opencv.org/]
Cross-Reference <<Math>>
Include another adoc or code - include::ExampleInclude.adoc[]
B.2.11. Tables
-
General Form:
-
Table Name: + .Table Name
-
Table Attributes: + [width="100%",cols="<1,4",options="header"]
-
Where width defined how wide the table is relative to page size
-
Where cols defines the columns. Each field defines the relative size to other columns. Column alignment is down through < ^ and > symbols at start of column size
-
The options="header" allows a table header row.
-
-
-
Table Rows - | delimited fields
-
Example of a 2 column row:
-
|Col1
-
|Col2
-
-
Example of a column with cell formatting (for example, including a list in a cell):
-
a|Formatted Column
-
-
-
Example:
.TABLE NAME
[width="100%",cols="<1,4",options="header"]
|=======
|Header Cell 1
|Header Cell 2
|Row 1 Cell 1
|Row 1 Cell 2
|Row 2 Cell 1
a|Row 2 Formatted Cell 2
Row 2 Cell 2 Additional Line
|=======
-
Results in:
Header Cell 1 | Header Cell 2 |
---|---|
Row 1 Cell 1 |
Row 1 Cell 2 |
Row 2 Cell 1 |
Row 2 Formatted Cell 2 Row 2 Cell 2 Additional Line |
B.2.12. Math
You can include math equations (that is what the :STEM: header item is for). The math can be in STEM format (see ASCIIDocs) or Latex format.
-
Add :stem: to header
-
Example:
[stem] ++++ sqrt(4) = 2 ++++
-
Results in:
\$sqrt(4) = 2\$ -
-
Example:
Water (stem:[H_2O]) is a critical component.
-
Results in:
-
Water (\$H_2O\$) is a critical component.
-
Example:
A matrix can be written as stem:[[[a,b\],[c,d\]\]((n),(k))].
-
Results in:
-
A matrix can be written as \$[[a,b],[c,d]]((n),(k))\$.
-
Example:
latexmath:[C = \alpha + \beta Y^{\gamma} + \epsilon]
-
Results in:
-
\(C = \alpha + \beta Y^{\gamma} + \epsilon\)
B.3. Images
Notes about images:
-
Images can be saved in a variety of formats but ARES uses .png files.
-
The ASCIIDoc header defines the directory that holds the images.
-
ARES stored images in an 'img' directory under the docs directory.
-
ARES uses LibreDraw for generating most images.
-
To export the images from LibreDraw:
-
Goto the page with the image
-
Click on the page
-
Select all objects on the page (Ctrl-A)
-
Select file→export
-
Navigate to the img directory
-
Change output type to .png
-
Select a name that is unique to all documentation
-
Check the "selection" box
-
This will bring up a .png dialog box
-
Check save transparency
-
Uncheck Interlaced
-
Ok
-
Appendix C: ARES Change Log
C.1. V0 - V1.7
-
V0.5 - 2/16
-
Initial ARES (APS) Release
-
-
V0.6 - 8/16
-
Updated to include TensorFlow support
-
-
V0.7 - 12/16
-
Updated to include better reporting and command support
-
-
V0.8 - 1/17
-
Major updates including:
-
Cleanup of platform, config, and command parameters
-
Update of Utilities to match ACS utilities
-
-
-
V0.9 - 2/17
-
Incorporated ACS. Updated installation instructions.
-
Updates including:
-
Restructuring of directory structures to handle broader platforms
-
Integration of ARES Communications System (ACS)
-
-
-
V1.0 - 5/18
-
AMS - Initial Release
-
-
V1.0.2 - 7/18
-
Restructure to make the system more “generic”
-
Changed sFS to ARES Mission Software (AMS)
-
Changed sCS to ARES Communication Subsystem (ACS)
-
Created an examples directory to hold examples code not in ams (specifically link examples from ACS)
-
Changed directory (package) sfs to ams
-
Changed directory (package) scs to acs
-
Folded common package into acs
-
Create ARES Installation Guide (removed from AMS SDD)
-
Changed the PYTHONPATH variable (see installation guide)
-
AMS
-
Revised example RP state diagram and code (AMSAppSC)
-
Revised example Radio Link code (AMSAppSR/GR)
-
-
-
V1.0.3 - 7/27/18
-
Revamped ARES into APS
-
New method for starting
-
AMS
-
Expanded ACS Logging System
-
Moved many constants from AMSConfiguration to ACSPlatform including App definitions - this allows flight software to be run from its own directory rather than AMS
-
Modifications to support APS
-
Changed ACS addressing scheme from two characters to three
-
-
-
V1.1 - 10/9/18
-
Dropped Neo4j
-
Updated TensorFlow to 1.10
-
Updated SpiceyPi 2.1.1
-
SpiceyPi is now required for AMS
-
Cartopy is now required for AMS (Ground Station)
-
AMS
-
Expanded reference mission network architecture to demonstrate ACS routing capabilities
-
SpiceyPi is now required for AMS
-
Added ACS Apps Arguments to include app address and router table
-
Updated ACS and Link Examples:
-
Added Email Link App (ACSAppE)
-
Changed name of AMSAppxRxMessageMove to AMSAppxRxShareDirectories
-
Internal messages now support binary (example: telemetry)
-
-
Update AMS examples for ACS updates
-
Revised Telemetry and Hardware Interfaces Modules
-
Added app control variables and messages
-
Added app address
-
Added router table
-
Added max messages per step
-
Added max message queue size
-
Added ability to command these app variables from the UI
-
-
Added app-specific data
-
Added Shared Data Pool caching to improve speed
-
Added cap on the number of messages in a queue (prevents out of control message generation that swamps system)
-
Added example of telemetry data plotting
-
Added ARESData and ARESMission environment variables
-
-
Added ability to update code in-flight
-
-
V1.2 - 10/19/18
-
AMS
-
Changed telemetry to store orientation in J2000 quaternions
-
Updated ACSSpice
-
Removed AMSEstimator and replaced with direct calls to ACSSpice
-
Update telemetry to match data types
-
-
APS
-
Update to V1.1 AMS/ACS Architecture
-
Added LOCORI reasoner class structure
-
Added APSSensorMVPA and APSSensorMPVASim classes
-
-
-
V1.3 - 11/6/18
-
Changed name of AMS_SDD.doc to ARES_SDD.doc
-
Code Syntax/Style Updates
-
Updated code to use static typing on function returns
-
Replace “if str is not None and str != '':” tests with “if str:”
-
-
Message Updates
-
Changed Platform Address length from 1 to 2
-
Changed App Address length from 3 to 4
-
Changed internal message format to use packed integers and floats in some cases.
-
Changed time in messages to float.
-
-
App Class Updates
-
Clarified use of app reset flag in AMSUI and ACSAppManager
-
-
Changed how apps are spawned - changed from psutils to multiprocessing.
-
-
V1.3.1 - 11/18
-
ACS - Changed file transfer from ASCII to binary. This reduces the number of messages involved in a file transfer.
-
Revised ACSApp time handling to allow simulation time and simulation time rate. All calls to time.time() should now use the ACSApp Object.time() instead.
-
ACSApp Object._step_start_time - holds time at start of step
-
ACSApp Object._clock - Now is an ACSTime object.
-
-
-
V1.4 - 1/19
-
TERMINOLOGY CHANGE: Most instances of 'platform' have been changed to 'node'. A platform now refers just to the physical machine. A node refers to the collection of apps that perform a given operations and include an MCP and ACS Handler app. Platforms may now have more than one node.
-
Documentation
-
Split AMS/ACS documentation into ARES SDD and AMS SDD.
-
AMS ADD has been rewritten. Now includes guides to getting stated section.
-
-
Installation
-
Revised Installation Instructions to clarify use of PYTHONPATH
-
Added use of Boto3 for internet-based access (see ARES Installation Guide)
-
Added use of AWS access parameters to desktop and Pi installation
-
-
Structure
-
Created a new resources directory under $ARES
-
Moved spice kernel files and spice executables to this resources directory.
-
-
ACS
-
Revised ACS communications, addressing, etc.
-
App addresses consists of a two-character node address and a two-character app type address. Addresses are A-Z, 0-9, _. Example: 'SCZC'
-
Revised Addresses:
-
MCP Apps - uses 'ZC' app type address
-
ACS Manager Apps - uses 'ZM' app type address
-
-
Revised how apps are launched and controls (multiprocessing)
-
Added $ARES/config/ARESAddresses.csv file for defining a mission Apps
-
Reduced the required ACSApp argument list as most can come from the $ARES/config/ARESAddresses.csv file (although the arguments can still be added to override ACSAddresses inputs).
-
Minor changes to ACSInterface parameters
-
Added ACS Message Hub (AWS SQS Server)
-
Added check for file transfer to prevent the queues from being swamped with a large file.
-
Added 'on internet' parameter to ACSApp
-
Clarified return of ACSUtils.find_files_in_directory - returns filenames with paths.
-
Cleaned up app reporting with new console-rate app parameter
-
Add the option to use flags in the shared data pool.
-
-
AMS
-
Revised AMS and AMSUI to use the new ACS updates.
-
Changed names of many of the example Apps to match new addresses.
-
Updated AMS network configuration to:
-
Include a payload ground station node
-
A payload remote platform app (currently dummy app)
-
-
Fixed error in AMSUI to allow users to cancel sending commands based on options.
-
Fixed error in AMSAppSCZC that incorrectly set/read switch states.
-
Revised use of shared data pool values and flags.
-
Changed network log file to node log file and stored under node data directory.
-
Node Log - now writes node log messages to both a primary node log file and to a “from app” node log file. This allows a quicker way to just look at messages from a single app.
-
Telemetry - now writes telemetry to a “from node” specific telemetry file. This allows multiple remote nodes to send telemetry.
-
Revised way apps and states are handled - now just paused apps at step point rather than killing/restarting them.
-
Changed names of apps to match new app address scheme.
-
Changed Radio Link Apps to run in a “no radio” configuration which uses the message hub for passing messages. Completely dropped the concept of a shared directory.
-
Telemetry (SCHL) target app (usually GSHL) can be changed via the app specific data in the ACSAddresses table.
-
-
-
V1.5 - 3/19
-
Git, GitLab, Installation, and Documentation
-
Revised the getting started sections
-
ARES SDD
-
ARES Installation Guide
-
AMS SDD
-
-
Included discussion of the use of Git and GitLab.
-
Expanded ARES SDD sections on configuration.
-
Added section on time and coordinates to ARES SDD.
-
-
Data is now stored under the $ARESData/mission/network/… directories (previously it did not include the mission name).
-
ACSHardware Environment Variable
-
Used to specify the hardware configuration (example sensors)
-
Documented in ARES SDD
-
Added code in AMSInterfacexxx.py to show how to use.
-
-
ACS
-
ACSSpice.py - Updated comments.
-
ACSGeoMS.py - Added a space dynamics and geographical utility module.
-
-
AVS - Added Ares Visualization System including the AVS4D unity-based visualization tool and the AVSUI.py toolkit.
-
AMSUI.py - variety of interface changes including command checks.
-
Added AMSCCUI.py to provide an interface for command check value.
-
AMS Configuration
-
Added new nodes and updated ams network configuration
-
ACSAddresses modified accordingly
-
AMS SDD updated accordingly
-
Updated AMSConfiguration.py to reflect new addresses
-
Added AMSAppGAZC.py
-
Renamed AMSAppGSRS.py to AMSAppGRRS.py
-
Added AMSAppGRSN.py as stub for adding a SatNOGS interface
-
Added AMSAppGRZC.py as MCP for new ground station radio node
-
Added AMSAppGAZC.py as MCP for new ground station antenna node
-
Modified AMSAppGSHL.py to reflect new node configuration
-
Modified AMSAppGSZC.py to reflect new node configuration
-
Modified AMSAppSCRG.py to reflect new node configuration
-
Modified AMSAppSCSZ.py to reflect new node configuration
-
Modified AMSAppTelemetry.py to handle default ACSAddresses file location.
-
Modified AMSUIxxx.py files with new user interface options.
-
Removed Ground Station Radio Posted Data Values as the radio is now on a different node.
-
-
Modified AMS example to remove switches and go to a single camera.
-
Commented out code related to Camera and USB switches.
-
Modified Telemetry
-
-
APS
-
Updated APS configuration to allow stand-alone apps.
-
Update to handle reset and startup config files as per addresses.
-
Replaced ams dummy payload app with aps app.
-
-
-
V1.5.1 - 3/19
-
Fixed App Termination Error
-
Fixed missing ARES Hardware flag in ACSPlatform.py
-
-
V1.6 - 4/19
-
Revised ACSSpice to support simple frame conversions without a spacecraft.
-
APS
-
Added APSMemory Subsystem
-
Revised APS Command system
-
Revised Reasoner ID to fixed-length 4-character string
-
Added PiCamera for Raspberry Pi
-
Upgrade Tensorflow to V1.13
-
-
Removed AVS
-
Renamed some state methods in ACSAppManager to better clarify purpose (and to avoid some typical name collisions)
-
This required a few changed to AMS to update method names
-
ACSApp.py - fixed reporting bug in report_step
-
-
Updated code to clarify use of typing in cases where the value can also be 'None'
-
Added ACSMessageUtils module to handle message format changes
-
to/from bitstreams
-
to/from bytestreams
-
to/from base64
-
-
Added installation of bitarray
-
Revised AMS with new EPS and Telemetry
-
Revised EPS interface
-
Revised Telemetry Example
-
Split telemetry database out of telemetry module
-
Revised telemetry and eps simulations
-
-
Removed AMS switches
-
Expanded possible values for ARESHardware environment variable. See ARES SDD section 3.
-
Updated ACSCodeMgr.py code update
-
V1.5 to V1.6 Changes Needed
-
Add picamera libraries to Raspberry Pi (see Installation Guide):
-
-
C.2. V2.x
-
V2.0 - 5/20
-
Upgraded from Python 3.6 to Python 3.7
-
Review Installation!
-
-
App command change: -c argument has been changed to -cn
-
App command change: -b argument has been changed to -cr
-
Added use of the following libraries
-
Pairing
-
PyGeodesy
-
Sense-Hat (Pi’s)
-
Upgrade tensorflow (V2.x for desktop, V1.14 for Pis)
-
-
Documentation
-
Converted all documentation to ASCIIDocs (see the installation guide for details on ASCIIDocs)
-
Created a single ARES SDD with ACS, AMS, APS, Installation, and Changes sections
-
-
Message error handling
-
Message errors are not longer reported outside ACS as individual messages, rather sums of read/write errors are kept in ACSInterface. (This is similar to tracking packet errors in TCP/IP networks)
-
One can turn on message error reporting by using the ACSPlatform.ACS_LOG_MESSAGE_ERRORS flag
-
-
Changed all use of time class to ACSTime class (impacts ACS, APS, AMS)
-
Modified AMS to allow multiple S/C nodes and multiple ground nodes
-
Network/App Configuration:
-
Depreciated Auto-restart App argument due to hardware issues
-
Use a platform/node specific shell
-
Change auto-restart header in ACSAddresses to "depreciated"
-
Added fields to ACSAddresses for network routing/linking
-
-
Review the ARES SDD Configuration (how to get started) for updates on the use of:
-
ACSAddresses - Added search of $ARES for ACSAddresses if the file does not exist in the local directory
-
Moved Default ACSAddresses to $ARES
-
-
New ACSMissionName environment variable as alternative to mission name in ACSAddresses
-
New ACSNetwork environment variable
-
Network name can also be taken from ACSAddresses
-
New ACSNodeAddress environment variable
-
Addition of an App_type_address method to ACS Apps
-
-
-
ACS
-
Updated ACSUtilsBytes to use Tuples and remove redundant "bytes_" from method names.
-
Changed ACS address format to case-sensitive (i.e. addresses now can be A-Z, a-z, 0-9)
-
Added message priorities (See ARES SDD)
-
Added new ACSInterface.send_message_direct method
-
This method runs faster when sending messages to other nodes via MessageHub
-
It can be used as a direct replacement for send_message.
-
-
Added new ACSInterface methods for sending non-acknowledged messages (useful for broadcasting to groups)
-
Moved ACSMessageHub and ACSQueue to ACSOnlyMessageHub and ACSOnlyQueue - now used only within ACS
-
Clarified the use of group addresses
-
Group addresses can only be used where nodes are attached to the message hub or have specialized link apps that distribute messages.
-
See the sections on group messages in the ARES SDD for more information
-
A TypeError will be raised when attempting to send files to group addresses.
-
-
Fixed error in ACSUtilsBytes.bytes_read_text
-
Added ACSLocation
-
Added additional ACSAddresses methods for finding specific addresses
-
Added test n ACSUtilsIO.binary_write_np_2d_ndarray
-
ACSUtils - Added assert tests on method inputs on many of the methods.
-
Changes valid network names to 6 characters A-Z, 0-9
-
Changes valid mission names to 6 characters A-Z, 0-9
-
Changed network and mission arguments for ACSInterface
-
Mission and network are taken from the ACSAddresses file and/or environment variables unless overridden by command argument
-
-
-
APS - Major overhaul to support the ARES Observation Network / DORRE Mission
-
Updated sensors to split sensor type from sensor suite
-
Added RF Sensor Support
-
Revised Sensor suite data types to include RF sensors
-
Added AON reasoners
-
Added AON reasoners
-
Revised APS Memory
-
-
AMS
-
Clarified that the AMSUI can only send commands when part of the ground station node.
-
Updated how link app testing uses the Message Hub - now all calls go through ACSInterface
-
-
V1.6 to V2.0 Changed Needed (NOTE: This is not a complete list - review all changes!)
-
Make sure the following libraries have been install as per installation instructions.
-
Example: pyrtlsdr on all platforms with an SDR radio
-
Add rtlsdr to ACSHardware on all platforms with an SDR radio
-
-
Change calls of self._acs.addresses.mission to self._acs.mission
-
Change calls of in_acs.addresses.mission to in_acs.mission
-
Review ACSInterface instantiation to determine how to use network and mission overrides.
-
Revised launch app menu (see ACSUI)
-
-
-
V2.0.2 - 5/20
-
Removed RF Patch
-
Moved APS Frame to ACSFrame.py
-
-
V2.0.5 - 6/20
-
Depreciated IsACSMgr field in ACSAddresses
-
Added ACSAppZI for handling messages via the Iridium Satellite Radio Network
-
Folded rf, camera, and sensor definition files into APS primary_data_file
-
Upgraded APSReasonerRF to generate RS events when finding RF events
-
C.3. V3.0
-
Consolidated ACS, APS, and AMS into single $ARES/src directory.
-
Consolidated various configuration files including ACSAddresses into $ARES/config directory
-
Only the ACSAddresses file is used. All other methods for getting the file have been dropped.
-
Cleaned up use definitions and terms
-
Dropped use of:
-
$ARESMission environment variable
-
$ARESMissionName environment variable
-
$ARESNetwork environment variable
-
$ARESNodeAddress environment variable
-
Dropped use of $PYTHONPATH
-
-
Dropped most app parameters from app arguments. Most parameters come from the $ARES/config/ARESAddresses.csv file.
-
ACSAddresses
-
The module field is now used by the UI to launch apps
-
Removed depreciated fields
-
Add node type field to be used by UI for presenting launch options
-
-
ARES User Interface
-
Consolidated ACSUI, APSUI, and AMSUI into ARESUI.py
-
Added ARESMgrUI.py to managing ARES code
-
Folded most configuration into ARESConfig.toml
-
Folded AON configuration into AONConfig.toml
-
C.4. V3.1
-
Updated Required Libraries - Please see installation guide!
-
An example is that Opencv has been updated to 4.5.1 requiring a different install instruction for both desktop and Pi
-
It is recommended that the environment be reinstalled to make sure the correct libraries are used
-
For conda-based desktops - it is recommended that you delete the existing conda environment and create a new one and then install all the packages again.
conda deactivate conda remove --name ares311 --all
-
Now follow the instructions in section Install Anaconda3 Python
-
-
Documentation - Major updates:
-
Updated all source file end-of-line marking to unix format
-
All source code line endings should be Unix-standard ('\n'). Many IDEs (including Pycharm) allow one to set the standard line endings. If so, set to Unix-standard ('\n') rather than Windows or macOS. For pycharm - see https://www.jetbrains.com/help/pycharm/configuring-line-endings-and-line-separators.html
-
-
Configuration
-
ACSAddresses File
-
Removed Star-Track.org account/password - moved to ARES account file. (See ARES Deployment for re-adding it.
-
Added APS State Memory Sync Field between the APS Memory Sync Columns and APS Sensors Suite Columns
-
Add the new field/column to any ACSAddresses files that are currently in use
-
It is strongly recommended that users review all the ACSAddresses field values
-
-
-
Simulation
-
Added STK based simulations - see Simulations
-
Added $ARES/support directory
-
Added $ARES/support/STK_Simulator directory
-
-
This includes changes to AMSAppGRRS, AMSAppSCRG
-
-
ACS
-
Changed data pool to use a multiprocess data server
-
Improves performance and reduces the use of the disk for data transfer between apps
-
Impacts ACSInterfaces, ACSAppManager, ACSAppHandler
-
Updates to all MCP apps to clarify comments to reflect change
-
Implications: Shared data pool data is no longer persistent, i.e. data is not held between restarts/reboots
-
-
ACSApps
-
Report_Step will now use Log rather than LogD for reporting step information.
-
Changed behavior of ReportRate - now logs report whether or not the logd option is on.
-
-
Corrected Error when incoming message queue was empty
-
-
Added Iridum Link Support (See Iridium Link Support)
-
Added Account/Password Management (See ARESMgrUI) (see ARES Deployment Section
-
Added ACSAccounts.py
-
Updated ARESMgrUI.py
-
-
Moved Space-track.org account data from ACSAddresses to Account/Password Management (see ARES Deployment Section
-
ACSInterface
-
Cleaned up posted data pool interface to indicate a return of None when the data is not found. This includes some minor updates to AMS calling methods
-
Updated message string data fields - no longer a fixed field length
-
Changed property use_messages to use_message_queues
-
Changed method get_shared_data return from str to str or None
-
Changed method get_shared_data_bytes return from str to bytes or None
-
-
ACSUtils
-
Corrected error in fault protected checksum binary files to hold the correct checksum value
-
-
-
AMS
-
Revised method for adding/launching child apps including new shared data pool method
-
AMSAppGRZC.py
-
AMSAppGSZC.py
-
AMSAppSCZC.py
-
-
Updates to support STK Simulation (AMSAppGRRS.py, AMSAppSCRG.py)
-
Replaced AMSInterfaceEndurosatRadioFake.py and AMSInterfaceEndurosatRadioSim.py with AMSLinkViaDirectMessageHub.py and AMSLinkViaUHFRadioRim.py as part of overall simulation upgrade (see above).
-
AMSAppSCAD.py
-
AMSDPRecModesStates.py
-
-
Updates to handle new ACSInterface changes
-
AMSAppSCAD.py
-
AMSAppSCHL.py
-
-
-
APS
-
Added Reasoner Standard Pipeline Concepts (Collection of AON reasoners)
-
Added APS All Node Memory Sync Address, APS Memory Node Sync Address, and APS Analysis Node Sync Address fields to ACSAddresses
-
Updated RF pipeline output
-
Added message encryption options
-
Updated STK Simulation new newer version of STK simulation
-
Updated Matlab-STK Code
-
Updated ARES simulation code
-
-
C.5. V3.2
-
Documentation
-
Updated Deployment section
-
Added AMS Setup Walkthrough section
-
Updated AEON Setup Walkthrough>> section
-
Added AMS Error Handling and Restart section
-
-
Configuration
-
Moved PYTHON_COMMAND_LINE_STRING from ARESConfig.toml to ARESPlatform.py
-
-
AMS
-
Add AMS UHF radio link (See ACS Links and UHF Radio Link
-
Changed all AMSxxEndurorsatxx modules to AMSxxEndurosatxx (corrected spelling)
-
C.6. V3.2.1
-
Documentation
-
Updated Pi Installation Instructions
-
-
Configuration
-
Added packages astropy and photutils
-
-
AMS
-
Move the step of getting messages from the node’s forward list from ACSAppZM to the individual link apps. This will support multiple UHF radios communicating to the same target spacecraft.
-
Updated ACSAppZM.py
-
Updated ACSAppZG.py
-
Updated AMSUHFRadioSupport.py
-
-
C.7. V3.2.2
-
Configuration
-
Added PI_PAYLOAD_TEST sensor and reasoner configuration
-
-
APS
-
Minor Updates to APSReasonerFR to support Pi Payload Testing
-
C.8. V3.2.3
-
Installation
-
Added sqlite3 to Pi installation
sudo apt install sqlite3
-
-
ACS
-
Added Message Retention Period controls on ACS Message Hub queue
-
-
AMS
-
Updated UHF Radio to use ACS Messages and improved timing
-
Improved UHF Radio and Iridium Transmission On/Off Command
-
Added command to attempt to turn on radio transmission of a remote plateform with transmission off
-
C.9. V3.3
-
Documentation
-
Revamped ACS communications documentation
-
Single Messages Section
-
Single Network Section
-
-
-
Interfaces
-
All displayed times of the form 'Sun Jun 20 23:21:05 1993' are now displayed as UTC dates/times rather than local dates/times
-
This includes the time on the main displays!
-
-
-
Updated most exceptions to ARESxxxx exceptions (defined in ACSPlatform.py)
-
ACS
-
Added AES256 Message Encryption (see Message Encryption)
-
Added MESSAGE_ENCRYPTION flag to ARESConfig.toml
-
Added BEACON_ENCRYPTION flag to ARESConfig.toml - controls whether beacon messages are encrypted
-
-
Upgrade of message priority system to better handle priorities across ACS Message Hub (See Message Priorities
-
Depreciated the "IsLink" field of ACSAddresses - changed to reserved field
-
-
AMS
-
You can now "turn on and off" non-MCP apps in AMSAppSCZC, AMSAppGSZC, and AMSAppGRZC by commenting out the app line in ACSAddresses. To do this, simply replace 'App' with '#App' in the first column of the app you want to not run. (You no longer should comment out lines in AMSAppSCZC, AMSAppGSZC, and AMSAppGRZC to control running an app such as the radio or Iridium links)
-
Changed UHFRadioError to AMSUHFRadioError
-
Updated ARESHardware tags (see ARESHardware Tags
-
Added Lime SDR Transceiver including
-
New ARESHardware tag - 'radio_lime_sdr_transceiver'
-
New AMSInterfaceLimeSDRRadio.py
-
Change AMSAppGRRS to use Lime SDR
-
Split many of the methods of AMSUHFRadioSupport into AMSAppGRRS and AMSAppSCRG
-
Added AMSUHFRadioSim.py to handle UHF link simulation (and dropped AMSInterfaceEndurosatRadioSim.py)
-
Note: As of V3.3, ARES should support the use of either a Lime SDR or Endurosat Type II ground radio. This may not be true in future releases.
-
-
Added support for two ground UHF radio nodes
-
Added 'MULTIPLE_UHF_GROUND_NODES' flag in ARESConfig.toml (See MULTIPLE_UHF_GROUND_NODES)
-
-
Updated discussion of UHF radio simulation
-
C.10. V3.3.1
-
AMS
-
Added EPS and Iridium Commands to ARESUI and AMS
-
Added current EPS configuration to Telemetry
-
C.11. V3.3.3
-
User Interface
-
Updated output file names for ground station and memory nodes
-
-
Installation
-
Added the following command to Pi installation:
sudo apt-get install python-smbus python3-smbus python-dev python3-dev i2c-tools python3 -m pip install adafruit-blinka adafruit-circuitpython-busdevice
-
C.12. V3.3.4
-
TBD
-
AMS
-
Changed the UHF radio app synchronization timing
-
Removed duplicate acknowledgements across group addresses
-
Added MMC5883
-
Added TMP100
-
Added FXOS8700CQ
-
-
ACS
-
Fixed error relating to old TLE files
-
C.13. V3.3.3.3
-
Added new telemetry plot capability in ARES User Interface
-
Now capable of plotting all values in the telemetry record
-
-
Updated AMSAppPIGPIO to handle multiple devices and exceptions
-
Removed battery level yellow
-
Revised Mode diagram and SCZC
-
Moved solar panel voltage, amps from solar panel records to EPS records
-
Updated initial values of battery levels and hardware devices
-
Adjusted precision on temperature data
-
Added to PI installation
python3 -m pip install adafruit-circuitpython-tca9548a
C.14. V3.3.4
-
Updated AMS Modes
-
Droped Battery_green_trigger from Boot to Safe Mode transition
-
Added battery voltage check in AMSAppSCZC during safe mode
-
-
Restructured test directory
-
Added exception handling to keychain operations (ACSKeychain.py)
-
Added warning errors and automatic permissions fix on Linux for mkspk
-
Corrected self.yp_solar_panel_temp_C error in AMSDPRecSolarPanelSensors.py
-
Added option to just access EPS in AMSInterfacePIGPIO.py
-
Needed to support Boot Mode battery voltage level access in AMSAppSCZC.py
-
-
Corrected error in ARESRunS1ZC.sh
-
Added exception handling for PIGPIO and TCA9548A in AMSInterfacePIGPIO.py
C.15. V3.3.5
-
Added support for AMS Photodiodes
C.16. V3.4
-
Dropped official support for Windows (except via WSL, Hyper-V, or other VMs)
-
Dropped official support for macOS (except via VMs)
-
Upgraded to use Python 3.9
-
Upgraded Pis to Raspberry OS Lite (Bullseye)
-
Dropped support for older versions of Raspberry OS due to change in the Pi Camera stack
-
-
Use of the Legacy Pi Camera system has been dropped. All camera operations now use the new Raspberry Pi OS camera stack and OpenCV.
-
Revised Pi installation instructions to reflect current libraries
-
Added multi-sdr capability
-
Added a second APS payload app to AMS example (AR)
-
Added AMR app to AMS example and APS stand-alone (MR)
-
This includes another byte to the AMSTelemetry size
-
-
Switched Desktop Installation to using 'python -m pip install…' rather than 'pip install…'
-
Restructured ACSMessaeHub.py to reduce side effects
-
Environment Variables
-
Dropped the ARESPlatform environment variable
-
Added three Pi tags to ARESHardware - pi32, pi64, pi0
-
The python command is now always assumed to be 'python'. Any redirects of the command to other python command (such as python3) should be made via the environment running ARES.
-
-
Tensorflow Changes:app-name:
-
Desktop/Servers use Tensorflow 2.7
-
Raspberry Pi use Tensorflow Lite
-
-
Updated SCZC and ACSApp to support multiple payload apps
-
NOTE: In SCZC - Telemetry/log reported app state only reports state of last payload app
-
C.17. V3.5
-
Revision of Location/Orientation to use ECI coordinates
-
Upgrade to SCAD app
-
Revised message structure to support request/response tracking
-
Revised UI commands to use request/response tracking
-
Changed message content size to 200 bytes
-
Autozip all file transfers
-
Added time stamps to most hardware internal data pool records
-
Depreciated SatNogs Reasoners and Memory Records
-
Clarified AEON and CubeSat reference mission apps and experiments (ACSAddresses, AEON SDD)
-
Updated Installation - Users should review
-
Updated ARES Deployment - Users should review
-
Updated Remote Node Operations - Users should review
-
Replaced SCZC specific bash script with ARESLaunch.sh
-
Added software watchdog
-
Cleanup and test of ARESUI menus and commands
-
-
Updated use of NodeType field in ACSAddresses (see ARES Addresses)
-
Moved reports from $ARES/data (or $ARESData) to $ARES/reports (or $ARESReports)
-
Renamed ARES Observation Network to ARES Experimentation and Observation Network
-
Broke AEON documentation out of the ARES SDD to a stand-alone AEON SDD
C.18. V3.6
-
Installation and Environment
-
Revised instructions on setting up cameras on PIs (see Camera Suite Setup (Libcamera))
-
Added instructions to use SDRs on Windows WSL
-
Removed pygeodesy from required packages
-
-
Added Operational Test-Bed (OTB) Simulation
-
Added Blender-Based Camera Image Simulation (APSSensorTypeCameraOTBSim.py, APSEarthViewer.py, APSEarthViewer.blend)
-
Added the use of Blender (https://www.blender.org/) to generate simulated camera images. Please see section on installing Blender if you plan to use the OTB with image simulation
-
-
ACS Updates
-
ACSApp.py - pi shutdown command handler added
-
App address character strings updated - changed to only upper-case addresses (See App Addressing)
-
Removed old WATCHDOG timer configuration parameters and methods as this approach no longer used. Hardware watchdog timers are handled at the OS level and software watchdog timer is handled via ACSAppZX file touch method.
-
-
APS Updates
-
Added Blender-based simulated image generation
-
Added option for adding time and location information to captured images
-
-
Simulation (APS and AMS)
-
Updated simulation operations (See ARES Simulation
-
Updated UHF and Iridium Communication Simulation
-
Updated APS RF Sensor Simulation
-
Removed STK-based simulation (due to changes in STK licensing)
-
-
AMS Updates
-
Upgraded the EPS simulation
-
Replaced EPS Device eps_p31 device with eps_nanoavionics
-
ACSAddress.csv - added appdata:
-
S1ZC : EPS usb port (Only Value) (Example: '/dev/ttyUSB2')
-
S1HI : EPS usb port (Only Value) (Example: '/dev/ttyUSB2')
-
S1RG : Endurosat Serial Port (Third pipe '|' separated Value) (Example 'CALLSIGNG1|S1ZC|/dev/serial0')
-
GRR1 : Endurosat Serial Port (Third pipe '|' separated Value) (Example 'CALLSIGNG2|S2ZC|/dev/serial0')
-
GRR2 : Endurosat Serial Port (Third pipe '|' separated Value) (Example 'CALLSIGNS1R1|S1ZI:S1ZJ|/dev/serial0')
-
-
ACSPlatform.py
-
added 'eps_nanoavionics' hardware tag
-
-
AMSAppSCZC.py
-
removed EPS from pigpio initialization
-
added eps handler in initialization
-
updated method _update_battery_level_from_eps to now use eps interface
-
updated antenna deploy to use EPS interface
-
added app data for EPS serial port
-
black power level Pi shutdown added
-
-
AMSAppSCHI.py
-
removed EPS from pigpio initialization
-
Added EPS handler to initialization
-
Updated EPS read from pigpio to EPS interface in step method
-
added app data for EPS serial port
-
-
AMSAppGRRS.py
-
added app data for EPS serial port
-
-
AMSInterfacePIGPIO.py
-
Fully removed the EPS
-
Added categories to each sensor (an if statement has been placed before each sensor)
-
Updated self.read() method parameters
-
Removed parameters relating to EPS
-
Added the following (are all boolean values)
-
read_adcs
-
read_cdh
-
read_sp
-
-
the new parameters mentioned above all used to determine weather a sensor should be read based on category
-
-
added error handling to Photodiodes
-
try and excepts on each sensor
-
error logging
-
-
removed sleep statements for Thermocouples and it is only needed if reading from the same device within 0.2 seconds which should not happen
-
Update AMSInterfacePIGPIO Test
-
Renamed Rapid test to Loop Test
-
added command line variables
-
'-loop' start read in loop form
-
'-e' exclude a sesnor type from the read
-
'adcs'
-
'cdh'
-
'sp'
-
-
-
example 'python AMSInterfacePIGPIO.py -loop -e "cdh|sp" '
-
start test in loop
-
exclude cdh and sp sensors from read
-
-
removed EPS from test
-
cleaned up test to have a better structure
-
-
removed extra Antenna deploy method
-
fixed spelling errors in comments
-
removed camera and SDR status(remains in CDH record and telemetry as default value of false)
-
removed deploy antenna method
-
added antenna_status method
-
reads only the deployment Photodiodes
-
-
-
AMSInterfaceEPS.py
-
Created
-
currently just simulates EPS voltage
-
-
added deploy antenna method
-
-
AMSDPRecCDHSesnors.py
-
removed payload camera and sdr
-
-
AMSDPRecEPS.py
-
updated to Nano EPS
-
-
AMSTelemetry.py
-
removed payload camera and sdr
-
updated _encode_booleans_2 and _decode_booleans_2
-
removed payload camera and sdr
-
-
removed P31u EPS
-
added nano EPS
-
-
AMSTelemetryTable.py
-
removed payload camera and sdr
-
removed P31u EPS
-
added nano EPS
-
-
C.19. V3.6.1
-
Revised AMS Modes - Added Safe Mode
-
Updated ADCS Simulation Documentation (See Simulated ADCS)
-
Updated error handling for missing space-track.org account and password
C.20. V4.0
-
Changed License from GNU GPL 2 to Apache 2.0 (Primarily to drop CopyLeft requirements)
-
Upgrade Raspberry Pi Requirements
-
Support for Raspberry Pi earlier than Buster has been dropped (This is primarily due to the upgrade in the camera system - if you do not plan to use the camera, it is still possible to run an older version of Raspberry OS)
-
To upgrade:
+ .... sudo apt update sudo apt upgrade ....
-
Once upgraded, you should check the version:
cat /etc/os-release
-
You should see the following. Key, it should say bullseye, not buster or something else.
PRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)" NAME="Raspbian GNU/Linux" VERSION_ID="11" VERSION="11 (bullseye)" VERSION_CODENAME=bullseye ID=raspbian ID_LIKE=debian HOME_URL="http://www.raspbian.org/" SUPPORT_URL="http://www.raspbian.org/RaspbianForums" BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
-
You should also turn off the Raspberry Pi legacy camera system:
sudo raspi-config # Select interface options # Select "legacy camera..." # Make sure it is off
-
-
Restructuring
-
Restructured ARES to better support multiple missions
-
Restructured code module (see list below)
-
Updated Documentation
-
Changed AMS into set of example reference missions:
-
AMScXXXX - AMS CubeSat Reference Mission
-
AMSoXXXX - Distributed Observation Network
-
-
Moved AEON-specific portions of APS into a separate project with separate documenation - AEON
-
-
Documentation Upgrade
-
Updated instructions for using ARES (See Using ARES). This includes dropping the use ARES respository branches for missions.
-
Added SDD Section on Testing
-
-
Updated AMS documentation and structure
-
Changed ACSAddresses.csv to ARESAddresses.csv as mission will be modifying.
-
Added schedule field
-
Updated Installation Instructions (particularly for macOS and Windows Native)
-
Updated how to use $ARESHardware. Mission no longer need to edit ACSPlatform to add new $ARESHardware tags. The tags are now stored in a dictionary. See ARESHardware Fields for more details.
-
-
User Interface
-
Revised Menu Options and Commands
-
Revamped UI to support multiple projects
-
Broke ARESUI.py into ARESUI.py, AMScUI.py, AEONUI.py
-
ARESUI now supports subclassing for specific missions (as seen in AMScUI and AEONUI)
-
-
Removed some of the plot options in AMScUI - now rely completly on PLT command
-
-
ACS
-
Replaced Group Addresses with Message Routing (See Message Routing)
-
Depreciated the IsGroup field of ARESAddresses.csv
-
Changed GroupList to RouteList in ARESAddresses.csv
-
-
Exposed message acknowledgement timeout as a value in ARESConfig.toml
-
ACS_MESSAGE_ACK_TIMEOUT_SEC
-
Current default is 5 days.
-
-
Clarified term 'message internal type'
-
Make platform location/orientation a standard data pool post for use by AMS and APS (moved from AMSDPRecADCS)
-
Changed ACSSpice to consistently return np.arrays instead of lists
-
Changed ACSLORI to consistently use np.arrays instead of lists
-
Dropped unused methods from ACSUtils
-
Added backup state files for Apps, Reasoners, Sensors
-
-
APS
-
Remove APS Predictor Support Modules. Maintenance is difficult and all machine learning activities should be handled within individual reasoners.
-
Added AUTOCAPTURE_RATE keyword to all sensors (not just cameras)
-
Changed AUTOCAPTURE_RATE = 0 to indicate to just capture on command, no autocapture Use AUTOCAPTURE_RATE = 1 (Default) to capture on each step.
-
Added Roll Rates to APSSensors
-
Revised Task Scheduling component
-
Moved from APS to ACS
-
All task scheduling functions now found in ACSTaskScheduling.py
-
-
-
Changed files:
-
ACSBufferVector.py → removed
-
ACSUtilsIO.py → ACSUtilsBinaryIO.py
-
ACSUtilsBytes.py → ACSUtilsBytesIO.py
-
ACSAppZG.py → AMScAppZG.py
-
ACSAppZI.py → AMScAppZI.py
-
ACSAppZW.py → AMScAppZW.py
-
ACSCodeMgr.py → ACSvCodeMgr.py
-
ACSConfiguration.py → ACSvARESConfig.py
-
ACSDPRecIridiumRadio.py → AMSxDPRecIridiumRadio.py
-
ACSGeoMS.py → Removed
-
ACSLocation.py → Removed
-
ACSMessageEncryption.py → Removed
-
ACSOnlyBase.py → ACSvBase.py
-
ACSOnlyFileRecord.py → ACSvFileRecord.py
-
ACSOnlyHandler.py → ACSvHandler.py
-
ACSOnlyQueue.py → ACSvQueue.py
-
ACSQuaternion.py → Removed
-
ACSRockBlock.py → Removed
-
AMSAppGRRS.py → AMScAppGRRS.py
-
AMSAppGRZC.py → AMScAppGRZC.py
-
AMSAppGSHL.py → AMScAppGSHL.py
-
AMSAppGSZC.py → AMScAppGSZC.py
-
AMSAppSCAD.py → AMScAppSCAD.py
-
AMSAppSCHI.py → AMScAppSCHI.py
-
AMSAppSCHL.py → AMScAppSCHL.py
-
AMSAppSCRG.py → AMScAppSCRG.py
-
AMSAppSCZC.py → AMScAppSCZC.py
-
AMSConstants.py → AMScConstants.py
-
AMSDPRecADCS.py → AMScDPRecADCS.py (Part moved to ACSPlatformState.py)
-
AMSDPRecADCSSensors.py → AMScDPRecADCSSensors.py
-
AMSDPRecCDHSensors.py → AMScDPRecCDHSensors.py
-
AMSDPRecEndurosatRadio.py → AMScDPCubeSatRadio.py
-
AMSDPRecEPS.py → AMScDPRecEPS.py
-
AMSDPRecModesStates.py → AMScDPRecModesStates.py
-
AMSDPRecSolarPanelSensors.py → AMScDPRecSolarPanelSensors.py
-
AMSInterface_ADS1015.py → AMScInterface_ADS1015.py
-
AMSInterface_DS3231.py → AMSxInterface_DS3231.py
-
AMSInterface_FXAS21002C.py → AMScInterface_FXAS21002C.py
-
AMSInterface_FXOS8700CQ.py → AMScInterface_FXOS8700CQ.py
-
AMSInterface_MCP9600.py → AMScInterface_MCP9600.py
-
AMSInterface_MMC5883.py → AMScInterface_MMC5883.py
-
AMSInterface_P31u_Read.py → Removed
-
AMSInterface_P31u.py → Removed
-
AMSInterface_TCA9548A.py → AMScInterface_TCA9548A.py
-
AMSInterface_TMP100.py → AMScInterface_TMP100.py
-
AMSInterfaceEndurosatRadio.py → AMScUHFRadioHardware.py
-
AMSInterfaceEPS.py → AMScInterface_EPS.py
-
AMSInterfaceLimeSDRRadio.py → Removed
-
AMSInterfacePIGPIO.py → AMScInterface_PIGPIO.py
-
AMSTelemetry.py → AMScTelemetry.py
-
AMSTelemetryDB.py → AMScTelemetryDB.py
-
AMSTelemetryTable.py → AMScTelemetryTable.py
-
AMSUHFRadioSim.py → AMScUHFRadioSim.py
-
AMSUHFRadioSupport.py → AMScUHFRadioSupport.py
-
AMSUITelemetry.py → Folded into AMScUI.py
-
APSBufferHistory.py → ACSBufferHistory.py
-
APSBufferInt.py → ACSBufferInt.py
-
APSBufferFloat.py → ACSBufferFloat.py
-
APSBufferVector.py → ACSBufferVector.py
-
APSEarthViewer.py → AEONEarthViewer.py
-
APSConfiguration.py → Removed
-
APSEarthViewerCatalog.py → Removed
-
APSMemoryEREntityFR.py → AEONMemoryEREntityFR.py
-
APSMemoryEREntityRF.py → AEONMemoryEREntityRF.py
-
APSMemoryEREntityRS.py → AEONMemoryEREntityRS.py
-
APSMemoryEREntityST.py → AEONMemoryEREntityST.py
-
APSModelMPNNPredictor.py → APSModelMPNN* Classes
-
APSModelRFCutoffLearning.py → AEONModelRFCutoffLearning.py
-
APSSatNogAPI.py → Moved to Depreciated
-
APSReasonerER.py → AEONReasonerER.py
-
APSReasonerFR.py → AEONReasonerFR.py
-
APSReasonerLR.py → AEONReasonerLR.py
-
APSReasonerRA.py → AEONReasonerRA.py
-
APSReasonerRF.py → AEONReasonerRF.py
-
APSReasonerRN.py → AEONReasonerRN.py
-
APSReasonerST.py → AEONReasonerST.py
-
APSSensorTypeCameraBlender.py → AEONSensorTypeCameraBlender.py
-
APSSensorTypeFrameUtils.py → Folded into APSFrame.py
-
APSSensorTypeRFDirectional.py → Removed
-
APSSensorsTask.py → ACSTaskScheduling.py
-
APSTypes.py → APSModelMPNNTypes.py
-
C.21. V4.2
-
All
-
Upgraded ACSLORI, ACSSPICE, and associated modules to correct issues in use of quaternions and rotations.
-
Added Message Security Classes
-
Added new SDD section on Cybersecurity
-
Added matching AES keys for message security classes
-
Updated ARESMgrUI to add additional keys
-
Updates ACSMessages and ACSInterface to support message security classes
-
Updates ARESMgrUI, ACSMessages and ACSInterface to support corresponding AES keys
-
Updated various methods to check for message security classes (primariy when receiving messages)
-
-
Added new node class - payload control (PC)
-
-
ACS
-
Correct problem with message forwarding that caused multiple acknowledgement messages.
-
Correct problem with radio simulation reset that did not clear all message hub queues.
-
-
AMS
-
Changed SIMULATE_EPS_LOW_BATTERY to SIMULATE_EPS_LEVELS to provide greater control of EPS battery level simulation.
-
Moved Telemetry UI o AMScTelemetryUI.py to support payload visualization of telemetry
-
Updated visualization capabilities
-
-
Added the ability for a payload message to be added the beacon example in AMScAppSCRG
-
Referenced my data pool name AMScConstants.DATA_POOL_PAYLOAD_BEACON
-
Beacon messages (Telemetry and Payload Beacon) are used for all beacon transmission
-
Beacon messages (Telemetry and Payload Beacon) are the first two messages of any downlink byte stream
-
No actual use of this payload message is included in the example (See AEON for an example)
-
-
-
Installation
-
Updated Raspberry Pi setup to include instructions on installing cryptography on 32-bit Raspberry OS.
-
C.22. V4.3
-
Updated AMScAppSCAD and APSSensors to support .bsp files from tools like STK
-
Added send queue stats to telemetry (AMSTelemetry, AMScAppSCHL, ACSDPRecMR, ACSAppZR, ACSUtils)
-
Changed reserved field in ARESAddresses to 'is payload base station' to support payload base stations
-
Removed some components from AMS Cubesat Reference Mission
-
Unified source of AMS constants for the radio (was duplicated/split between different modules)
-
Updated location of boot services in ARESLaunch.sh
-
ACSLORI
-
Added precision parameter to ACSLORI methods
-
Cleaned up type usages in ACSLORI method
-
Corrected ACSLORI method calls in ACSTaskScheduling
-
-
Fixed message_to_bytestream and message_to_bitstream encryption error in ACSMessageUtils
C.23. V4.4
-
System Requirements
-
Change target python interpreter to Python 3.11
-
Changed official support of Raspberry Pi OS to 64-bit Bookworm
-
Changed official support of Rapsberry PIs to 3B and above (dropped testing for Pi Zeros, etc.)
-
Most contents of $ARES/installation have been removed as they are no longer considered useful.
-
-
Updates to installation
-
Added pandas and dash to desktops:
conda install pandas conda install dash conda install dash-bootstrap-components python -m pip install dash-daq
-
Added pandas and dash to Raspberry PIs:
python -m pip install pandas python -m pip install dash python -m pip install dash-bootstrap-components python -m pip install dash-daq
-
-
Updated the handling of ARESAddresses/ARESConfig to support multiple missions/configurations
-
Revamped ARES Addresses/ARESConfig sections (combined into one section)
-
Added support for multiple ARESAddresses/ARESConfig sets in $ARES/config
-
i.e. different ones for different missions/tests
-
-
Added options in ARESMgrUI.py to change mission name, network name, and versions in all ARESAddresses/ARESConfig sets in $ARES/config
-
Added option in ARESMgrUI to change the current ARESAddresses/ARESConfig set to a different set in $ARES/config
-
-
Added AMScAppGRCR.py and AMScAppSCCR.py to simulate use of a global commercial radio network in communicating with remote platforms (ex ViaSat)
-
Currently just placeholder apps that use simulated communications via the ACS Message Hub
-
Added SIMULATE_CR_RADIO and SIMULATE_CR_RADIO_DELAY parameters in ARESConfig.toml
-
-
Revisions to Log and Telemetry Ground Data Files
-
Added node-sourced telemetry and log datafiles (added to app-sourced telemetry and log datafiles)
-
Added recent node-sourced data telemetry and log datafiles
-
How much data is controlled by settings in ARESConfig.toml
-
-
-
Revamped User Interface (See <<_ares_user_interface, ARES User Interface>. for details
-
Local Webpage data displays
-
Revamped Command Line Interface
-
AMS Telemetry Operations Update
-
Updated telemetry displays/kml generation to fix errors
-
Deleted AMScTelemetryUI (functions moved to AMScTelemetryDB)
-
-
Expanded list of node types for use in user interface (see Node/App Types)
-
-
Added a combined example of link/routing
-
Changed App State files from text to binary and corrected state files of multi-level children
-
Impacted most app modules
-
-
Revise UTC to use standard format (previously it was a mixed format)
-
Revised message routing and added stand-alone ACSAppZT router app.
-
Improved software FDIR services
-
Added support for Linux on ARM processors - needs 'linux_arm' in the ARESHardware environment variable
-
Corrected Times - previously reporting in local time - now reporting in UTC time
-
All comm links now report a standard step message of total messages handled per step and total sent and received during this session and total sent and received
-
Added new keywords to ARESConfig.toml to support Dashboards.
-
Updated ADCS simulation to always load official spacecraft (Spacecraft ID > 0) TLEs from space-track.org to reduce chances of insufficient data to compute spice location and sun views.
-
Cleaned up app startup messages (particularly for remote apps)
-
A number of logs have been switched to logd.
-
Output now shows difference between log, logd, fatal errors, and just console messages.
-
-
Moved UHF_RADIO_QUERY_RATE and UHF_RADIO_QUERY_STEPS from ARESConfig to AMScUHFRadioSupport as they are fixed for a given UHF radio system.
-
Moved RF and Camera sensor support from AEON to APS
-
Changed name of AMSxAppZI, AMSxAppZG, AMSxAppZW to AMScAppZI, AMScAppZG, and AMScAppZW respectively
-
Revised Iridium AppData parameters to include a time window control for sending (AMScAppZI)
Appendix D: AMS Setup Walkthrough
Warning
|
This was generated with ARES V3.3. With the current version, the action names and output may vary some but the general approach is still valid. |
This section walks a user through getting started with AMS nodes. From this section, one will:
-
Setup and run a four-node desktop network (Spacecraft, Ground Radio, Ground Control and Ground Command)
Steps:
-
Install ARES as per the Installation Guide for more information.
-
Confirm ARES installation as per the Desktop Test.
-
Review the following documentation sections to get familiar with the ARES/AON concepts. You do not have to understand in-depth, but you should be able to answer the following questions.
-
Questions:
-
What is an app?
-
What is a node?
-
What is an app address? Node address?
-
What do the fields indicate in the $ARES/config/ARESAddresses.csv file?
-
What does the APSConfig.txt file contain?
-
What is the APSConfig,txt file and where is it for a particular app?
-
-
Open four command windows/shells. For each:
-
Open a bash shell
-
If not already activated, activate the anaconda environment you created during installation.
-
Set the location
cd $ARES cd src python ARESUI.py
-
-
Shell #1 - Start a ground control node
-
'l, 3, y, y' (Launch, Ground Station, reset, launch)
-
This will show some initial startup steps and then wait for messages from other nodes
-
-
Shell #2 - Start a ground radio node
-
'l, 4, y, y' (Launch, Ground Station, reset, launch)
-
This will show some initial startup steps and then you should see messages from the ground radio node show up in the ground control node window.
-
-
Shell #3 - Start a spacecraft node
-
'l, 5, 0, y, y' (Launch, Ground Station, SC #1, reset, launch)
-
This will show some initial startup steps including antenna deployment and app start
-
After a period, you should see messages from the spacecraft show up in the ground control node window.
-
-
Shell #4 - Attach to the ground control node
-
'g' (Attach to a ground station node)
-
'cap, S1ZC' (Send Command: Set/Clear Specific App Settings)
-
'ags' (Get App Control State)
-
This should result in eventually getting a message like the following, first in the spacecraft window and eventually in the ground control window.
S1ZC S1ZC log-debug False log-local False log-to-app GSZC save-rate 1 step-time 1.0 max-steps 0 report-rate 3600 max-messages 1000 max-queue 10000
-
-
You can look at the ground control results
-
Log can be found in *_log.csv files
-
Telemetry can be found in *_telemetry.csv files
cd $ARES/src/data/mission_name/network/GS/log
-
Appendix E: Control ("Flight") Software Design Considerations
Flight software requires thinking about the system as a whole. Some considerations in no particular order include:
-
The Nature of Remote Node "Flight" Software
-
Limited Communications - Due to limited communications, flight software must be heavily autonomous.
-
Reality vs Sensed - Flight software developers must always keep in mind that the software does not know reality, just what it can understand from sensors. When platform engineers say things like "When the spacecraft is looking at the sun, the software should do X", the developers should be asking things like:
-
"How do I know the spacecraft is looking at the sun?"
-
"How quickly?"
-
"What happens if I do X and the spacecraft is not looking at the sun?",
-
"Are there conditions or modes where I do not want to do X?",
-
"How precise do I need to be?"
-
"How well do I need to do X?"
-
-
Typical Flight Software Form:
-
Software Sensor Interface -data→ Flight Software -commands→ Software Effector Interface
-
Physical Effectors → Physical System ← Physical Environment
-
Software Commanded Effectors → "Do/did effectors really work"→ Physical Effectors
-
Physical System → "How well do sensors reflect" → Software
-
-
Keys
-
Must understand physical system
-
Must understand sensors/effectors
-
Must understand not just nominal but all conditions/faults/errors/etc.
-
-
-
Information That Needs to be Collected
-
List of operating modes
-
List of direct sensor values (type, rate, etc.)
-
List of derived sensor values (i.e. values that are derived from several sensor values)
-
List of ground inputs (commands or other auto ground data)
-
List of direct effector outputs (type, rate, how long to effect, etc.)
-
List of states (i.e. states of spacecraft, components, and environment states)
-
Actual State is what is actually real (which the FS does not actually know)
-
Belief State is what the flight software believes is the state
-
-
List of "belief rules"
-
Set of sensor inputs, ground inputs, belief states → belief state w/ confidence
-
-
List of "action rules"
-
Set of sensor inputs, ground inputs, belief states → effector action
-
-
What data is visible to the ground and how frequently (x rate or on demand)
-
-
Devices - For each external device:
-
Inputs
-
Outputs
-
What information about them needs to be sent to the ground
-
Faults
-
What are they
-
What does the ground need to know about them
-
what can be done about them
-
Ground commands including device settings
-
-
Environments
-
Development Environment
-
Desktop vs FlatSat vs Flight Hardware vs Space Operations
-
Simulation vs actual sensor/effectors in all three environments
-
Simulation can take a lot of time
-
How? STK? Direct Code? Etc.
-
What - location, orientation, thermal, etc.
-
What - sensor inputs
-
What - effector → environment → sensor loops
-
-
-
Environment or Space Hazards
-
Single point upsets and lockups
-
Designing to handle errors (data, lockup, code corruption, restarts, etc.)
-
-
Software Design Concepts
-
System/component self-check - is it possible? what can be done with results?
-
Arbitrary restarts (reboots, shutdown/delay/restart)
-
Software Updates
-
Software data hardening
-
Software recovery from corrupted code
-
OS vs Application
-
OS updates
-
OS hardening
-
OS fault tolerance
-
OS hard real-time vs time requirements
-
OS recovery from corrupted code
-
-
-
Testing
-
How to test in different environments?
-
Test Plans
-
Test Drivers/Systems
-
Test for Nominal and off-nominal
-
Specific tests:
-
Test Nominal Operations
-
Test Command/Responses
-
Test Faults
-
-
-
Operational Approaches
-
Autonomous vs Human Interaction
-
Ground Decision Making vs On-Board Decision Making
-
Flight Software Update
-
Payload Software Update
-
Appendix F: Sensor Background
This appendix provides some general background for RF and Camera sensors.
F.1. RF Sensor
The basic AEON RF Sensor is an Software Defined Radio (SDR). The typical SDR has a range of 24MHz to 1850 MHz ahtough this will vary depending on the specific radio.
A typical SDR may cover 24Mhz to 1850Mhz (may vary depending on SDR).
Interesting frequencies covered by typical SDRs:
-
24Mhz - Typically the lowest range of SDRs
-
3 MHz - 30 MHz - High Frequency (HF)
-
24.89MHz to 24.99Mhz - Amateur / Amateur Satellite
-
25.55MHz to 25.67Mhz - Radio Astronomy
-
-
30MHz - 300MHz - VHF
-
37.5MHz - 38.25MHz - Radio Astronomy with land and mobile use
-
50MHz-54MHz - Amateur
-
54MHz - 72MHz - TV Broadcast
-
73MHz - 74.6MHz - Radio Astronomy
-
76MHz - 88MHz - TV Broadcast
-
88MHz - 108MHz - FM Broadcast
-
108MHz - 117.975MHz - Aeronautical RadioNavigation
-
117.975MHz - 137MHz - Aeronautical Mobile
-
137Mhz - 138MHz - Space to Earth - Mobile Satellite, Space Research Space Operation, Met. Satellites
-
144MHz - 146Mhz - Amateur / Amateur Satellite
-
146MHz - 148Mhz - Amateur
-
149.9MHz - 150.05MHz - Ground to Space - RadioNavigation Satellite, Mobile Satellite
-
174MHz - 216MHz - TV Broadcast
-
-
300MHz - 3000MHz - UHF
-
328.6MHz - 335.4 - Aeronautical RadioNavigation
-
399.9MHz - 400.05MHz - Ground to Space - RadioNavigation Satellite, Mobile Satellite
-
400.05MHz - 400.15MHz - Standard Frequency and Time Signal (400.1MHz)
-
400.15MHz - 406.1MHz - Various Earth to Space and Space to Earth
-
-
1850 MHz (1.85GHz) - Typically the highest range of SDRs
F.1.1. SDR Tools
Although not required, there are several SDR tools that may be useful to setting up, testing, and operating AEON nodes.
-
Resources (https://www.rtl-sdr.com/big-list-rtl-sdr-supported-software/)
-
GQRX (http://gqrx.dk) - Linux
-
sudo apt-get install gqrx-sdr
-
-
WebSDR (http://websdr.org/)
-
OpenWebRX (https://sdr.hu/)
-
SDRAnywhere (http://sdranywhere.com/SDRanywhere/SDRanywhere.html)
-
RFSPACE (http://www.rfspace.com/RFSPACE/Home.html)
F.2. IR and Visible Band Cameras
Term | Description |
---|---|
Visible |
380nm-750nm |
Near-IR |
760nm to 1500nm |
Mid-IR |
1500nm to 3000nm |
Far-IR |
3000nm to 1,000,000nm (1mm) |




Possible Cameras:
Name | Connector | Wavelengths | Pixels | FOV | Focal Length | Sensor |
---|---|---|---|---|---|---|
Raspberry Pi Camera Module V2 |
CSI |
380 to 700 nm |
3280x2464 (8M) |
62.2x48.4 |
2.04mm |
Sony IMX219 |
Raspberry Pi Camera Module V2 NOIR |
CSI |
TBD |
3280x2464 (8M) |
62.2x48.4 |
2.04mm |
Sony IMX219 |