Search results

  1. A

    Better Ephemerides, Rotation Models, and a Solution to X64 Builds

    Yes, pxfrm and the conversion from right-hand to left-hand should work. But needs some testing :)
  2. A

    Better Ephemerides, Rotation Models, and a Solution to X64 Builds

    Orbiter uses Rotation matrix void CelestialBody::GetRotation (double t, Matrix &rot) BTW, some years ago I made a Python script that compares SPICE rotation and Orbiter rotation and optimizes the parameters (LAN/Obliquity/SidRotOffset/SidRotPeriod) to fit better over a given time interval. It...
  3. A

    Better Ephemerides, Rotation Models, and a Solution to X64 Builds

    The one important thing that is missing now is celestial body orientation. SPICE can handle this very easily. I think the simplest way is to add something like this to Celbody.cpp, in CelestialBody::GetRotation(..): if (module && module->bRotation()) return module->clbkRotation(mjd, rot)...
  4. A

    Better Ephemerides, Rotation Models, and a Solution to X64 Builds

    Finally, I’ve fixed this in https://github.com/Ajaja/spice_orbiter There is now no need to duplicate kernel loading in each *.cfg file. I’ve also updated orbiter.bsp for the latest SPK versions and added a GitHub Actions script to build spice.dll.
  5. A

    Updates Artemis II

    I only just now noticed that the NASA visualization has the same Earth clouds texture as Celestia.
  6. A

    Updates Artemis II

    In Celestia:
  7. A

    Updates Artemis II

    ~1380 m/s: Updated from Horizons System trajectory: BEGIN_URLDESC CurrentState END_URLDESC BEGIN_ENVIRONMENT System Sol Date MJD 61136.458333 END_ENVIRONMENT BEGIN_FOCUS Ship Artemis II END_FOCUS BEGIN_SHIPS Artemis II:DeltaGlider STATUS Orbiting Earth RPOS -1.234639192836895E+08...
  8. A

    Updates Artemis II

    Excellent comparison! How did you do this in SpaceEngine? I wasn't able to find a way to set precise spaceship coordinates and velocity vectors for a given moment.
  9. A

    Updates Artemis II

    It's ExtMFD in the latest Windows version of OpenOrbiter from GitHub.
  10. A

    Updates Artemis II

    Current trajectory according to the JPL Horizons System: BEGIN_URLDESC CurrentState END_URLDESC BEGIN_ENVIRONMENT System Sol Date MJD 61133.354167 END_ENVIRONMENT BEGIN_FOCUS Ship Artemis II END_FOCUS BEGIN_SHIPS Artemis II:DeltaGlider STATUS Orbiting Earth RPOS...
  11. A

    Updates Artemis II

    Looks just right :)
  12. A

    Better Ephemerides, Rotation Models, and a Solution to X64 Builds

    In the kernel pool. It's all managed by SPICE library, I didn't dig deep into the details.
  13. A

    Better Ephemerides, Rotation Models, and a Solution to X64 Builds

    Strictly speaking, the orbiter.bsp in the body configuration files are not necessary. The SPICE library needs to load each kernel file only once. I had previously used multiple kernel files for different bodies before merging them into a single orbiter.bsp file. Repeating this orbiter.bsp entry...
  14. A

    Hubbles Constant (Ho) fixed to light speed, C and calculated as 71 k/s/Mpc

    Where do you see Mpc in the formula? I see ly*km/s. So, it's the new value of Hubblus Constant = 71 ly*km/s. :)
  15. A

    Orbiter as a visualization tool of external data

    It would be nice. I use OpenOrbiter x64 and haven't built the spice module for O2016.
  16. A

    Problem - SOLVED - Problem with latest Orbiter build on Linux

    @johnnymanly Did you try https://github.com/doitsujin/dxvk ?
  17. A

    GMAT Mars transfer orbit model

    It's windows in days where to search for an optimal trajectory. With 0 it just calculates for selected dates. If True - ignore minimal dV needed for the final maneuver (orbital insertion) and optimize only for departure dV (and dV at flybys for multybody trajectories). Days or dates. With...
  18. A

    GMAT Mars transfer orbit model

    Just select flyby parameters. It was initially designed by Keithth G to find and optimize trajectories with multiple gravity assist maneuvers. But nothing prevents to use it with simple trajectories. For example: import sys import pygmo as pg from flyby import flyby p = flyby(['earth', 'mars']...
  19. A

    GMAT Mars transfer orbit model

    Just use some porkchop plotter application. I even made one many years ago ( https://www.orbiter-forum.com/resources/lambertsolver.3050/ ) But now it's easier to use online porkchop plotters, e.g.: http://sdg.aero.upm.es/index.php/online-apps/porkchop-plot
Back
Top