[docs]classDynamicsPointMass2DSpeedGamma(DynamicsPointMass3DSpeedGammaTrack):""" Dynamics instance: * simulating a point mass * in 2D * with velocity parameterized in speed-gamma space. State variables: x_e: x-position, in Earth axes. [meters] z_e: z-position, in Earth axes. [meters] speed: Speed; equivalent to u_w, the x-velocity in wind axes. [m/s] gamma: Flight path angle. [rad] Indirect control variables: alpha: Angle of attack. [degrees] Control variables: Fx_w: Force along the wind-x axis. [N] Fz_w: Force along the wind-z axis. [N] """def__init__(self,mass_props:MassProperties=None,x_e:Union[float,np.ndarray]=0,z_e:Union[float,np.ndarray]=0,speed:Union[float,np.ndarray]=0,gamma:Union[float,np.ndarray]=0,alpha:Union[float,np.ndarray]=0,):# Initialize state variables