Skip to content

Commit

Permalink
Fix Saturn mass. (#71)
Browse files Browse the repository at this point in the history
Saturn mass was off by a factor of 10.
  • Loading branch information
TobiasHeinicke authored Aug 5, 2021
1 parent f6966ba commit 4c0b306
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ julia> AstroLib.planets["mars"].eqradius
3.3962e6

julia> AstroLib.planets["saturn"].mass
5.6834e25
5.6834e26
```

Documentation
Expand Down
2 changes: 1 addition & 1 deletion docs/src/ref.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ julia> AstroLib.planets["mars"].eqradius
3.3962e6

julia> AstroLib.planets["saturn"].mass
5.6834e25
5.6834e26
```

## Functions organized by category
Expand Down
2 changes: 1 addition & 1 deletion src/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const planets =
"jupiter"=>Planet("jupiter", 69911e3, 71492e3, 66854e3, 1898.19e24,
0.04838624, 5.20288700 * AU, 4332.589*86400,
1.30439695, 100.47390909, 14.72847983, 34.39644051),
"saturn"=>Planet("saturn", 58232e3, 60268e3, 54364e3, 568.34e23,
"saturn"=>Planet("saturn", 58232e3, 60268e3, 54364e3, 568.34e24,
0.05386179, 9.53667594 * AU, 10759.22*86400,
2.48599187, 113.66242448, 92.59887831, 49.95424423),
"uranus"=>Planet("uranus", 25362e3, 25559e3, 24973e3, 86.813e24,
Expand Down

0 comments on commit 4c0b306

Please sign in to comment.