import numpy as np


class RoombaModel:
    """
    Helper class that contains the parameters of the vehicle to be controlled

    Attributes:
        max_speed: [m/s]
        max_acc: [m/ss]
        max_d_acc: [m/sss]
        max_steer: [rad]
        max_d_steer: [rad/s]
    """

    def __init__(self):
        self.max_speed = 10
        self.max_acc = 5.0
        self.max_d_acc = 3.0
        self.max_steer = np.radians(360)
        self.max_d_steer = np.radians(180)