2023-08-06 02:40:35 +02:00
|
|
|
#include "orbit.hpp"
|
|
|
|
|
2023-08-06 15:20:22 +02:00
|
|
|
#include "astro/stateVectorIndices.hpp"
|
|
|
|
#include "astro/orbitalElementConversions.hpp"
|
2023-08-06 02:40:35 +02:00
|
|
|
|
2023-08-14 01:46:29 +02:00
|
|
|
Orbit::Orbit(int vertexCount) :
|
|
|
|
_keplerianElements(std::vector<float>(6))
|
2023-08-06 02:40:35 +02:00
|
|
|
{
|
2023-08-14 01:46:29 +02:00
|
|
|
_keplerianElements[astro::semiMajorAxisIndex] = .75;
|
2023-08-15 00:14:19 +02:00
|
|
|
_keplerianElements[astro::eccentricityIndex] = .5;
|
2023-08-14 23:37:13 +02:00
|
|
|
_keplerianElements[astro::inclinationIndex] = _pi / 2.0 + 1;
|
|
|
|
_keplerianElements[astro::argumentOfPeriapsisIndex] = 2.0;
|
2023-08-14 01:46:29 +02:00
|
|
|
_keplerianElements[astro::longitudeOfAscendingNodeIndex] = 0;
|
2023-08-06 02:40:35 +02:00
|
|
|
|
|
|
|
for (int i = 0; i < vertexCount; i++)
|
|
|
|
{
|
2023-08-15 00:14:19 +02:00
|
|
|
float t = (float)i / (float)vertexCount * 2.0 * _pi;
|
2023-08-14 01:46:29 +02:00
|
|
|
glm::vec3 pos = getPosition(t);
|
2023-08-06 02:40:35 +02:00
|
|
|
|
2023-08-14 01:46:29 +02:00
|
|
|
_vertices.push_back(pos.x);
|
|
|
|
_vertices.push_back(pos.y);
|
|
|
|
_vertices.push_back(pos.z);
|
2023-08-06 02:40:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
glGenVertexArrays(1, &_vao);
|
|
|
|
glGenBuffers(1, &_vbo);
|
|
|
|
|
|
|
|
glBindVertexArray(_vao);
|
|
|
|
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, _vbo);
|
|
|
|
size_t vboBufferSize = _vertices.size() * sizeof(float);
|
|
|
|
glBufferData(GL_ARRAY_BUFFER, vboBufferSize, &_vertices[0], GL_STATIC_DRAW);
|
|
|
|
|
|
|
|
glEnableVertexAttribArray(0);
|
|
|
|
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, 3 * sizeof(float), (void*)0);
|
|
|
|
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, 0);
|
|
|
|
glBindVertexArray(0);
|
|
|
|
}
|
|
|
|
|
2023-08-14 01:46:29 +02:00
|
|
|
// Interpolate a position around the orbit.
|
|
|
|
// t is in range 0..1 and wraps.
|
2023-08-15 00:14:19 +02:00
|
|
|
glm::vec3 Orbit::getPosition(const float meanAnomaly)
|
2023-08-14 01:46:29 +02:00
|
|
|
{
|
2023-08-15 00:14:19 +02:00
|
|
|
// Get eccentric anomaly from elliptical mean anomaly
|
|
|
|
const float eccentricity = _keplerianElements[astro::eccentricityIndex];
|
|
|
|
float eccentricAnomaly = astro::convertEllipticalMeanAnomalyToEccentricAnomaly(
|
|
|
|
eccentricity,
|
|
|
|
meanAnomaly,
|
|
|
|
(float)10e-3,
|
|
|
|
100);
|
|
|
|
|
|
|
|
// Get true anomaly from eccentric anomaly
|
|
|
|
float trueAnomaly = astro::convertEccentricAnomalyToTrueAnomaly(
|
|
|
|
eccentricAnomaly,
|
|
|
|
eccentricity);
|
2023-08-14 01:46:29 +02:00
|
|
|
|
|
|
|
std::vector<float> kepler(_keplerianElements);
|
2023-08-15 00:14:19 +02:00
|
|
|
kepler[astro::trueAnomalyIndex] = trueAnomaly;
|
2023-08-14 01:46:29 +02:00
|
|
|
|
|
|
|
std::vector<float> cartesian = astro::convertKeplerianToCartesianElements(kepler, 1.0);
|
|
|
|
return glm::vec3(
|
|
|
|
cartesian[astro::xPositionIndex],
|
|
|
|
cartesian[astro::yPositionIndex],
|
|
|
|
cartesian[astro::zPositionIndex]);
|
|
|
|
}
|
|
|
|
|
2023-08-06 02:40:35 +02:00
|
|
|
void Orbit::render()
|
|
|
|
{
|
|
|
|
glBindVertexArray(_vao);
|
|
|
|
glBindBuffer(GL_ARRAY_BUFFER, _vbo);
|
|
|
|
|
|
|
|
glDrawArrays(GL_LINE_LOOP, 0, _vertices.size() / 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
Orbit::~Orbit()
|
|
|
|
{
|
|
|
|
glDeleteVertexArrays(1, &_vao);
|
|
|
|
glDeleteBuffers(1, &_vbo);
|
|
|
|
}
|
|
|
|
|