Skip to content

Commit

Permalink
Issue #86: Update BSK gravFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark2000 committed Dec 14, 2023
1 parent 47b1d76 commit 9899c7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
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

0 comments on commit 9899c7c

Please sign in to comment.