-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from cadojo/dev
ThreeBody Cleanup
- Loading branch information
Showing
32 changed files
with
637 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "UnitfulAstrodynamics" | ||
uuid = "673e7d9c-15b0-48d3-bce0-fab551f3a174" | ||
authors = ["Joe Carpinelli <[email protected]>"] | ||
version = "0.6.4" | ||
version = "0.6.5" | ||
|
||
[deps] | ||
ComponentArrays = "b0b7db55-cfe3-40fc-9ded-d10e2dbeff66" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# `ThreeBody` Calculations | ||
|
||
Common `ThreeBody` problem calculations are provided through functions. | ||
|
||
## Frame Representations | ||
|
||
You can convert between the Inertial and Rotating (Synodic) reference frames through | ||
the `inertial` and `synodic` functions. | ||
|
||
```@docs | ||
inertial | ||
synodic | ||
``` | ||
|
||
## Dimensionalization | ||
|
||
Functions to nondimensionalize spacecraft states, and re-dimensionalize spacecraft | ||
states are provided. | ||
|
||
```@docs | ||
time_scale_factor | ||
nondimensionalize_length | ||
nondimensionalize_velocity | ||
nondimensionalize_time | ||
nondimensionalize_mass_parameter | ||
nondimensionalize | ||
redimensionalize_length | ||
redimensionalize_velocity | ||
redimensionalize_time | ||
redimensionalize | ||
``` | ||
|
||
## Other Common Calculations | ||
|
||
```@docs | ||
potential_energy | ||
jacobi_constant | ||
nondimensional_radius | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# `ThreeBody` Data Structures | ||
|
||
The `ThreeBody` module contains one key structure: `ThreeBodySystem`. A `ThreeBodySystem` holds the | ||
nondimensional state of the spacecraft within the Circular Restricted Three-body Problem. | ||
|
||
```@docs | ||
ThreeBodySystem | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# | ||
# Aliases for Unitful dimension singletons | ||
# | ||
|
||
Unitful.@derived_dimension MassParameter Unitful.𝐋^3/Unitful.𝐓^2 | ||
const MassParameter = MassParameter | ||
const Length = Unitful.Length | ||
const Velocity = Unitful.Velocity | ||
const Time = Unitful.Time | ||
const Mass = Unitful.Mass |
Oops, something went wrong.
181a2c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator
register branch=main
181a2c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/25175
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: