use IMassive to calculate period
This commit is contained in:
parent
70c4cd8a92
commit
694b2b576c
|
@ -3,5 +3,5 @@ using System;
|
||||||
|
|
||||||
public interface IMassive
|
public interface IMassive
|
||||||
{
|
{
|
||||||
float Mass { get; }
|
double Mass { get; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
public static class IMassiveExtensions
|
||||||
|
{
|
||||||
|
public static double U(this IMassive m) => Kepler.U(m.Mass);
|
||||||
|
}
|
|
@ -2,56 +2,42 @@ using Godot;
|
||||||
using System;
|
using System;
|
||||||
using Vim.Math3d;
|
using Vim.Math3d;
|
||||||
|
|
||||||
public class Orbit
|
public class Orbit : IOrbit
|
||||||
{
|
{
|
||||||
// The position of the primary body relative to the ellipse - the
|
public IEllipse Ellipse { get; set; }
|
||||||
// orbit itself is presented as being centred on the primary, but
|
|
||||||
// all our math is elliptical.
|
|
||||||
private DVector2 PrimaryPosition => Ellipse.Focus0;
|
|
||||||
|
|
||||||
public Ellipse Ellipse { get; set; }
|
private readonly IMassive _massive;
|
||||||
|
private readonly ILocation _satellite;
|
||||||
|
|
||||||
public DVector3 GetPosition(float t)
|
/// <summary>
|
||||||
|
/// An orbit is treated as one stationary body at one focus of the orbit's ellipse.
|
||||||
|
/// The satellite is treated as a massless point.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="massive">Mass of the object being orbited</param>
|
||||||
|
/// <param name="satellite">The orbiting body</param>
|
||||||
|
public Orbit(IMassive massive, ILocation satellite)
|
||||||
{
|
{
|
||||||
// TODO: determine period from mass of orbiting bodies
|
// TODO: determine ellipse better
|
||||||
var P = 10f;
|
// semi-major axis is distance of satellite from origin
|
||||||
|
var a = satellite.Position.Magnitude();
|
||||||
|
var e = 0.8f;
|
||||||
|
this.Ellipse = new Ellipse(a, e);
|
||||||
|
|
||||||
|
_massive = massive;
|
||||||
|
_satellite = satellite;
|
||||||
|
}
|
||||||
|
|
||||||
|
public DVector3 GetPosition(double t)
|
||||||
|
{
|
||||||
var a = Ellipse.a;
|
var a = Ellipse.a;
|
||||||
var e = Ellipse.e;
|
var e = Ellipse.e;
|
||||||
|
|
||||||
|
var P = Kepler.GetPeriod(a, _massive.U());
|
||||||
|
|
||||||
var M = Kepler.GetMeanAnomaly(t, P);
|
var M = Kepler.GetMeanAnomaly(t, P);
|
||||||
var E = Kepler.GetEccentricAnomaly(e, M) + Math.PI;
|
var E = Kepler.GetEccentricAnomaly(e, M) + Math.PI;
|
||||||
|
|
||||||
var p = Kepler.GetEccentricPosition2D(e, a, t);
|
var p = Kepler.GetEccentricPosition2D(e, a, t);
|
||||||
return new DVector3(p.X, 0, p.Y);
|
return new DVector3(p.X, 0, p.Y);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Draw(ImmediateGeometry geo)
|
|
||||||
{
|
|
||||||
geo.Clear();
|
|
||||||
geo.Begin(Mesh.PrimitiveType.LineLoop);
|
|
||||||
DrawEllipse(geo);
|
|
||||||
geo.End();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void DrawEllipse(ImmediateGeometry geo)
|
|
||||||
{
|
|
||||||
geo.SetColor(new Color(1, 0, 0));
|
|
||||||
|
|
||||||
int steps = 100;
|
|
||||||
|
|
||||||
for (int i = 0; i < steps; i++)
|
|
||||||
{
|
|
||||||
float t = i / (float)steps;
|
|
||||||
float a = t * Mathf.Tau;
|
|
||||||
|
|
||||||
var v2 = Ellipse.Focus0 + Ellipse.GetPosition(a);
|
|
||||||
|
|
||||||
geo.AddVertex(new Godot.Vector3
|
|
||||||
{
|
|
||||||
x = (float)v2.X,
|
|
||||||
z = (float)v2.Y
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,7 @@ using Vim.Math3d;
|
||||||
public class Planet : Spatial, IPointMass
|
public class Planet : Spatial, IPointMass
|
||||||
{
|
{
|
||||||
[Export]
|
[Export]
|
||||||
public float Mass { get; set; }
|
public double Mass { get; set; }
|
||||||
|
|
||||||
private DVector3? _position;
|
private DVector3? _position;
|
||||||
public DVector3 Position
|
public DVector3 Position
|
||||||
|
|
Loading…
Reference in New Issue