问题 I am currently trying to get a two body problem to work, that I can then upgrade to more planets, but it is not working. It is outputting me impossible positions. Does anyone know what is causing that? This is the code I use: day = 60*60*24 # Constants G = 6.67408e-11 dt = 0.1*day au = 1.496e11 t = 0 class CelBody: def __init__(self, id, name, x0, y0, z0, vx0, vy0, vz0, mass, vector, ax0, ay0, az0, totalforcex, totalforcey, totalforcez): self.ax0 = ax0 self.ay0 = ay0 self.az0 = az0 self.ax =