# Copyright (c) 2022-2024, The Isaac Lab Project Developers.# All rights reserved.## SPDX-License-Identifier: BSD-3-Clause"""This script demonstrates how to simulate bipedal robots... code-block:: bash # Usage ./isaaclab.sh -p source/standalone/demos/bipeds.py""""""Launch Isaac Sim Simulator first."""importargparseimporttorchfromomni.isaac.lab.appimportAppLauncher# add argparse argumentsparser=argparse.ArgumentParser(description="This script demonstrates how to simulate bipedal robots.")# append AppLauncher cli argsAppLauncher.add_app_launcher_args(parser)# parse the argumentsargs_cli=parser.parse_args()# launch omniverse appapp_launcher=AppLauncher(args_cli)simulation_app=app_launcher.app"""Rest everything follows."""importomni.isaac.lab.simassim_utilsfromomni.isaac.lab.assetsimportArticulationfromomni.isaac.lab.simimportSimulationContext### Pre-defined configs##fromomni.isaac.lab_assets.cassieimportCASSIE_CFG# isort:skipfromomni.isaac.lab_assetsimportH1_CFG# isort:skipfromomni.isaac.lab_assetsimportG1_CFG# isort:skipdefmain():"""Main function."""# Load kit helpersim=SimulationContext(sim_utils.SimulationCfg(device="cpu",dt=0.01))# Set main camerasim.set_camera_view(eye=[3.5,3.5,3.5],target=[0.0,0.0,0.0])# Spawn things into stage# Ground-planecfg=sim_utils.GroundPlaneCfg()cfg.func("/World/defaultGroundPlane",cfg)# Lightscfg=sim_utils.DistantLightCfg(intensity=3000.0,color=(0.75,0.75,0.75))cfg.func("/World/Light",cfg)origins=torch.tensor([[0.0,0.0,0.0],[0.0,1.0,0.0],[0.0,2.0,0.0],])# Robotscassie=Articulation(CASSIE_CFG.replace(prim_path="/World/Cassie"))h1=Articulation(H1_CFG.replace(prim_path="/World/H1"))g1=Articulation(G1_CFG.replace(prim_path="/World/G1"))robots=[cassie,h1,g1]# Play the simulatorsim.reset()# Now we are ready!print("[INFO]: Setup complete...")# Define simulation steppingsim_dt=sim.get_physics_dt()sim_time=0.0count=0# Simulate physicswhilesimulation_app.is_running():# resetifcount%200==0:# reset counterssim_time=0.0count=0forindex,robotinenumerate(robots):# reset dof statejoint_pos,joint_vel=robot.data.default_joint_pos,robot.data.default_joint_velrobot.write_joint_state_to_sim(joint_pos,joint_vel)root_state=robot.data.default_root_state.clone()root_state[:,:3]+=origins[index]robot.write_root_state_to_sim(root_state)robot.reset()# reset commandprint(">>>>>>>> Reset!")# apply action to the robotforrobotinrobots:robot.set_joint_position_target(robot.data.default_joint_pos.clone())robot.write_data_to_sim()# perform stepsim.step()# update sim-timesim_time+=sim_dtcount+=1# update buffersforrobotinrobots:robot.update(sim_dt)if__name__=="__main__":# run the main functionmain()# close sim appsimulation_app.close()