0

最後のコードをほとんど削除して、新しく始めました。body_1 と body_2 というリストの代わりに、Object という新しいクラスを追加しました。また、すべての計算が Object クラス内から実行されるようになりました。以前の既存の問題のほとんどは、このプロセスによって解決されましたが、まだ残っている問題があります。Leapfrog アルゴリズムを開始するために必要な v1/2 を作成する StartVelocity() 関数内にあると思います。これにより、静止軌道が得られるはずですが、はっきりと見えるように、サテライトは地球をズームした後、非常に迅速に脱出します。 ここに画像の説明を入力

コードは次のとおりです。

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import axes3d
from object import Object
import numpy as np


class Simulation:

    def __init__(self):

        # Index: 0 Name, 1 Position, 2 Velocity, 3 Mass
        body_1 = Object("Earth", "g", "r",
                        np.array([[0.0], [0.0], [0.0]]),
                        np.array([[0.0], [0.0], [0.0]]), 
                        5.9722 * 10**24)

        body_2 = Object("Satelite", "b", "r",
                        np.array([[42164.0], [0.0], [0.0]]),
                        np.array([[0.0], [3075.4], [0.0]]),
                        5000.0)
        
        self.bodies = [body_1, body_2]

    def ComputePath(self, time_limit, time_step):

        time_range = np.arange(0, time_limit, time_step)
        
        for body in self.bodies:

            body.StartVelocity(self.bodies, time_step)

        for T in time_range:

            for body in self.bodies:

                body.Leapfrog(self.bodies, time_step)

    def PlotObrit(self):

        fig = plt.figure()
        ax = fig.add_subplot(111, projection='3d')
        
        for body in self.bodies:

            body.ReshapePath()
            X, Y, Z = [], [], []

            for position in body.path:

                X.append(position[0])
                Y.append(position[1])
                Z.append(position[2])

            ax.plot(X, Y, Z, f"{body.linecolor}--")
        
        for body in self.bodies:
            
            last_pos = body.path[-1]
            ax.plot(last_pos[0], last_pos[1], last_pos[2], f"{body.bodycolor}o", label=body.name)

        ax.set_xlabel("x-Axis")
        ax.set_ylabel("y-Axis")
        ax.set_zlabel("z-Axis")
        ax.legend()
        fig.savefig("Leapfrog.png")

if __name__ == "__main__":

    sim = Simulation()
    sim.ComputePath(0.5, 0.01)
    sim.PlotObrit()
import numpy as np


class Object:
    
    def __init__(self, name, bodycolor, linecolor, pos_0, vel_0, mass):

        self.name = name
        self.bodycolor = bodycolor
        self.linecolor = linecolor
        self.position = pos_0
        self.velocity = vel_0
        self.mass = mass

        self.path = []
    
    def StartVelocity(self, other_bodies, time_step):

        force = self.GetForce(other_bodies)
        self.velocity += (force / self.mass) * time_step * 0.5

    def Leapfrog(self, other_bodies, time_step):

        self.position += self.velocity * time_step
        self.velocity += (self.GetForce(other_bodies) / self.mass) * time_step

        self.path.append(self.position.copy())

    def GetForce(self, other_bodies):
        
        force = 0
    
        for other_body in other_bodies:
            if other_body != self:

                force += self.Force(other_body)

        return force

    def Force(self, other_body):
        
        G = 6.673 * 10**-11

        dis_vec = other_body.position - self.position
        dis_mag = np.linalg.norm(dis_vec)
        dir_vec = dis_vec / dis_mag
        for_mag = G * (self.mass * other_body.mass) / dis_mag**2
        for_vec = for_mag * dir_vec

        return for_vec
    
    def ReshapePath(self):

        for index, position in enumerate(self.path):

            self.path[index] = position.reshape(3).tolist()

メートルを取得するには、ボディ 2 の位置に 1000 を掛ける必要があることを認識していますが、それを行うと、直線で飛行するだけであり、重力の兆候はまったくありません。

4

1 に答える 1