-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from ATTron/feature/sc-55
feat: [sc-55] Astroz: create constants for the known forces
- Loading branch information
Showing
3 changed files
with
26 additions
and
13 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// gravity | ||
pub const G = 6.6743e-11; | ||
// sol | ||
pub const c = 299792458; | ||
// earth mass | ||
pub const moe = 5.97216787e+24; | ||
// solar mass | ||
pub const mos = 1.49597871e+11; | ||
// planck constant | ||
pub const h = 6.62607015e-34; | ||
// astronmical unit | ||
pub const au = 1.49597871e+11; |
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,2 @@ | ||
const ccsds = @import("ccsds.zig"); | ||
const constants = @import("constants.zig"); |