sim 0.11.0

Sim is a discrete event simulation package that facilitates Rust- and npm-based simulation products and projects
Documentation

stability-experimental GitHub Workflow Status Crates.io Crates.io npm npm docs.rs Codecov Crates.io

"Sim" or "SimRS" is a discrete event simulation package that facilitates Rust- and npm-based simulation products and projects.

This repository contains:

  1. Random variable framework, for easy specification of stochastic model behaviors.
  2. Out-of-the-box models, for quickly building out simulations of dynamic systems with common modular components.
  3. Output analysis framework, for analyzing simulation outputs statistically.
  4. Simulator engine, for managing and executing discrete event simulations.
  5. Custom model macros, for seamlessly integrating custom models into simulations.

Sim is compatible with a wide variety of compilation targets, including WebAssembly. Sim does not require nightly Rust.

Table of Contents

Background

Simulation is a powerful tool for analyzing and designing complex systems. However, most simulators have steep learning curves, are proprietary, and suffer from limited portability. Sim aspires to reduce the time required to build new simulation products, complete simulation projects, and learn simulation fundamentals. Sim is open source and, by virtue of compilation target flexibility, relatively portable.

Install

For use in Rust code bases, leverage the package as a cargo dependency

[dependencies]
sim = "0.11"

For use as a WebAssembly module in a JavaScript/TypeScript code base, leverage the package as a npm dependency

npm i sim-rs

Usage

Rust simulations are created by passing Models and Connectors to Simulation's post constructor. WebAssembly simulations are defined in a declarative YAML or JSON format, and then ingested through WebSimulation's post_yaml or post_json constructors. Both models and connectors are required to define the simulation. For descriptions of the out-of-the-box models, see MODELS.md.

Simulations may be stepped with the step, step_n, and step_until methods. Input injection is possible with the inject_input method.

Analyzing simulations will typically involve some combination of processing model records, collecting message transfers, and using output analysis tools. Analysis of IID samples and time series data are possible.

Please refer to the documentation at https://docs.rs/sim. Also, the test simulations are a good reference for creating, running, and analyzing simulations with Sim.

Contributing

Issues, feature requests, and pull requests are always welcome!

License

This project is licensed under either of Apache License, Version 2.0 or MIT License at your option.

Apache License, Version 2.0

MIT License

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in sim by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.