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

Feature/322 simIncludeGravBody rewrite #501

Merged
merged 5 commits into from
Nov 25, 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
4 changes: 4 additions & 0 deletions docs/source/Support/bskReleaseNotes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ Version |release|
and ``usePointMassGravityModel`` have been added.
- Fixed examples and tests to run even when Basilisk is built with ``--vizInterface False``.
- Added a new method ``setDataBuffer()`` to :ref:`simpleStorageUnit` and :ref:`partitionedStorageUnit` to add or remove data from specified partitions.
- Refactored ``simIncludeGravBody``. The most notable change for users is that the commonly used line
``scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))``
can be replaced by ``gravFactory.addBodiesTo(scObject)`` (where ``scObject`` is a ``spacecraft.Spacecraft``
or ``spacecraftSystem.SpacecraftSystem``, and ``gravFactory`` is a ``simIncludeGravBody.gravBodyFactory``)

Version 2.2.0 (June 28, 2023)
-----------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/BskSim/models/BSK_Dynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def SetGravityBodies(self):
self.earth = 1
self.moon = 2

self.scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(self.gravFactory.gravBodies.values()))
self.gravFactory.addBodiesTo(self.scObject)
self.gravFactory.createSpiceInterface(bskPath + '/supportData/EphemerisData/',
timeInitString,
epochInMsg=True)
Expand Down
4 changes: 2 additions & 2 deletions examples/BskSim/models/BSK_FormationDynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def __init__(self, SimBase, dynRate):
self.gravFactory = simIncludeGravBody.gravBodyFactory()
planet = self.gravFactory.createEarth()
planet.isCentralBody = True # ensure this is the central gravitational body
self.scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(self.gravFactory.gravBodies.values()))
self.scObject2.gravField.gravBodies = spacecraft.GravBodyVector(list(self.gravFactory.gravBodies.values()))
self.gravFactory.addBodiesTo(self.scObject)
self.gravFactory.addBodiesTo(self.scObject2)

# Initialize all modules and write init one-time messages
self.InitAllDynObjects()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def SetGravityBodies(self, SimBase):
Specify what gravitational bodies to include in the simulation
"""
# Attach the gravity body
self.scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(SimBase.EnvModel.gravFactory.gravBodies.values()))
SimBase.EnvModel.gravFactory.addBodiesTo(self.scObject)

def SetGroundLocations(self, SimBase):
"""
Expand Down
6 changes: 3 additions & 3 deletions examples/OpNavScenarios/modelsOpNav/BSK_OpNavDynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def SetGravityEffector(self):
gravBodies['mars barycenter'].useSphericalHarmonicsGravityModel(
bskPath + '/supportData/LocalGravData/GGM2BData.txt', 2)

self.scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(self.gravFactory.gravBodies.values()))
self.gravFactory.addBodiesTo(self.scObject)
self.gravFactory.createSpiceInterface(bskPath + '/supportData/EphemerisData/',
timeInitString,
epochInMsg=True)
Expand Down Expand Up @@ -369,8 +369,8 @@ def SetEphemConvert(self):
def SetSimpleGrav(self):
planet = self.gravFactory.createMarsBarycenter()
planet.isCentralBody = True
self.scObject.gravField.gravBodies = \
spacecraft.GravBodyVector(list(self.gravFactory.gravBodies.values()))

self.gravFactory.addBodiesTo(self.scObject)

# Global call to initialize every module
def InitAllDynObjects(self, SimBase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def run(TheScenario, runLog):

TheScenario.vizard.kill()

spice = TheScenario.get_DynModel().gravFactory.spiceObject
spice = TheScenario.get_DynModel().spiceObject
spice.unloadSpiceKernel(spice.SPICEDataPath, 'de430.bsp')
spice.unloadSpiceKernel(spice.SPICEDataPath, 'naif0012.tls')
spice.unloadSpiceKernel(spice.SPICEDataPath, 'de-403-masses.tpc')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def run(TheScenario):

vizard.kill()

spice = TheScenario.get_DynModel().gravFactory.spiceObject
spice = TheScenario.get_DynModel().spiceObject
spice.unloadSpiceKernel(spice.SPICEDataPath, 'de430.bsp')
spice.unloadSpiceKernel(spice.SPICEDataPath, 'naif0012.tls')
spice.unloadSpiceKernel(spice.SPICEDataPath, 'de-403-masses.tpc')
Expand Down
7 changes: 2 additions & 5 deletions examples/scenarioAerocapture.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,15 +233,12 @@ def run(show_plots, planetCase):

# setup Gravity Body
gravFactory = simIncludeGravBody.gravBodyFactory()
if planetCase == 'Earth':
planet = gravFactory.createEarth()
else:
planet = gravFactory.createMars()
planet = gravFactory.createBody(planetCase)
planet.isCentralBody = True # ensure this is the central gravitational body
mu = planet.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

if planetCase == 'Earth':
r = 6503 * 1000
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAlbedo.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def run(show_plots, albedoData, multipleInstrument, multiplePlanet, useEclipse,
scObject.hub.v_CN_NInit = vN # m - v_CN_N
scObject.hub.sigma_BNInit = [[0.0], [0.0], [0.0]] # sigma_BN_B
scObject.hub.omega_BN_BInit = [[0.0], [0.0], [.5 * macros.D2R]] # rad/s - omega_BN_B
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# Add spacecraft object to the simulation process
scSim.AddModelToTask(simTaskName, scObject)
Expand Down
15 changes: 6 additions & 9 deletions examples/scenarioAsteroidArrival.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,7 @@ def run(show_plots):

# Create additional gravitational bodies
gravFactory = simIncludeGravBody.gravBodyFactory()
gravFactory.createBodies(["earth", "sun"])
sun = gravFactory.gravBodies["sun"]
gravFactory.createBodies("earth", "sun")

# Set gravity body index values
earthIdx = 0
Expand All @@ -300,12 +299,10 @@ def run(show_plots):

# Create and configure the default SPICE support module. The first step is to store
# the date and time of the start of the simulation.
gravFactory.createSpiceInterface(bskPath + '/supportData/EphemerisData/',
timeInitString,
epochInMsg=True)
spiceObject = gravFactory.createSpiceInterface(time=timeInitString, epochInMsg=True)

# Add the SPICE object to the simulation task list
scSim.AddModelToTask(simTaskName, gravFactory.spiceObject)
scSim.AddModelToTask(simTaskName, spiceObject)

# Create the asteroid custom gravitational body
asteroid = gravFactory.createCustomGravObject("bennu", mu
Expand All @@ -320,15 +317,15 @@ def run(show_plots):
scObject.ModelTag = "bskSat"

# Connect all gravitational bodies to the spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)
scSim.AddModelToTask(simTaskName, scObject)

# Create an ephemeris converter to convert messages of type
# 'SpicePlanetStateMsgPayload' to 'EphemerisMsgPayload'
ephemObject = ephemerisConverter.EphemerisConverter()
ephemObject.ModelTag = 'EphemData'
ephemObject.addSpiceInputMsg(gravFactory.spiceObject.planetStateOutMsgs[earthIdx])
ephemObject.addSpiceInputMsg(gravFactory.spiceObject.planetStateOutMsgs[sunIdx])
ephemObject.addSpiceInputMsg(spiceObject.planetStateOutMsgs[earthIdx])
ephemObject.addSpiceInputMsg(spiceObject.planetStateOutMsgs[sunIdx])
# Recall the asteroid was not created with Spice.
ephemObject.addSpiceInputMsg(gravBodyEphem.planetOutMsgs[0])
scSim.AddModelToTask(simTaskName, ephemObject)
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttGuideHyperbolic.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def run(show_plots, useAltBodyFrame):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# initialize Spacecraft States with initialization variables
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttLocPoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def run(show_plots):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# initialize Spacecraft States with initialization variables
Expand Down
24 changes: 11 additions & 13 deletions examples/scenarioAttitudeConstrainedManeuver.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,30 +143,28 @@ def run(show_plots, use2SunSensors, starTrackerFov, sunSensorFov, attitudeSetCas
gravFactory = simIncludeGravBody.gravBodyFactory()

# Next a series of gravitational bodies are included
gravBodies = gravFactory.createBodies(['earth', 'sun'])
gravBodies = gravFactory.createBodies('earth', 'sun')
planet = gravBodies['earth']
planet.isCentralBody = True

mu = planet.mu
# The configured gravitational bodies are added to the spacecraft dynamics with the usual command:
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# Next, the default SPICE support module is created and configured.
timeInitString = "2021 JANUARY 15 00:28:30.0"

# The following is a support macro that creates a `gravFactory.spiceObject` instance
gravFactory.createSpiceInterface(bskPath +'/supportData/EphemerisData/',
timeInitString,
epochInMsg=True)
# The following is a support macro that creates a `spiceObject` instance
spiceObject = gravFactory.createSpiceInterface(time=timeInitString, epochInMsg=True)

# Earth is gravity center
gravFactory.spiceObject.zeroBase = 'Earth'
spiceObject.zeroBase = 'Earth'

# The SPICE object is added to the simulation task list.
scSim.AddModelToTask(simTaskName, gravFactory.spiceObject, 2)

# The gravitational body is connected to the spacecraft object
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# setup the orbit using classical orbit elements
oe = orbitalMotion.ClassicElements()
Expand Down Expand Up @@ -356,8 +354,8 @@ def run(show_plots, use2SunSensors, starTrackerFov, sunSensorFov, attitudeSetCas
sNavObject.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
CAM.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
CAM.vehicleConfigInMsg.subscribeTo(vcMsg)
CAM.keepOutCelBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
CAM.keepInCelBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
CAM.keepOutCelBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])
CAM.keepInCelBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])
attError.attNavInMsg.subscribeTo(sNavObject.attOutMsg)
attError.attRefInMsg.subscribeTo(CAM.attRefOutMsg)
mrpControl.guidInMsg.subscribeTo(attError.attGuidOutMsg)
Expand All @@ -370,12 +368,12 @@ def run(show_plots, use2SunSensors, starTrackerFov, sunSensorFov, attitudeSetCas

# Boresight modules
stBACObject.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
stBACObject.celBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
stBACObject.celBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])
ssyBACObject.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
ssyBACObject.celBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
ssyBACObject.celBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])
if use2SunSensors:
sszBACObject.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
sszBACObject.celBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
sszBACObject.celBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])

# Vizard Visualization Option
# ---------------------------
Expand Down
22 changes: 10 additions & 12 deletions examples/scenarioAttitudeConstraintViolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,32 +189,30 @@ def run(show_plots, use2SunSensors, starTrackerFov, sunSensorFov, attitudeSetCas
gravFactory = simIncludeGravBody.gravBodyFactory()

# Next a series of gravitational bodies are included
gravBodies = gravFactory.createBodies(['earth', 'sun'])
gravBodies = gravFactory.createBodies('earth', 'sun')
planet = gravBodies['earth']
planet.isCentralBody = True

mu = planet.mu
# The configured gravitational bodies are added to the spacecraft dynamics with the usual command:
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# Next, the default SPICE support module is created and configured.
timeInitString = "2021 JANUARY 15 00:28:30.0"
spiceTimeStringFormat = '%Y %B %d %H:%M:%S.%f'
timeInit = datetime.strptime(timeInitString, spiceTimeStringFormat)

# The following is a support macro that creates a `gravFactory.spiceObject` instance
gravFactory.createSpiceInterface(bskPath +'/supportData/EphemerisData/',
timeInitString,
epochInMsg=True)
# The following is a support macro that creates a `spiceObject` instance
spiceObject = gravFactory.createSpiceInterface(time=timeInitString, epochInMsg=True)

# Earth is gravity center
gravFactory.spiceObject.zeroBase = 'Earth'
spiceObject.zeroBase = 'Earth'

# The SPICE object is added to the simulation task list.
scSim.AddModelToTask(simTaskName, gravFactory.spiceObject, 2)
scSim.AddModelToTask(simTaskName, spiceObject, 2)

# The gravitational body is connected to the spacecraft object
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# setup the orbit using classical orbit elements
oe = orbitalMotion.ClassicElements()
Expand Down Expand Up @@ -404,12 +402,12 @@ def run(show_plots, use2SunSensors, starTrackerFov, sunSensorFov, attitudeSetCas

# Boresight modules
stBACObject.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
stBACObject.celBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
stBACObject.celBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])
ssyBACObject.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
ssyBACObject.celBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
ssyBACObject.celBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])
if use2SunSensors:
sszBACObject.scStateInMsg.subscribeTo(scObject.scStateOutMsg)
sszBACObject.celBodyInMsg.subscribeTo(gravFactory.spiceObject.planetStateOutMsgs[1])
sszBACObject.celBodyInMsg.subscribeTo(spiceObject.planetStateOutMsgs[1])

# Vizard Visualization Option
# ---------------------------
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeFeedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def run(show_plots, useUnmodeledTorque, useIntGain, useKnownTorque, useCMsg):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# setup extForceTorque module
# the control torque is read in through the messaging system
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeFeedback2T.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def run(show_plots, useUnmodeledTorque, useIntGain):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# setup extForceTorque module
# the control torque is read in through the messaging system
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeFeedback2T_TH.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def run(show_plots, useDVThrusters):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# setup extForceTorque module
# the control torque is read in through the messaging system
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeFeedback2T_stateEffTH.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def run(show_plots, useDVThrusters):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# setup extForceTorque module
# the control torque is read in through the messaging system
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeFeedbackRW.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def run(show_plots, useJitterSimple, useRWVoltageIO):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# add RW devices
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeFeedbackRWPower.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def run(show_plots, useRwPowerGeneration):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# add RW devices
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeGG.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def run(show_plots):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# initialize Spacecraft States with initialization variables
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeGuidance.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def run(show_plots, useAltBodyFrame):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# initialize Spacecraft States with initialization variables
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudePrescribed.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def run(show_plots, useAltBodyFrame):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# initialize Spacecraft States with initialization variables
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioAttitudeSteering.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def run(show_plots, simCase):
mu = earth.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

# add RW devices
rwFactory = simIncludeRW.rwFactory()
Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioBasicOrbit.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def run(show_plots, orbitCase, useSphericalHarmonics, planetCase):
mu = planet.mu

# Finally, the gravitational body must be connected to the spacecraft object. This is done with
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)
# Here the complete list of gravitational bodies is automatically assigned to the spacecraft, regardless if
# it is only one body like Earth or Mars, or a list of multiple bodies.

Expand Down
2 changes: 1 addition & 1 deletion examples/scenarioBasicOrbitStream.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def run(show_plots, liveStream, timeStep, orbitCase, useSphericalHarmonics, plan
mu = planet.mu

# attach gravity model to spacecraft
scObject.gravField.gravBodies = spacecraft.GravBodyVector(list(gravFactory.gravBodies.values()))
gravFactory.addBodiesTo(scObject)

#
# setup orbit and simulation time
Expand Down
Loading
Loading