# Simulation

> Choose between Gazebo, Isaac Sim, and MuJoCo and define what the simulation must prove.

- Skill: `robium-ai/simulation` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add robium-ai/simulation`
- Raw SKILL.md: https://api.skillmd.com/api/skills/robium-ai/simulation/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: robium-ai (https://skillmd.com/u/robium-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/robium-ai/simulation

---


# Simulation

Choose a simulator for the project's hardest requirement, then define the
evidence that would make its results trustworthy.

## Pick by bottleneck

- **Gazebo:** prefer for ROS-centric mobile robots, standard sensor simulation,
  and projects without a confirmed compatible NVIDIA GPU.
- **Isaac Sim:** consider when photorealism, synthetic data at scale, or the
  NVIDIA Isaac stack is central. Confirm the current RTX GPU, driver, OS, and
  VRAM requirements before committing to it; use `gazebo` if that environment
  is not real and available.
- **MuJoCo:** prefer for lightweight, contact-rich manipulation that does not
  need ROS integration or photoreal rendering.
- A project may use different simulators for different concerns. Avoid forcing
  one tool to own both navigation validation and training-data generation.

After selection, use `gazebo`, `isaac-sim`, or `mujoco` for tool mechanics.
Use `isaac-lab` for training workflows on top of Isaac Sim.

## Define fidelity before building

- Name what must transfer to hardware: interfaces, sensor behavior, dynamics,
  contacts, timing, or visual appearance.
- Match real sensor rate, noise, frame names, range, field of view, resolution,
  and timestamp source where those affect downstream decisions.
- Record known model gaps instead of treating simulation success as real-world
  evidence.
- If the simulator will back regression tests, control time step and randomness
  and judge behavior with tolerances rather than pixel-perfect coincidence.

Read [sensor fidelity](SENSOR-FIDELITY.md) when adding sensors, preparing
sim-to-real work, or turning a scenario into a repeatable test. Use `data` when
the unresolved question is what training data to generate rather than how to
simulate it.

## Done

- The selected tool fits the available hardware and the project's main
  fidelity requirement.
- The simulation contract names which interfaces and physical properties must
  match reality.
- Every consumer uses a consistent clock and frame convention.
- Repeatability is designed where the simulation will be used as a test.
- Version and hardware requirements were checked in the current upstream
  [Gazebo](https://gazebosim.org/docs/),
  [Isaac Sim](https://docs.isaacsim.omniverse.nvidia.com/), or
  [MuJoCo](https://mujoco.readthedocs.io/) documentation.

