Skip to content

Commit

Permalink
update frequencies in config
Browse files Browse the repository at this point in the history
  • Loading branch information
budzianowski committed Dec 2, 2024
1 parent 54c40d5 commit e39f93a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sim/envs/humanoids/dora_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ class control(LeggedRobotCfg.control):
# action scale: target angle = actionScale * action + defaultAngle
action_scale = 0.25
# decimation: Number of control action updates @ sim DT per policy DT
decimation = 4 # 100hz
decimation = 20 # 50 hz

class sim(LeggedRobotCfg.sim):
dt = 0.002 # 1000 Hz
dt = 0.001 # 1000 Hz
substeps = 1 # 2
up_axis = 1 # 0 is y, 1 is z

Expand Down
2 changes: 1 addition & 1 deletion sim/envs/humanoids/stompymicro_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class control(LeggedRobotCfg.control):
# action scale: target angle = actionScale * action + defaultAngle
action_scale = 0.25
# decimation: Number of control action updates @ sim DT per policy DT
decimation = 10 # 100hz
decimation = 20 # 100hz

class sim(LeggedRobotCfg.sim):
dt = 0.001 # 1000 Hz
Expand Down
2 changes: 1 addition & 1 deletion sim/envs/humanoids/stompypro_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class control(LeggedRobotCfg.control):
# action scale: target angle = actionScale * action + defaultAngle
action_scale = 0.25
# decimation: Number of control action updates @ sim DT per policy DT
decimation = 10 # 100hz
decimation = 20 # 100hz

class sim(LeggedRobotCfg.sim):
dt = 0.001 # 1000 Hz
Expand Down

0 comments on commit e39f93a

Please sign in to comment.