Automatic conversion from fault trees into behavior trees with formal verification capabilities
Project description
Fault Tree to Behavior Tree Converter
Overview
This repository focuses on the conversion of fault trees, represented in draw.io diagram XML files, into behavior tree XML files compatible with the BehaviorTree.CPP library. It enables users to transform their fault tree diagrams into actionable behavior trees, facilitating integration with systems that utilize the BehaviorTree.CPP framework for managing complex behaviors.
The project is specifically designed for Functional Safety (FuSa) runtime assessment for autonomous vehicles, adhering to the ISO 26262 standard for road vehicles. It allows for the automatic generation of FuSa Supervisors from static safety analysis, ensuring compliance with these safety requirements. These supervisors can be formally verified using the NuSMV 2.6.0 tool.
Installation
Install with PyPI:
pip install ft2bt
echo 'export FT2BT_PATH=$(python3 -c "import ft2bt; import os; print(os.path.dirname(ft2bt.__file__))")' >> ~/.bashrc
source ~/.bashrc
Requirements
This project requires NuSMV version 2.6.0 to be installed, only in the case that the formal verification is required. Follow the steps below to install it:
- Go to the NuSMV Downloads Page.
- Download the NuSMV 2.6.0 archive file for your operating system.
After downloading, extract the contents of the archive file:
tar -xvzf NuSMV-2.6.0.tar.gz
cd NuSMV-2.6.0
./configure
make
sudo make install
NuSMV -version
You can refer to the NuSMV Documentation for more details.
The repository has been proven in an Ubuntu 20.04 environment.
Usage
The tool is designed to convert fault trees from draw.io diagram XML files into behavior tree XML files compatible with the BehaviorTree.CPP library. Here's how to use it:
Preparing Your Fault Tree Diagram
- Create or Open Your Fault Tree Diagram in Draw.io:
- First, visit draw.io to create or edit your fault tree diagram. You may refer to their documentation for guidance on using the tool.
- Diagram Structure & Symbols:
- Hazards: Represent hazards using rectangles. This is a required element in your diagram.
- Events: Depict events using circles. These are also required elements.
- AND/OR Gates: Use the respective symbols for AND/OR gates in your diagram. These are required for depicting logical relationships in the fault tree.
- Probabilities: Use text below the events to indicate the correspondent probability. Example:
p = 0.1
. These elements are not required.
- Exporting the Diagram as XML:
- Once your fault tree diagram is ready, you need to export it in XML format. In draw.io, go to
File
>Export as
>XML
to save your diagram as an XML file.
- Once your fault tree diagram is ready, you need to export it in XML format. In draw.io, go to
Warning!: All fault tree elements, with the exception of text probabilities, should be connected by directional arrows. Ensure that each arrow is physically attached to its corresponding elements to maintain clarity and accuracy in the diagram.
Preparing Your Hazard Analysis and Risk Assessment (Optional)
Create a *.csv file with some required column names:
- Item_ID: Identificator of the Item analyzed.
- Hazard_ID: Identificator of the possible Hazard. The ID must match with the name of the correspondent Hazard in the Fault Tree.
- Operating_Scenario_ID: Identificator of the Operating Scenario.
- ASIL: Automotive Safety Integrity Level. Options: A, B, C, D.
- Safety_Goal_ID: Identificator of the Safety Goal.
- Safety_State_ID: Identificator of the Safety State action.
Running the Conversion Tool
Run the conversion command:
ft2bt -f FTA_FILEPATH [-v] [-c] [-r] [-o OUTPUT_FOLDER] [-p] [-H HARA_FILEPATH] [-os] [-ctl]
Where:
- -f: (Required, str) Specifies the XML global filepath name of the draw.io diagram.
- -v: (Optional, bool) Automatically shows and saves the renders. Defaults to False.
- -c: (Optional, bool) Generate a cpp ROS node template for the behavior tree. Defaults to False.
- -r: (Optional, bool) Replaces current code if previously generated and -c is set to True.
- -o: (Optional, str) Specifies the global folder path, where the behavior tree XML diagram is saved.
- -p: (Optional, bool) Probabilities are considered to sort the behavior tree nodes. Defaults to False.
- -H: (Optional, str) Specifies the CSV global file name of the Hazard Analysis and Risk Assessment (HARA).
- -os: (Optional, bool) Generate a FuSa BT that includes events to check the Operating Scenario. Defaults to False
- -ctl: (Optional, bool) Formally verify the BT FuSa supervisor with CTL formulation. Defaults to False
Output Example: Behavior Tree Diagram
Below is an example of the behavior tree diagrams generated from the fault tree and HARA examples. The command used for the generation is:
ft2bt -os -p -ctl -f $FT2BT_PATH/test/fault_trees/fta_example.xml -H $FT2BT_PATH/test/hara/hara_example.csv -o $FT2BT_PATH/test/behavior_trees
The order of the events is sorted by probability of occurrence (-p option). The operational situations (OS) are added from the HARA information (-os option).Finally, CTL automotive functional safety formal verification is performed to ensure that the FuSa Supervisor is meeting the ISO 26262 requirements (-ctl option).
The output XML file that represents the supervisor can be loaded using Groot:
Related Research
- Behavior Trees for the Application of ISO 26262 in Field Monitoring Processes for Autonomous Vehicles (Conference Article, IEEE ITSC 2024)
- Behavior Trees in Functional Safety Supervisors for Autonomous Vehicles (Preprint Article, IEEE ITS)
Contact Information and Acknowledgement
For further information regarding this project, please feel free to reach out to Carlos Conejo carlos.conejo@upc.edu.
This project was mainly developed at the Institut de Robòtica i Informàtica Industrial (IRI), a joint university research center of the Polytechnic University of Catalonia (UPC) and the Spanish National Research Council (CSIC). The automatized formal verification process was developed in collaboration with the Cyber Physical Systems Group (TUM).
Research partially funded by the Spanish State Research Agency (AEI) and the European Regional Development Fund (ERFD) through the SaCoAV project (ref. PID2020-114244RB-I00). Also funded by Renault Group through the Industrial Doctorate "Safety of Autonomous Vehicles" (ref. C12507).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ft2bt-0.6.12.tar.gz
.
File metadata
- Download URL: ft2bt-0.6.12.tar.gz
- Upload date:
- Size: 682.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4478bff6cd08b4f61c377dc4158cabf14f34f9b9827bfaa4c67eec33f1a86f08 |
|
MD5 | 2a0a2cab75e1ce2b1467c459ccf70837 |
|
BLAKE2b-256 | 8863b138d77f7cf37b2e8cc7a638631b488e992c318ded5d4631ba325a9682df |
File details
Details for the file ft2bt-0.6.12-py3-none-any.whl
.
File metadata
- Download URL: ft2bt-0.6.12-py3-none-any.whl
- Upload date:
- Size: 714.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30ed7835b2a4123ddee1bdc5784d7840d334e3df2dfd099cc62e14b9b813c8d9 |
|
MD5 | b16848aeeae71ee898bfcbb5597a7ca7 |
|
BLAKE2b-256 | 9c86f605a9a00c98f9f5a9459bea1de5985cf02419ce62751c22274809550667 |