mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-31 10:09:53 +00:00
44 lines
1.5 KiB
Python
44 lines
1.5 KiB
Python
![]() |
import numpy as np
|
||
|
from gym import utils
|
||
|
from gym.envs.mujoco import mujoco_env
|
||
|
|
||
|
class InvertedDoublePendulumEnv(mujoco_env.MujocoEnv, utils.EzPickle):
|
||
|
|
||
|
def __init__(self):
|
||
|
mujoco_env.MujocoEnv.__init__(self, 'inverted_double_pendulum.xml', 5)
|
||
|
utils.EzPickle.__init__(self)
|
||
|
self.finalize()
|
||
|
|
||
|
def _step(self, action):
|
||
|
self.do_simulation(action, self.frame_skip)
|
||
|
ob = self._get_obs()
|
||
|
x, _, y = self.model.data.site_xpos[0]
|
||
|
dist_penalty = 0.01 * x ** 2 + (y - 2) ** 2
|
||
|
v1, v2 = self.model.data.qvel[1:3]
|
||
|
vel_penalty = 1e-3 * v1**2 + 5e-3 * v2**2
|
||
|
alive_bonus = 10
|
||
|
r = (alive_bonus - dist_penalty - vel_penalty)[0]
|
||
|
done = bool(y <= 1)
|
||
|
return ob, r, done, {}
|
||
|
|
||
|
def _get_obs(self):
|
||
|
return np.concatenate([
|
||
|
self.model.data.qpos[:1], # cart x pos
|
||
|
np.sin(self.model.data.qpos[1:]), # link angles
|
||
|
np.cos(self.model.data.qpos[1:]),
|
||
|
np.clip(self.model.data.qvel, -10, 10),
|
||
|
np.clip(self.model.data.qfrc_constraint, -10, 10)
|
||
|
]).ravel()
|
||
|
|
||
|
def _reset(self):
|
||
|
self.model.data.qpos = self.init_qpos + np.random.uniform(size=(self.model.nq,1),low=-.1,high=.1)
|
||
|
self.model.data.qvel = self.init_qvel + np.random.randn(self.model.nv,1)*.1
|
||
|
self.reset_viewer_if_necessary()
|
||
|
return self._get_obs()
|
||
|
|
||
|
def viewer_setup(self):
|
||
|
v = self.viewer
|
||
|
v.cam.trackbodyid=0
|
||
|
v.cam.distance = v.model.stat.extent * 0.5
|
||
|
v.cam.lookat[2] += 3#v.model.stat.center[2]
|