Getting started
Microstat is a suite of simulation and analysis tools for small businesses. It includes three tools:
- Process Map — model a workflow as a network of nodes, run discrete-event simulations, and identify bottlenecks.
- Spreadsheet Sim — take an existing Excel workbook, mark uncertain inputs as probability distributions, and run a Monte Carlo simulation over your model.
- Probability Playground — write a quick back-of-the-envelope model in a mini-language and instantly see the output distribution as a histogram.
Quick start
Process Map
- Sign in and go to App → Process Map.
- Press
Sto place a Start node,Tfor Task nodes,Efor an End node. - Use the Connect tool (
C) to draw edges between nodes. - Click the simulation icon on any node to set service time distributions.
- Press Run in the header to launch a simulation.
Spreadsheet Sim
- Sign in with a Pro account and go to App → Spreadsheet Sim.
- Click Upload .xlsx and choose your workbook.
- In the sidebar, click + Add under Assumptions to mark uncertain cells.
- Click + Add under Outputs to select result cells.
- Set the rep count and click Run.
Probability Playground
- Go to microstat.app/app/playground/ — no account needed.
- Type a model in the editor, e.g.
revenue ~ norm(50000, 10000); costs ~ norm(30000, 5000); profit = revenue - costs; - The histogram updates instantly.
API access
All tools expose a REST API under /api/. Authenticate with a session cookie or an API key Bearer token. See the API spec for endpoint details.