History and versions
HLA was initiated in the early 1990s when Dr. Anita K. Jones, the Director of Defense Research and Engineering within the US Department of Defense, gave the Defense Modeling and Simulation Office (DMSO) the task of “assuring interoperability and reusability of defense models and simulations”. In 1995 DMSO formulated a vision for modeling and simulation and established a modeling and simulation masterplan, which included the High Level Architecture. Two protocols for M&S interoperability already existed:HLA 1.3
HLA 1.3 was published in March 1998 by DMSO. It consists of: * U.S. Department of Defense, Rules Version 1.3 * U.S. Department of Defense, High Level Architecture Interface Specification Version 1.3 * U.S. Department of Defense, High Level Architecture Object Model Template Version 1.3 The US DoD also published interpretations for HLA 1.3: * U.S. Department of Defense, Interpretations of the High Level Architecture Interface Specification Version 1.3, Release 3HLA 1516-2000
HLA IEEE 1516-2000 was published in 2000 by IEEE. It consists of: * IEEE Std 1516–2000 – Standard for Modeling and Simulation High Level Architecture – Framework and Rules * IEEE Std 1516.1–2000 – Standard for Modeling and Simulation High Level Architecture – Federate Interface Specification * IEEE 1516.1–2000 Errata (2003-oct-16) * IEEE 1516.2-2000 – Standard for Modeling and Simulation High Level Architecture – Object Model Template (OMT) Specification Major improvements in IEEE 1516-2000 included an XML-based FOM with detailed data type specifications, as well as an improved DDM design. The IEEE 1516-2000 standard was also complemented by a recommended development process as well as a recommended VV&A process: * IEEE 1516.3-2003 – Recommended Practice for High Level Architecture Federation Development and Execution Process (FEDEP). This standard would later become IEEE Std 1730-2010 Distributed Simulation Engineering and Execution Process ( DSEEP) * IEEE 1516.4-2007 – Recommended Practice for Verification, Validation, and Accreditation of a Federation an Overlay to the High Level Architecture Federation Development and Execution Process It was soon found that the 1516-2000 standard had APIs that were slightly different for each RTI implementation. SISO produced a standard with alternate, dynamic link compatible (DLC) C++ and Java APIs: * SISO-STD-004.1-2004: Standard for Dynamic Link Compatible HLA API Standard for the HLA Interface Specification (IEEE 1516.1 Version) * SISO-STD-004-2004: Standard for Dynamic Link Compatible HLA API Standard for the HLA Interface Specification (v1.3) The DLC APIs were later merged into the main standard.HLA 1516-2010 (HLA Evolved)
The IEEE 1516-2010 standard was published in August 2010 by IEEE and is commonly known as HLA Evolved. It consists of: * IEEE 1516–2010 – Standard for Modeling and Simulation High Level Architecture – Framework and Rules * IEEE 1516.1–2010 – Standard for Modeling and Simulation High Level Architecture – Federate Interface Specification * IEEE 1516.2-2010 – Standard for Modeling and Simulation High Level Architecture – Object Model Template (OMT) Specification Major improvements in IEEE 1516-2010 include Modular FOMs, incorporation of the DLC APIs in C++ and Java, a Web Services API and Fault Tolerance. Machine-readable parts of this version of HLA, such as XML Schemas, C++, Java andHLA 1516-20XX (HLA 4)
The development of a new version of HLA started in January 2016 by SISO and is currently ongoing.Technical overview
The HLA standard consists of three parts: * Framework and Rules, which specifies ten architectural rules that federates or the entire federation shall adhere to. * Federate Interface Specification, which specifies the services that shall be provided by the RTI. The services are provided as C++ and Java APIs as well as Web Services. * Object Model Template Specification which specifies the format that HLA object models, such as the FOM, shall use.Common HLA terminology
* Run-time Infrastructure (RTI): Software that provides a standardized set of services, as specified in the HLA Federate Interface Specification. There are seven service groups. * Federate: A system, such as a simulation, a tool or an interface to live systems, that connects to the RTI. Examples of tools are data loggers and management tools. A federate uses the RTI services to exchange data and synchronize with other federates. * Federation: A set of federates that connect to the same RTI together with a common FOM. * Federation Execution: A session, where a set of federates execute together in a federation with a specific objective, using the same RTI and FOM. * Federation Object Model (FOM): A document that specifies object classes, interaction classes, data types and additional data that is used for the information exchange in a federation. A FOM is an XML file that follows the format of the HLA Object Model Template and the associated XML Schema. Different FOMs are used for exchanging data for different application domains. There are standardized FOMs, called reference FOMs, that are commonly used as a starting point for FOM development. A FOM can be developed and extended in a modular way using FOM modules. * Simulation Object Model (SOM): A document that specifies object classes, interaction classes, data types and additional data that a particular simulation publishes and/or subscribes to in a federation. A SOM is also an XML file that follows the format of the HLA Object Model Template and the associated XML Schema. SOMs can also be developed and extended in a modular way using SOM modules. * Object: Objects are used to represent data that is persistent over some period of time and that have attributes that can be updated. They are defined in the FOM/SOM using an Object Class. * Interaction: Interaction are used to represent instantaneous events with parameters. An interaction that has been sent cannot be updated (as opposed to object classes). They are defined in the FOM/SOM using an Interaction Class. * Datatypes: The representation and interpretation of attribute and parameter data is specified in the FOM/SOM using HLA Datatypes. * Publish: A federate that publishes an object class with a set of attributes can register and delete instances of that object class and update its attribute values. A federate that publishes an interaction class can send interactions of that interaction class, together with associated parameter values. * Subscribe: A federate that subscribes to an object class with a set of attributes will discover registrations and deletions of instances of that object class and receive updates of subscribed attributes. A federate that subscribes to an interaction class will receive interactions of that interaction class, together with associated parameter values.Interface specification
The RTI services are defined in the HLA Interface Specification. They are grouped into seven service groups. In addition to these services, the Management Object Model (MOM) provides services that makes it possible to inspect and adjust the state of the federation programmatically. Most RTIs consist of a Central RTI Component (CRC), which is an executable and Local RTI Components (LRCs), which are libraries that are used by the federates. Services are provided through a C++ orFederation Management Services
The purpose of Federation Management services, described in chapter 4 of the HLA Interface Specification, is to manage Federation Executions as well as federation-wide operations such as Synchronization Points and Save/Restore. One set of Federation Management services manages the connection to the RTI, the federation execution and the set of joined federates. Key services are: * Connect and Disconnect from the RTI * CreateFederationExecution and DestroyFederationExecution that are used to create and destroy a federation execution * JoinFederationExecution and ResignFederationExecution that are used by a federate to join and resign a federation execution. * ConnectionLost, that is used by the RTI to inform a federate that it has lost its connection to the federation execution due to a fault * ListFederationExecutions that is used to retrieve a list of available federation executions for an RTI Another set of services relates to synchronization points. These are federation-wide events where all, or selected federates are required to complete an operation, such as initializing a scenario, before the execution can continue. Key services are: * RegisterFederationSynchronizationPoint that is used to register a synchronization point * AnnounceSynchronizationPoint that is used by the RTI to inform federates that a synchronization point has been registered * SynchronizationPointAchieved that is used by a federate to indicate that it has achieved a synchronization point * FederationSynchronized that is used by the RTI to Inform federates that the federation is synchronized, i.e. all federates have achieved the synchronization point. Yet another set of service relates to saving and restoring a federation execution. A save operation requires both the RTI and each federate to perform a save of their internal state. A restore operation requires both the RTI and each federate to perform a restore of their internal state. Key services are: Save: * RequestFederationSave that is used to initiate a save of a federation * InitiateFederateSave that is used by the RTI to notify federates to start saving its state * FederateSaveComplete that shall be called by a federate when it has completed saving its state. * FederationSaved that is used by the RTI to notify federates that the federation is saved Restore: * RequestFederationRestore that is used to initiate a restore of a federation * InitiateFederateRestore that is used by the RTI to notify federates to start restoring its state * FederateRestoreComplete that shall be called by a federate when it has completed restoring its state. * FederationRestored that is used by the RTI to notify federates that the federation is restoredDeclaration Management Services
The purpose of Declaration Management services, described in chapter 5 of the HLA Interface Specification, is to enable federates to declare what information they wish to publish (send) and subscribe to (receive) based on object and interaction classes in the FOM. The RTI uses this information to route updates and interactions to subscribing federates. For an object class, publishing and subscribing are performed for a specific set of attributes. For interaction classes, the entire interaction, including all parameters, is published and subscribed. Key services are: * PublishObjectClassAttributes that is used to publish a set of attributes for a given object class. * SubscribeObjectClassAttributes that is used to subscribe to a set of attributes for a given object class. * PublishInteractionClass that is used to publish an interaction class including all paramete