Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #86: Update BSK gravFactory #100

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,8 @@ def _set_gravity_bodies(
self.planet.isCentralBody = (
True # ensure this is the central gravitational body
)
self.planet.useSphericalHarmParams = True
simIncludeGravBody.loadGravFromFile(
bsk_path + "/supportData/LocalGravData/GGM03S.txt",
self.planet.spherHarm,
10,
self.planet.useSphericalHarmonicsGravityModel(
bsk_path + "/supportData/LocalGravData/GGM03S.txt", 10
)

# setup Spice interface for some solar system bodies
Expand Down
5 changes: 2 additions & 3 deletions src/bsk_rl/envs/general_satellite_tasking/utils/orbital.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,8 @@ def init_simulator(self) -> None:
planet = self.gravFactory.createEarth()
self.gravFactory.createSun()
planet.isCentralBody = True
planet.useSphericalHarmParams = True
simIncludeGravBody.loadGravFromFile(
bskPath + "/supportData/LocalGravData/GGM03S.txt", planet.spherHarm, 10
planet.useSphericalHarmonicsGravityModel(
bskPath + "/supportData/LocalGravData/GGM03S.txt", 10
)
UTCInit = self.utc_init
self.gravFactory.createSpiceInterface(
Expand Down