This file describes the contributors to the HELICS library and the software used as part of this project If you would like to contribute to the HELICS project see CONTRIBUTING
- Jeff Daily (Now AMD)
- Andy Fisher
- Jason Fuller
- Shwetha Niddodi
- Trevor Hardy
- Monish Mukherjee
- Jacob Hansen
- Marc Eberlein
- Shrirang Abhyankar
Boost is used in a few places in the code. The IPC core uses the Boost.Interprocess library. Some of the header-only Boost algorithms and other libraries are also used throughout the code. Some of the string parsing can optionally use boost spirit. The webserver that is part of the broker_server uses Boost::Beast from Boost 1.70 or higher. Boost is licensed under the Boost Software License. Boost can be removed entirely from the source code with the use of a cmake flag.
Asio is used for TCP and UDP communication, as well as resolving IP addresses. The Asio library is included as a submodule. Asio is licensed under the Boost Software License.
The header only bindings for the ZeroMQ library are used to interact with the ZeroMQ library. The header files are modified to include some string operations and are included in the HELICS source. cppzmq is licensed under the MIT license.
JsonCpp is used for parsing json files. It is included as a submodule from a slightly modified fork to add support for object libraries and to clean up some warning issues. JsonCpp is licensed under public domain or MIT in case public domain is not recognized LICENSE.
CLI11 is a command line parser and was used as a replacement for boost::program_options. The modifications used in HELICS were merged to the CLI11 library and are now fully integrated in the upstream repository as of the 1.9 release of CLI11. The project was created by Henry Schreiner. Release 1.9 the CLI11 single file header is included with a HELICS install. CLI11 is available under a 3-Clause BSD license.
toml11 is a C++11 header-only TOML parser/encoder depending only on the C++ standard library. Compatible with the latest version of TOML v0.5.0. toml11 is licensed under the MIT license. HELICS includes it through a submodule of a library fork until the changes can be merged upstream.
GridDyn supports HELICS in experimental versions, and several components of GridDyn code were used in the development of HELICS, given they have several of the same authors.
Several components of libGuarded are being used in the core and application libraries to better encapsulate the locks for threading. The library was modified to allow use of std::mutex and std::timed_mutex support for the shared_guarded class, and also modified to use handles. It is now included through the gmlc/concurrency. libGuarded is licensed under BSD 2 clause.
fmt replaces boost::format for internal logging and message printing. The library is included as a submodule. fmt is licensed under BSD 2 clause license.
Several containers developed for HELICS and other applications were branched into a separate repository as a header only library. It is included in HELICS as a submodule and is released under a BSD-3 clause license.
Several concurrency related structures and containers were developed for HELICS and other applications and were branched into a separate repository as a header only library and also includes the modified libGuarded. It is included in HELICS as a submodule and is released under a BSD-3 clause license.
Several generic operations and utilities from HELICS and GridDyn are encapsulated in a separate repository, mostly dealing with String Operations but including a few other features as well. It is included in HELICS as a submodule and is released under a BSD-3 clause license.
A library that provides runtime unit values, instead of individual unit types, for the purposes of working with units of measurement at run time possibly from user input. It is included in HELICS as a submodule and is released under a BSD-3 clause license.
The cereal library is used for serialization of messages sent around inside HELICS. A modified version of cereal is included in the HELICS source and licensed under the BSD-3 clause license. The modifications include modifying the headers to use relative paths instead of absolute so it can be included in different locations.
While not used directly, much of the inspiration for HELICS comes from three separate projects at the different National Labs. These include FNCS at PNNL, FSKIT at LLNL(unreleased), and IGMS(unreleased) at NREL. The lessons learned from these three co-simulation platforms was fed directly into the design of HELICS, and the hope that the combination and partnership is better than any one lab could have accomplished on their own.
HELICS makes use of C++17 headers, but due to C++14 compatibility requirements these are not available on all supported compilers. So included library headers are used from @tcbrindle including std::any, and std::string_view; std::optional is used via containers. These fall under the boost license, this library is an aggregate from a number of different sources, see the README for more details. The Boost versions of these libraries are not used due to incompatibilities through different boost versions that HELICS supports, so a single stable source was used. When the minimum boost version and compiler is updated this code will likely be removed.
This variant was chosen for compatibility with C++17 over boost variant and better cross platform support than some of the other versions available. The single header version is included with the source. Boost Software License.
A single-header standalone variant of the filesystem library is used to avoid compiled libraries in boost. The single header version is included with the source and is released with a BSD-3 clause license.
Several CMake scripts came from other sources and were either used or modified for use in HELICS.
- Lars Bilke CodeCoverage.cmake
- NATIONAL HEART, LUNG, AND BLOOD INSTITUTE FindOctave.cmake
- clang-format, clang-tidy scripts were created using tips from Emmanuel Fleury
- Viktor Kirilov, useful CMake macros ucm particularly for the set_runtime macro to use static runtime libraries
- scripts for cloning get repositories are included from tschuchortdev/cmake_git_clone used with MIT License
- Some scripts for including google test were borrowed and modified from CLI11