SCRAM is a Command-line Risk Analysis Multi-tool.
This project aims to build a command line tool for probabilistic risk analysis. SCRAM is capable of performing event tree analysis, static fault tree analysis, analysis with common cause failure models, probability calculations with importance analysis, and uncertainty analysis with Monte Carlo simulations. This tool can handle non-coherent fault trees, containing NOT logic.
SCRAM input and report files are based on the Open-PSA Model Exchange Format. For the current status of the Open-PSA MEF features in SCRAM, please see the MEF Support documentation.
A complementary GUI front-end is under development for visualization and manipulation of risk analysis models and reports.
To explore the performance of SCRAM or research fault trees, a fault tree generator script is provided, which can create hard-to-analyze fault trees in a short time.
The documentation contains a full description of SCRAM, its current capabilities, and future additions. The latest stable release is packaged for quick installation on various platforms.
Table of Contents
Some dependencies are provided with git submodules (e.g., Catch2).
In order to initialize all the submodules,
this repository must be cloned recursively with git clone --recursive,
or the following commands must be executed after a normal clone.
git submodule update --init --recursive| Package | Minimum Version | 
|---|---|
| CMake | 3.8 | 
| boost | 1.61 | 
| libxml2 | 2.9.1 | 
| Python | 3.4 | 
| Qt | 5.9.1 | 
| Package | Minimum Version | 
|---|---|
| TCMalloc | 1.7 | 
| JEMalloc | 3.6 | 
| Humanity Icons | 0.6.13 | 
| Package | Minimum Version | 
|---|---|
| GCC/G++ | 7.1 | 
| Clang/LLVM | 5.0 | 
| Intel | 18.0.1 | 
Python and GCC/G++ compiler are assumed to be available on the system.
The process is tested on Ubuntu 17.10 using apt-get as the package manager:
sudo apt-get install -y cmake lib{boost-all,xml2,google-perftools,qt5{svg,opengl}5}-dev qt{base,tools}5-dev{,-tools} humanity-icon-themeIf on a Mac system, homebrew is a good package manager to use. It is assumed that some dependencies are provided by Xcode (e.g., Python, llvm/clang, make). The following instructions are tested on OS X 10.12:
brew install cmake boost libxml2 gperftools qt5MSYS2/Mingw-w64 is the recommended platform to work on Windows. Assuming MSYS2 is installed on the system, the following instructions will install SCRAM dependencies:
pacman --noconfirm -S mingw-w64-x86_64-{gcc,make,cmake,boost,libxml2,qt5}SCRAM installation and executables must be run inside of the MSYS2 shell.
The project is configured with CMake scripts.
CMake generates native "makefiles" or build system configurations
to be used in your compiler environment.
If there are dependency issues, CMake output should guide with errors.
The configuration and build must happen out-of-source (e.g., in build sub-directory).
.../scram/build$ cmake .. -DCMAKE_INSTALL_PREFIX=path/to/installation/directory -DCMAKE_BUILD_TYPE=ReleaseFor Mingw-w64 on Windows, specify -G "MSYS Makefiles" generator flag.
To build tests, specify -DBUILD_TESTING=ON option.
Various other project configurations can be explored with CMake or its front-ends. For example:
.../scram/build$ cmake -L
.../scram/build$ ccmake .
.../scram/build$ cmake-gui .An example build/install instruction with the CMake generated Makefiles:
.../scram/build$ make installThe main and test binaries are installed in installation/directory/bin.
The input files and schema are copied in installation/directory/share/scram/.
Other tools, such as the fault tree generator,
can be found in the scripts directory.
These tools do not require compilation or installation.
This guide assumes
that SCRAM installation directories are in the global path.
If this is not the case,
path/to/installation/directory/bin/ must be prepended to the command-line calls.
However, if SCRAM executables are not in the path,
some system tests and scripts cannot be initiated.
Example configuration and input files are provided in the input directory.
scram path/to/input/filesOn command line, run help to get more detailed information:
scram --helpVarious other useful tools and helper scripts,
such as the fault tree generator,
can be found in the scripts directory.
Help prompts and the documentation have more details how to use these tools.
To launch the GUI front-end from the command-line:
scram-guiThe command can also take project configuration and/or input files:
scram-gui path/to/input/files
scram-gui --project path/to/project/file
scram-gui path/to/input/files --project path/to/project/fileTo run the unit and benchmark tests:
scram_testsTo test the tools in the scripts directory:
.../scram/scripts$ python -m pytest test/To test the command-line call of SCRAM:
.../scram/tests$ python -m pytest test_scram_call.pyA set of performance tests is provided to evaluate the running times on the host machine and to help developers check for regressions. More details can be found in performance test source files.
To run all performance tests (may take considerable time):
scram_tests [.perf]Unfortunately, Qt Test does not automatically register or manage all its test cases,
nor does it provide a single test driver.
Each test case is a separate binary with its own commands and reports.
Take a look at path/to/installation/directory/bin directory
for the compiled scramgui_test${CASE_NAME} binaries to run.
All Qt Tests are also manually registered with CTest so that it is possible to run all the GUI tests at once:
.../scram/build$ ctest --verboseThe main goal of SCRAM fuzz testing
is to discover defects in its analysis code.
It is recommended to build SCRAM
with assertions preserved
and sanitizers enabled, for example,
address sanitizer in GCC and Clang -fsanitize=address.
In order to speed up the fuzz testing,
SCRAM may be built with optimizations but NDEBUG undefined.
Additionally, multiple SCRAM instances can be run at once.
An example command to run SCRAM 1000 times with 4 parallel instances:
fuzz_tester.py -n 1000 -j 4The fuzz tester can be guided with options listed in its help prompt. Some options can be combined, and some are mutually exclusive. The priorities of mutually exclusive options and combinations are hard-coded in the script, and no error messages are produced; however, information messages are given to indicate the interpretation.
fuzz_tester.py --helpFuzzing inputs and configurations are auto-generated. The fuzz tester collects run configurations, failures, and logs. The auto-generated inputs are preserved for failed runs.
The Fuzz tester can check the results of qualitative analysis algorithms implemented in SCRAM. If there is any disagreement between various algorithms, the run is reported as failure.
fuzz_tester.py --cross-validateDocumentation is generated with the configurations on the gh-source branch.
The raw documentation files are in the doc directory.
The development may follow the Documentation Driven Development paradigm for some new features. Therefore, some documentation may be ahead of the actual development and describe features under current development or consideration.
For any questions, don't hesitate to ask the user support mailing list (https://groups.google.com/forum/#!forum/scram-users, [email protected]).
For latest releases and information about SCRAM, feel free to subscribe to the announcements (https://groups.google.com/forum/#!forum/scram-announce, [email protected]).
Please follow the instructions in CONTRIBUTING.md.