NVIDIA Isaac Sim

21 min read
Updated
Suggest editHistoryTalk
RawGraph

Last edited

Fact-checked

In review queue

Sources

22 citations

Revision

v5 · 4,197 words

Fact-checks are independent of edits: a reviewer re-verifies the article against its sources and stamps the date. How we verify

NVIDIA Isaac Sim is an open-source robotics simulation application built on NVIDIA Omniverse for developing, simulating, and testing AI-driven robots in physically based virtual environments.[1] NVIDIA describes it on GitHub as "an open-source application on NVIDIA Omniverse for developing, simulating, and testing AI-driven robots in realistic virtual environments."[3] It provides high-fidelity, GPU-accelerated physics simulation, photorealistic OpenUSD-based rendering, synthetic data generation, and integration with popular robotics frameworks such as ROS 2.[1] Isaac Sim serves as the core simulation component of NVIDIA's broader Isaac robotics platform, which encompasses tools for robot learning, perception, manipulation, and sim-to-real transfer.[18]

Released under the Apache 2.0 license and freely available on GitHub (where the isaac-sim/IsaacSim repository has roughly 3.5k stars), Isaac Sim is used by leading robotics companies, research institutions, and manufacturers worldwide to train robot policies, generate labeled datasets for computer vision models, build digital twins of factories and warehouses, and validate robot behavior before physical deployment.[3][4] The current generally available release is Isaac Sim 6.0, which reached general availability on June 8, 2026.[21]

History and Development

Origins

The Isaac robotics platform traces its roots to NVIDIA's early investments in autonomous machine development. The first version of Isaac Sim, released in 2020 as a preview, was built on NVIDIA's Omniverse Kit and featured RTX graphics, PhysX 5.0 physics, and Python scripting for robot simulation.[4] Earlier prototypes had experimented with Unreal Engine 4 and Unity as rendering backends, but NVIDIA ultimately standardized on Omniverse as the foundation for all future development.

Isaac Sim 2020.1, announced alongside the Isaac SDK 2020.1, focused on LIDAR-based navigation of the "Carter" reference robot and demonstrated the viability of GPU-accelerated robotics simulation with ray-traced sensor models.

Omniverse Integration and Growth (2021-2023)

Throughout 2021 and 2022, NVIDIA expanded Isaac Sim's capabilities significantly. Isaac Sim 2022.1, released in June 2022, introduced improvements aimed at bridging the simulation-to-reality gap for robotics developers. Isaac Sim 2022.2, released in December 2022, added a people simulator and conveyor belt utility to support warehouse logistics and manufacturing robotics use cases.

Isaac Sim 2023.1.0, released in October 2023, brought further refinements to the platform and represented the last version under the year-based naming convention. This release corresponded internally to version 4.0.0, marking the transition to a numeric versioning scheme.

Modern Era (2024-Present)

Isaac Sim 4.0 launched on May 30, 2024, alongside Isaac Lab, a unified reinforcement learning platform that replaced several earlier frameworks. This release introduced support for humanoid robot models from companies including 1X Technologies, Unitree Robotics, and Boston Dynamics.

Isaac Sim 4.5, released in early 2025 following its announcement at CES 2025, added integration with the NVIDIA Cosmos world foundation model, improved URDF import workflows, enhanced physics simulation and modeling, and a new joint visualization tool.

Isaac Sim 5.0 achieved general availability at SIGGRAPH 2025 in August 2025, marking a milestone as the first fully open-source release on GitHub.[2] Key additions included neural reconstruction and rendering via NVIDIA Omniverse NuRec, advanced synthetic data generation pipelines, new robot models, improved sensor simulation with a new OmniSensor USD schema, full ROS 2 Jazzy Jalisco support, and a new ZeroMQ bridge for simulator control.[2]

Isaac Sim 5.1.0, released on October 21, 2025, updated the platform to Kit 107.3.3, introduced DGX Spark support, added new robot assets from Schunk, enhanced semantic segmentation for RTX sensors, and improved Docker multi-architecture support.[17]

Isaac Sim 6.0 followed an open-source early developer preview on January 5, 2026 and an early developer release at GTC 2026 in March 2026 before reaching general availability on June 8, 2026.[21] The 6.0 release delivers an architectural overhaul with multi-backend physics (both NVIDIA PhysX and NVIDIA Newton), a pluggable renderer system, and a kit-less installation mode, and adds AI-assisted development through Isaac Sim MCP integration with coding assistants, a web-based streaming client, and native Windows ROS 2 support.[21]

Architecture and Core Technology

Omniverse Foundation

Isaac Sim is built on NVIDIA Omniverse Kit, a modular toolkit for constructing 3D simulation applications.[4] Omniverse Kit provides functionality through lightweight C-based plugins for performance and API stability, alongside a Python interpreter for scripting and customization.[4] The architecture is designed to be fully extensible, allowing developers to build custom OpenUSD-based simulators or integrate Isaac Sim capabilities into existing testing and validation pipelines.[4]

Universal Scene Description (USD)

At the heart of Isaac Sim is OpenUSD (Universal Scene Description), an open-source 3D scene description format originally developed by Pixar.[4] USD serves as the unifying data interchange layer, enabling interoperability between different tools, teams, and workflows. Isaac Sim can ingest data from multiple source formats and convert them into USD for simulation.[4]

Import FormatDescription
URDFUnified Robot Description Format, commonly used in ROS
MJCFMuJoCo XML format for physics-based robot models
CADComputer-aided design files from engineering tools
OnShapeCloud-based CAD models
NuRecNeural reconstructions from real-world sensor captures

USD provides both a human-readable text format (.usda) for direct editing and a binary-encoded format (.usd) for performance and storage optimization. SimReady 3D assets built in USD can be reused across tools and loaded directly into Isaac Sim, where USDPhysics colliders, rigid body dynamics, and composition-arc-based variants enable testing of robots in virtual facilities that closely mirror real-world operations.[4]

Physics Engines

Isaac Sim supports multiple physics backends for simulating robot dynamics and environmental interactions.[5]

NVIDIA PhysX is the primary physics engine, providing GPU-accelerated simulation of rigid bodies, articulated multi-joint systems, vehicle dynamics, and SDF (signed distance field) colliders.[5] For each discrete time step, PhysX advances simulation objects given their current state and additional inputs such as control-policy torques. The updated state is written back to USD, where it can be processed by the user, a reinforcement learning policy, or other extensions such as the Omniverse RTX Renderer.[5]

NVIDIA Newton is a next-generation open-source, GPU-accelerated physics engine co-developed by Disney Research, Google DeepMind, and NVIDIA.[8] The Linux Foundation announced the contribution of Newton on September 29, 2025, describing it as "an open source, GPU-accelerated, extensible physics engine that enables faster, more scalable simulations to lower the barrier to robotics research."[22] Built on NVIDIA Warp and OpenUSD, Newton features differentiable physics for gradient propagation through simulation, making it particularly suitable for optimization-based robot learning.[8][22] Newton is licensed under Apache 2.0, became available in Isaac Lab at CoRL 2025, and is a first-class physics backend in Isaac Sim 6.0 alongside PhysX.[8][21]

Physics EngineLicenseKey Features
NVIDIA PhysXProprietary (bundled)GPU-accelerated rigid body, articulation, vehicle dynamics, SDF colliders
NVIDIA NewtonApache 2.0Differentiable physics, GPU-accelerated via Warp, multi-physics, OpenUSD support

Rendering Pipeline

Isaac Sim uses NVIDIA's RTX rendering technology for photorealistic visualization. The rendering pipeline leverages OptiX and RTX hardware for path tracing and ray tracing, with MDL-based (Material Definition Language) physically based rendering materials that enable spectral, BRDF-accurate visualization.[4] This level of rendering fidelity is critical for generating realistic synthetic data for training computer vision and perception models.

In Isaac Sim 5.0, NVIDIA introduced neural reconstruction and rendering through the Omniverse NuRec libraries, which convert real-world images into interactive 3D Gaussian Splatting-based simulations.[2] This allows developers to create photorealistic digital environments directly from sensor captures of real-world locations.

Sensor Simulation

Isaac Sim provides a comprehensive suite of simulated sensors that generate physically accurate data streams matching those of real-world hardware.[4] These sensor models are essential for developing and testing robot perception pipelines in simulation before deploying to physical robots.

Supported Sensor Types

Sensor TypeSimulation MethodKey Capabilities
RGB CameraRTX ray-traced renderingPhotorealistic images, configurable resolution and field of view
Depth CameraRTX-based depth computationStereo depth modeling, realistic noise profiles
RTX LidarGPU ray casting at render timeRotary and solid-state configurations, pre-made configs for commercial sensors
IMUPhysics-based integration6-axis inertial measurement, device-side processing
Stereo CameraDual-sensor RTX renderingZED X and Hawk camera models with paired RGB and IMU
Contact SensorPhysics collision detectionForce and torque measurements at contact points

RTX Lidar sensors are simulated on the GPU using RTX hardware at render time. Isaac Sim ships with a library of pre-configured Lidar profiles approximating commercial sensors from publicly available specifications. The platform also supports the OmniSensor USD schema introduced in version 5.0 for standardized sensor definitions.[2]

Isaac Sim 5.1.0 added semantic segmentation support for RTX sensors and performance improvements for RTX Sensor Annotators, further enhancing the fidelity of sensor simulation for perception development.[17]

Synthetic Data Generation

One of Isaac Sim's most powerful capabilities is its synthetic data generation (SDG) pipeline, powered by the Omniverse Replicator extension. Replicator allows developers to create large, diverse, and fully annotated datasets for training deep learning models without the cost and time of manual data collection and labeling.[11]

Domain Randomization

Domain randomization is a core technique in Isaac Sim's SDG pipeline. By introducing variability into simulated environments, domain randomization helps bridge the gap between simulation and reality, producing models that generalize better to real-world conditions.[11] Replicator supports randomization of:

  • Object poses, scales, and positions
  • Surface textures and materials
  • Lighting conditions and directions
  • Background environments and clutter
  • Camera angles and perspectives
  • Object colors and reflective properties

A key advantage of Replicator is its ability to perform "on-the-fly" randomization without reloading or re-parsing 3D assets. This significantly reduces computational overhead and speeds up data generation compared to approaches that require full scene reconstruction for each variation.[11]

Annotation Types

Replicator generates ground-truth annotations alongside rendered images, supporting multiple annotation formats commonly used in computer vision research and production.

Annotation TypeDescription
RGBStandard color image data
2D Bounding BoxRectangular bounds around objects in image space
3D Bounding BoxOriented bounding volumes in world coordinates
Semantic SegmentationPer-pixel class labels
Instance SegmentationPer-pixel object instance labels
DepthPer-pixel distance from camera
Surface NormalsPer-pixel surface orientation

Annotated datasets can be exported in COCO and KITTI formats for direct use with popular training frameworks. The pipeline supports both object detection and pose estimation workflows.

Cosmos Integration

Starting with Isaac Sim 4.5, the platform integrates with NVIDIA Cosmos, a world foundation model that can augment synthetic data with enhanced photorealism.[16] Developers compose SimReady 3D scenes in Isaac Sim, render images or videos of specific robot tasks, and then use Cosmos Transfer to generate photoreal video clips for retraining perception and policy models.[16] Omniverse Replicator includes a dedicated writer optimized for Cosmos Transfer input, streamlining this multi-stage data pipeline.

Isaac Lab

Isaac Lab is a GPU-accelerated, open-source framework for robot learning built on top of Isaac Sim.[6] It provides a unified platform for training robot policies using reinforcement learning, imitation learning, and other methods at scale.[6] NVIDIA describes Isaac Lab as "an open-source framework purpose-built for training and evaluating robot learning policies."[2]

How does Isaac Lab scale robot training?

Isaac Lab's modular architecture and NVIDIA GPU-based parallelization enable running thousands of parallel simulation environments simultaneously, dramatically accelerating the training process.[9] By keeping the agent-environment loop entirely on the GPU, it avoids the inefficiencies of frequent CPU-GPU data transfers, which is especially advantageous for on-policy reinforcement learning.[19] In NVIDIA's own benchmarking, the framework's throughput scales to very large parallel workloads: "With eight GPUs and 16384 environments, the DextrAH teacher task reaches over 900,000 frames per second."[19] Key features include:

  • More than 30 ready-to-train environment implementations
  • Support for popular RL frameworks including RSL RL, SKRL, RL Games, and Stable Baselines
  • Coverage of diverse robot embodiments: humanoid robots, manipulators, and autonomous mobile robots (AMRs)
  • Synthetic motion generation for amplifying collected manipulation data
  • Omniverse Fabric integration for faster load times and efficient physics simulations
  • Tensorized suction cup gripper for dynamic gripping simulation

Background and Evolution

Isaac Lab's development originated from the Orbit framework, which was jointly developed by NVIDIA, the AI Institute, ETH Zurich, and the University of Toronto.[7] Isaac Lab replaces several earlier frameworks:

  • IsaacGymEnvs for the Isaac Gym Preview Release
  • OmniIsaacGymEnvs for Isaac Sim
  • Orbit for Isaac Sim

Isaac Lab was announced alongside Project GR00T in March 2024 and serves as the successor to NVIDIA Isaac Gym.[12]

Isaac Lab Versions

Isaac Lab 2.0 shipped alongside Isaac Sim 4.5 in early 2025. Isaac Lab 2.2, released at SIGGRAPH 2025 with Isaac Sim 5.0, added enhancements including cloud deployment on NVIDIA Brev and an open-source policy evaluation framework developed in collaboration with Lightwheel.[2]

Isaac Lab 3.0, built on Isaac Sim 6.0, introduces a ground-up architectural overhaul with multi-backend physics (including Newton), a pluggable renderer system, Warp-native data pipelines, and a kit-less installation mode that allows installing and using Isaac Lab with the Newton physics backend without installing Isaac Sim.[21]

Industry Adoption

Humanoid robot developers using Isaac Lab include 1X Technologies, Agility Robotics, Berkeley Humanoid, Boston Dynamics, Fourier Intelligence, Galbot, Unitree Robotics, and XPENG Robotics.[20]

Isaac GR00T

Isaac GR00T (Generalist Robot 00 Technology) is NVIDIA's research initiative and open development platform for general-purpose robot foundation models, with a primary focus on humanoid robotics.[12] Isaac Sim serves as the simulation backbone for GR00T model training and evaluation.[12]

Foundation Models

The latest release, Isaac GR00T N1.6, is a reasoning vision-language-action model for robot skills that integrates NVIDIA Cosmos Reason, an open reasoning vision language model built for physical AI. Cosmos Reason acts as the robot's planning layer, converting vague natural language instructions into step-by-step action plans. GR00T N1.6 was announced at CoRL 2025 alongside the availability of the Newton physics engine in Isaac Lab.[8]

GR00T models are trained using a combination of imitation learning, reinforcement learning, and video data within GPU-accelerated Isaac Sim environments.[12]

GR00T-Dreams and GR00T-Mimic

GR00T-Dreams is a blueprint for generating vast amounts of synthetic motion data to teach robots new behaviors. NVIDIA Research used GR00T-Dreams to generate synthetic training data for GR00T N1.5 in approximately 36 hours, compared to what would have required nearly three months of manual human data collection.

GR00T-Mimic provides data pipelines for collecting high-quality robot demonstration data from both real-world and simulated environments via Isaac TeleOp.

Companies evaluating Isaac GR00T N models include AeiROBOT, Franka Robotics, LG Electronics, Lightwheel, Mentee Robotics, Neura Robotics, Solomon, Techman Robot, and UCR.

ROS Integration

Isaac Sim provides deep integration with the Robot Operating System (ROS), the most widely used middleware framework in robotics. The ROS 2 Bridge extension connects Isaac Sim to ROS 2, enabling bidirectional communication of sensor data, control commands, and transforms.[10]

Key Integration Features

  • ROS 2 Bridge Extension: Publishes simulated sensor data (cameras, lidar, IMU) as standard ROS 2 topics
  • Custom ROS 2 Message Support: Allows definition and use of project-specific message types
  • Navigation Stack Integration: Full compatibility with Nav2 for autonomous navigation
  • ROS 2 Jazzy Jalisco Support: Added in Isaac Sim 5.0 for the latest ROS 2 distribution
  • ZeroMQ Bridge: Introduced in Isaac Sim 5.0 for low-latency simulator control
  • Standardized Simulation Interfaces: Developed collaboratively with Gazebo and Open 3D Engine teams

Developers can use Isaac Sim as a drop-in replacement for physical hardware during ROS 2 development, running full navigation and manipulation stacks against simulated robots and environments.[10] This enables rapid iteration on perception, planning, and control algorithms without the constraints of physical testing.

Isaac ROS

Isaac ROS is a complementary collection of CUDA-accelerated ROS 2 packages that run on NVIDIA Jetson and discrete GPUs.[18] It includes packages for visual SLAM (cuVSLAM), depth perception, 3D reconstruction (nvblox), and motion planning (cuMotion). While Isaac ROS is designed for deployment on physical robots, Isaac Sim provides the simulation environment for developing and testing Isaac ROS pipelines before real-world deployment.

Manipulation and Motion Planning

Isaac Sim supports advanced robot manipulation workflows through integration with NVIDIA's CUDA-accelerated motion planning libraries.

cuMotion

NVIDIA cuMotion is a CUDA-accelerated library for computing optimal-time, minimal-jerk trajectories for serial robot arms. It solves motion planning problems at scale by running multiple trajectory optimizations simultaneously and returning the best solution. cuMotion can avoid collisions with obstacles represented as cuboids, meshes, signed distance fields (computed from depth image streams using nvblox), or any combination of the three.

On discrete GPUs such as the RTX 6000 (Ada Generation), cuMotion computes collision-free trajectories in tens of milliseconds. Trajectories can be planned and executed on simulated robots in Isaac Sim, allowing rapid development iteration without physical hardware.

Isaac Manipulator

NVIDIA Isaac Manipulator is a comprehensive solution that combines several GPU-accelerated tools for robotic arm development:[18]

ComponentFunction
cuMotionCollision-free motion planning and trajectory optimization
nvbloxReal-time 3D scene reconstruction from depth sensors
FoundationPose6D object pose estimation
FoundationStereoStereo depth estimation
SyntheticaDETRObject detection

Isaac Manipulator accelerates the development of pick-and-place, assembly, and inspection workflows by providing AI-powered perception and planning capabilities that work seamlessly within Isaac Sim for simulation and on physical robots via Isaac ROS.

Perception and Autonomous Navigation

Isaac Perceptor

NVIDIA Isaac Perceptor is a collection of CUDA-accelerated libraries, AI models, and reference workflows for developing autonomous mobile robots (AMRs).[18] Built on ROS 2, it enables robots to perceive, localize, and navigate in unstructured environments such as warehouses and factories.

Key capabilities include:

  • Multi-camera AI-based depth perception: Processing 16.5 million depth points per second per camera at 30 Hz
  • cuVSLAM: CUDA-accelerated visual-inertial SLAM with sub-1% trajectory errors
  • nvblox: Real-time voxel grid mapping for obstacle avoidance
  • Visual inertial odometry: Fusing camera and IMU data for robust localization

Isaac Perceptor pipelines can be developed and tested entirely within Isaac Sim using simulated cameras, lidar, and IMU sensors before deployment on physical AMRs running on NVIDIA Jetson hardware.

Industrial Applications

Warehouse and Logistics

Isaac Sim includes prebuilt 3D warehouse environments and practical scenarios for autonomous navigation. The platform supports simulation of conveyor belt systems, automated guided vehicles (AGVs), and AMRs operating in logistics facilities.[13] Companies use Isaac Sim to optimize fleet management, path planning, and goods-to-person workflows before deploying systems in physical warehouses.

Manufacturing

Isaac Sim enables building intelligent factory solutions that support design, simulation, and optimization of industrial assets and processes.[15] Use cases include assembly line simulation, quality inspection with machine vision, robot work cell design, and multi-robot coordination.

Digital Twins

Isaac Sim serves as a key tool for creating operational digital twins of physical facilities. By combining accurate physics simulation, photorealistic rendering, and real-time data integration, manufacturers can mirror their production environments in simulation.[15] Digital twins built with Isaac Sim enable predictive maintenance, process optimization, and "what-if" scenario testing without disrupting physical operations.

Which companies use NVIDIA Isaac Sim?

Numerous organizations across industries have adopted NVIDIA Isaac Sim for robotics development and deployment.

CompanyApplication
Amazon RoboticsDigital twins of warehouses; optimizing and testing the Proteus AMR
BMW GroupTraining Smart Transport Robot (STR) and SortBot for factory logistics; multi-modal AI including motion planning, object detection, and pose estimation
Mercedes-BenzVirtual factory digital twins for testing humanoid robot deployment; reducing factory planning cycles by approximately two years
FoxconnSimulating screw tightening, cable insertion, and other assembly tasks; digital twin factory layouts with Fii Digital Twin platform
KION GroupAdvancing autonomous warehouse systems using Omniverse-based digital twins with Accenture
PepsiCoEvaluating physical AI capabilities for logistics optimization
SiemensPartnership with NVIDIA to build an industrial AI operating system integrating Omniverse and Isaac Sim
Universal RobotsAI Accelerator developed on the NVIDIA Isaac platform for handling complex tasks in dynamic environments
Amazon Lab126Implementing Isaac Sim and Isaac Lab for robotics development
Figure AIUsing Isaac frameworks for humanoid robot development

System Requirements

Isaac Sim requires specific hardware and software configurations to run effectively.

Hardware Requirements

ComponentMinimumRecommended
GPUNVIDIA RTX 4080 or A40NVIDIA RTX 5080 or L40S
VRAM16 GB16-48 GB
CPUMulti-core x86_64 or ARM (aarch64)High-performance multi-core
RAM32 GB64 GB or more

GPUs without RT Cores (such as the A100 and H100, which are designed for compute workloads) are not supported because Isaac Sim relies on RTX ray tracing for rendering and sensor simulation.[4]

Software Requirements

PlatformSupported Versions
LinuxUbuntu 22.04 (x86_64 and aarch64); Ubuntu 24.04 requires GCC/G++ 11
WindowsWindows 10/11 (64-bit)
Python3.11
NVIDIA Driver (Linux)580.65.06 or later
NVIDIA Driver (Windows)580.88 or later

Deployment Options

Isaac Sim supports multiple deployment configurations:

  • Local installation: Build from source via the GitHub repository
  • Docker container: Available on NVIDIA NGC for Linux deployments, with headless mode support
  • NVIDIA Brev: One-click cloud deployment on NVIDIA GPU instances
  • AWS Marketplace: Pre-configured container available for AWS EC2
  • Isaac Automator: Automated deployment to AWS, GCP, Azure, and Alibaba Cloud

The Isaac Sim Compatibility Checker, a lightweight utility integrated into Isaac Sim 5.1.0, programmatically validates system requirements before installation.[17]

Version History

VersionRelease PeriodNotable Features
2020.12020First preview; Omniverse Kit foundation, RTX graphics, PhysX 5.0
2022.1June 2022Improved sim-to-real capabilities
2022.2December 2022People simulator, conveyor belt utility, warehouse logistics support
2023.1.0 (4.0.0)October 2023Transition to numeric versioning; Isaac Lab launch
4.0May 2024Isaac Lab unified RL platform; humanoid robot support; new robot assets
4.12024Ackermann controller; improved ROS 2 support
4.22024RTX-based tiled rendering; deformable environments
4.5February 2025Cosmos integration; improved URDF import; joint visualization
5.0August 2025Open source on GitHub (Apache 2.0); neural reconstruction; NuRec; OmniSensor schema; ROS 2 Jazzy
5.1October 2025Kit 107.3.3; DGX Spark support; Schunk robot assets; semantic segmentation for RTX sensors
6.0June 2026General availability June 8, 2026; multi-backend physics (PhysX and Newton); pluggable renderer; kit-less mode; Isaac Sim MCP

Is NVIDIA Isaac Sim open source?

Isaac Sim source code is released under the Apache 2.0 open-source license, making it free to use for development, research, and commercial applications.[3] The source code is available on GitHub at the isaac-sim/IsaacSim repository.[3]

It is important to note that while the Isaac Sim extensions and application code are open source, building or running the platform requires additional components (such as the Omniverse Kit SDK, 3D model assets, and textures) that are covered under separate NVIDIA license terms.[3]

See Also

References

  1. NVIDIA Developer. "Isaac Sim - Robotics Simulation and Synthetic Data Generation." NVIDIA.
  2. NVIDIA Technical Blog. "Announcing General Availability for NVIDIA Isaac Sim 5.0 and NVIDIA Isaac Lab 2.2." NVIDIA, 2025.
  3. GitHub. "isaac-sim/IsaacSim." NVIDIA Isaac Sim repository.
  4. NVIDIA. "Isaac Sim Documentation - What Is Isaac Sim?" NVIDIA.
  5. NVIDIA. "Physics - Isaac Sim Documentation." NVIDIA.
  6. NVIDIA Developer. "Isaac Lab - Open-Source Modular Framework." NVIDIA.
  7. GitHub. "isaac-sim/IsaacLab." NVIDIA Isaac Lab repository.
  8. NVIDIA Technical Blog. "Announcing Newton, an Open-Source Physics Engine for Robotics Simulation." NVIDIA, 2025.
  9. NVIDIA Technical Blog. "Fast-Track Robot Learning in Simulation Using NVIDIA Isaac Lab." NVIDIA.
  10. NVIDIA Technical Blog. "A Beginner's Guide to Simulating and Testing Robots with ROS 2 and NVIDIA Isaac Sim." NVIDIA.
  11. NVIDIA. "Domain Randomization With Replicator - Getting Started With Isaac Sim." NVIDIA.
  12. NVIDIA Newsroom. "NVIDIA Announces Isaac GR00T N1." NVIDIA, 2025.
  13. NVIDIA. "Amazon Robotics Builds Digital Twins of Warehouses with NVIDIA Omniverse and Isaac Sim." NVIDIA.
  14. NVIDIA Newsroom. "BMW Group Selects NVIDIA to Redefine Factory Logistics." NVIDIA.
  15. NVIDIA. "Foxconn Develops Physical AI-Enabled Smart Factories with Digital Twins." NVIDIA.
  16. NVIDIA Technical Blog. "Advancing Robot Learning, Perception, and Manipulation with Latest NVIDIA Isaac Release." NVIDIA, 2025.
  17. NVIDIA. "Isaac Sim Release Notes - Version 5.1.0." NVIDIA.
  18. NVIDIA Developer. "Isaac - AI Robot Development Platform." NVIDIA.
  19. NVIDIA Research. "Isaac Lab: A GPU-Accelerated Simulation Framework for Multi-Modal Robot Learning." arXiv, 2025.
  20. The Robot Report. "NVIDIA Isaac Lab Accelerates Robot Training in Simulation." The Robot Report, 2025.
  21. GitHub. "Isaac Sim 6.0 General Availability." NVIDIA Isaac Sim Discussions, 2026.
  22. Linux Foundation. "Linux Foundation Announces Contribution of Newton by Disney Research, Google DeepMind and NVIDIA to Accelerate Open Robot Learning." Linux Foundation, 2025.

Improve this article

Add missing citations, update stale details, or suggest a clearer explanation. Every suggestion is reviewed for sourcing before it goes live.

4 revisions by 1 contributors · full history

Suggest edit