LibraryPhysicsPy

Physical units, time, reference frames, environment modeling.


Keywords
open-space-collective library physics, atmospheric, coordinates, cpp, engineering, ephemeris, gravity, magnetic, physics, python, space, stars, time, toolkit
License
Apache-2.0
Install
pip install LibraryPhysicsPy==0.3.1

Documentation

Open Space Toolkit â–¸ Physics

Build and Test Release Code Coverage Documentation GitHub version PyPI version License

Physical units, time, reference frames, environment modeling.

Gravitational field anomaly between EGM96 and WGS84 models.

Getting Started

Want to get started? This is the simplest and quickest way:

Binder

Nothing to download or install! This will automatically start a JupyterLab environment in your browser with Open Space Toolkit libraries and example notebooks ready to use.

Alternatives

Docker Images

Docker must be installed on your system.

iPython

The following command will start an iPython shell within a container where the OSTk components are already installed:

docker run -it openspacecollective/open-space-toolkit-physics-python

Once the shell is up and running, playing with it is easy:

from ostk.physics import Environment # Environment modeling class
from ostk.physics.time import Instant # Instant class
from ostk.physics.coordinate import Frame # Reference frame class

environment = Environment.default() # Bootstrap a default environment

moon = environment.access_object_with_name('Moon') # Access Moon

environment.set_instant(Instant.now()) # Set environment to present time

moon.get_position_in(Frame.ITRF()) # Position of the Moon in ITRF
moon.get_axes_in(Frame.ITRF()) # Axes of the Moon in ITRF

By default, OSTk fetches the ephemeris from JPL, Earth Orientation Parameters (EOP) and leap second count from IERS.

As a result, when running OSTk for the first time, it may take a minute to fetch all the necessary data.

Tip: Use tab for auto-completion!

JupyterLab

The following command will start a JupyterLab server within a container where the OSTk components are already installed:

docker run --publish=8888:8888 openspacecollective/open-space-toolkit-physics-jupyter

Once the container is running, access http://localhost:8888/lab and create a Python 3 Notebook.

Installation

C++

The binary packages are hosted using GitHub Releases:

  • Runtime libraries: open-space-toolkit-physics-X.Y.Z-1.x86_64-runtime
  • C++ headers: open-space-toolkit-physics-X.Y.Z-1.x86_64-devel
  • Python bindings: open-space-toolkit-physics-X.Y.Z-1.x86_64-python

Debian / Ubuntu

After downloading the relevant .deb binary packages, install:

apt install open-space-toolkit-physics-*.deb

Python

Install from PyPI:

pip install open-space-toolkit-physics

Documentation

Documentation is available here:

Structure

The library exhibits the following structure:

├── Unit
│   ├── Length
│   ├── Mass
│   ├── Time
│   ├── Temperature
│   ├── Electric Current
│   ├── Luminous Intensity
│   └── Derived
│       ├── Angle
│       ├── Solid Angle
│       ├── Frequency
│       ├── Force
│       ├── Pressure
│       ├── Area
│       ├── Volume
│       └── Information
├── Time
│   ├── Scale (UTC, TT, TAI, UT1, TCG, TCB, TDB, GMST, GPST, GST, GLST, BDT, QZSST, IRNSST)
│   ├── Instant
│   ├── Duration
│   ├── Interval
│   ├── Date
│   ├── Time
│   └── DateTime
├── Coordinate
│   ├── Transform
│   └── Frame (ECI, ECEF, NED, LVLHGD, LVLHGDGT, ...)
├── Geographic
│   ├── Position
│   ├── Area
│   ├── Volume
│   ├── Coordinate Reference System (CRS)
│   └── Universal Transverse Mercator (UTM)
└── Environment
    ├── Constant
    ├── Object
    │   └── Celestial
    ├── Ephemeris
    │   ├── Analytical
    │   ├── Tabulated
    │   └── SPICE (JPL)
    ├── Gravity
    │   ├── Barycentric
    │   ├── Earth Gravitational Model 1996 (EGM96)
    │   └── Earth Gravitational Model 2008 (EGM2008)
    ├── Atmospheric
    │   ├── Exponential
    │   └── NRLMSISE00
    └── Magnetic
        ├── Dipole
        ├── World Magnetic Model 2010 (WMM2010)
        ├── World Magnetic Model 2015 (WMM2015)
        ├── Enhanced Magnetic Model 2010 (EMM2010)
        ├── Enhanced Magnetic Model 2015 (EMM2015)
        ├── International Geomagnetic Reference Field 11 (IGRF11)
        └── International Geomagnetic Reference Field 12 (IGRF12)

Data Management

OSTk Physics uses input data from various sources to determine the state of the space environment at any given time. The following input data is used:

  • IERS Reference Frame Data
  • CSSI Solar Flux/Space Weather Data
  • Gravitational Survey Data
  • Magnetic Survey Data
  • SPICE Kernels

None of these files are shipped with the source code of this library. OSTk Physics has the capability to fetch the required files at runtime if they are not present or if they are outdated. This is done using file Manager classes (see any file named Manager.hpp). Data for any use-case is queried through the Manager class rather than directly, which allows the Manager to handle file loading and fetching.

If you would like to seed the ostk data generation so that you already have an initial copy of all the data files (to avoid a large initial fetch at runtime), then we recommend running the following commands to set up your environment.

# Set the environment variable for OSTk Data location
export OSTK_DATA_LOCAL_CACHE=/path/to/preferred/data/storage/dir
export OSTK_PHYSICS_DATA_LOCAL_REPOSITORY=$OSTK_DATA_LOCAL_CACHE/data

# Clone OSTk data repo into that dir
RUN git clone --branch v1 --single-branch --depth=1 https://github.com/open-space-collective/open-space-toolkit-data.git $OSTK_DATA_LOCAL_CACHE && chmod -R g+w $OSTK_DATA_LOCAL_CACHE

For users that are installing OSTk into docker images, here is what we recommend you add to your dockerfiles.

ARG OSTK_DATA_LOCAL_CACHE="/var/cache/open-space-toolkit-data"
ENV OSTK_DATA_LOCAL_CACHE="${OSTK_DATA_LOCAL_CACHE}"
ENV OSTK_PHYSICS_DATA_LOCAL_REPOSITORY="${OSTK_DATA_LOCAL_CACHE}/data"

RUN git clone --branch v1 --single-branch --depth=1 https://github.com/open-space-collective/open-space-toolkit-data.git ${OSTK_DATA_LOCAL_CACHE} && chmod -R g+w ${OSTK_DATA_LOCAL_CACHE}

# Add the line below if the container's user will not be root
RUN chown -R ${USER_UID}:${USER_GID} ${OSTK_DATA_LOCAL_CACHE}

If you have a multi-stage dockerfile, then you can easily just copy the ostk-data repo install from one build stage (in the example below that's build-env) to the next, so that you don't have to reinstall it on every build stage.

# If you are copying to an image where the user is currently root
COPY --from=build-env ${OSTK_DATA_LOCAL_CACHE} ${OSTK_DATA_LOCAL_CACHE}
# Or if you are copying to an image where the user is not currently root
COPY --from=build-env --chown=${USER_UID}:${USER_GID} ${OSTK_DATA_LOCAL_CACHE} ${OSTK_DATA_LOCAL_CACHE}

The following table shows the availabe data source settings with the different environment variables you can set:

Environment Variable Default Value
OSTK_PHYSICS_DATA_LOCAL_REPOSITORY ./.open-space-toolkit/physics/data [Bulk setting. Overridden by specific repository settings below.]
OSTK_PHYSICS_COORDINATE_FRAME_PROVIDER_IERS_MANAGER_MODE Automatic
OSTK_PHYSICS_COORDINATE_FRAME_PROVIDER_IERS_MANAGER_LOCAL_REPOSITORY ./.open-space-toolkit/physics/data/coordinate/frame/provider/iers
OSTK_PHYSICS_COORDINATE_FRAME_PROVIDER_IERS_MANAGER_LOCAL_REPOSITORY_LOCK_TIMEOUT 60
OSTK_PHYSICS_ENVIRONMENT_EPHEMERIS_SPICE_ENGINE_MODE Automatic
OSTK_PHYSICS_ENVIRONMENT_EPHEMERIS_SPICE_MANAGER_LOCAL_REPOSITORY ./.open-space-toolkit/physics/data/environment/ephemeris/spice
OSTK_PHYSICS_ENVIRONMENT_GRAVITATIONAL_EARTH_MANAGER_MODE Automatic
OSTK_PHYSICS_ENVIRONMENT_GRAVITATIONAL_EARTH_MANAGER_LOCAL_REPOSITORY ./.open-space-toolkit/physics/data/environment/gravitational/earth
OSTK_PHYSICS_ENVIRONMENT_GRAVITATIONAL_EARTH_MANAGER_LOCAL_REPOSITORY_LOCK_TIMEOUT 60
OSTK_PHYSICS_ENVIRONMENT_MAGNETIC_EARTH_MANAGER_MODE Automatic
OSTK_PHYSICS_ENVIRONMENT_MAGNETIC_EARTH_MANAGER_LOCAL_REPOSITORY ./.open-space-toolkit/physics/data/environment/magnetic/earth
OSTK_PHYSICS_ENVIRONMENT_MAGNETIC_EARTH_MANAGER_LOCAL_REPOSITORY_LOCK_TIMEOUT 60
OSTK_PHYSICS_ENVIRONMENT_ATMOSPHERIC_EARTH_MANAGER_MODE Automatic
OSTK_PHYSICS_ENVIRONMENT_ATMOSPHERIC_EARTH_MANAGER_LOCAL_REPOSITORY ./.open-space-toolkit/physics/data/environment/atmospheric/earth
OSTK_PHYSICS_ENVIRONMENT_ATMOSPHERIC_EARTH_MANAGER_LOCAL_REPOSITORY_LOCK_TIMEOUT 60
OSTK_PHYSICS_DATA_REMOTE_URL https://github.com/open-space-collective/open-space-toolkit-data/raw/v1/data/
OSTK_PHYSICS_DATA_MANIFEST_LOCAL_REPOSITORY ./.open-space-toolkit/physics/data/
OSTK_PHYSICS_DATA_MANIFEST_LOCAL_REPOSITORY_LOCK_TIMEOUT 60

Tutorials

Tutorials are available here:

Setup

Development Environment

Using Docker for development is recommended, to simplify the installation of the necessary build tools and dependencies. Instructions on how to install Docker are available here.

To start the development environment:

make dev

This will:

  1. Build the openspacecollective/open-space-toolkit-physics-development Docker image.
  2. Create a development environment container with local source files and helper scripts mounted.
  3. Start a bash shell from the ./build working directory.

If installing Docker is not an option, you can manually install the development tools (GCC, CMake) and all required dependencies, by following a procedure similar to the one described in the Development Dockerfile.

Build

From the ./build directory:

cmake ..
make

Tip: The ostk-build command simplifies building from within the development environment.

Test

To start a container to build and run the tests:

make test

Or to run them manually:

./bin/open-space-toolkit-physics.test

Tip: The ostk-test command simplifies running tests from within the development environment.

Dependencies

Name Version License Link
Pybind11 2.10.1 BSD-3-Clause github.com/pybind/pybind11
{fmt} 5.2.0 BSD-2-Clause github.com/fmtlib/fmt
ordered-map 0.6.0 MIT github.com/Tessil/ordered-map
Eigen 3.3.7 MPL2 eigen.tuxfamily.org
IAU SOFA 2018-01-30 SOFA Software License www.iausofa.org
SPICE Toolkit N0067 NAIF naif.jpl.nasa.gov/naif/toolkit.html
GeographicLib 1.52 MIT geographiclib.sourceforge.io
Core main Apache License 2.0 github.com/open-space-collective/open-space-toolkit-core
I/O main Apache License 2.0 github.com/open-space-collective/open-space-toolkit-io
Mathematics main Apache License 2.0 github.com/open-space-collective/open-space-toolkit-mathematics

Contribution

Contributions are more than welcome!

Please read our contributing guide to learn about our development process, how to propose fixes and improvements, and how to build and test the code.

Special Thanks

Loft Orbital

License

Apache License 2.0