Blog

Viewing posts for the category C++

SGP4: VANGUARD 1 and VANGUARD 2

Posted by: Matthew Ahn in Projects CIS565 GPU C++ 1 year, 2 months ago

An example of Vanguard 1's and Vanguard 2's positions in ECI.

Tags: cuda gpu spg4 orbit propagation
read more / Comments

SGP4 Progress

Posted by: Matthew Ahn in Projects CIS565 GPU C++ 1 year, 2 months ago

Significant progress porting the SGP4 algorithm to a CUDA implementation. I can read in TLEs, initialize with all the SGP models and propagate forward in time.

Tags: c orbit propagation spg4 gpu
read more / Comments

TopCoder: 2012 TCO Algorithm 250

Posted by: Matthew Ahn in Code C++ 1 year, 2 months ago
#include <iostream>

Tags: c
read more / Comments

Found source code for an implementation of the SGP4 algorithm

Posted by: Matthew Ahn in Projects CIS565 GPU C++ 1 year, 2 months ago

I found the link at the bottom of the page: http://en.wikipedia.org/wiki/Simplified_perturbations_models.

Tags: cuda c gpu spg4 orbit propagation
read more / Comments

isPrime

Posted by: Matthew Ahn in C++ 1 year, 3 months ago
bool IsPrime(int number)

Tags: c isprime
read more / Comments