Skip to content

Commit

Permalink
Issue #172: Change default solar panel direction
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark2000 committed Aug 26, 2024
1 parent 8d698f7 commit cf5a415
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ Version 1.0.1
* Add ability to correlate ``sat_args`` between satellites with the ``sat_arg_randomizer``
option in :class:`~bsk_rl.GeneralSatelliteTasking`. This is demonstrated in the setup
of a constellation in the `multiagent example <examples/multiagent_envs.ipynb>`_.
* The default solar panel normal direction is now the negative z-axis, which is antiparallel
to the default instrument direction.


Version 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/bsk_rl/sim/dyn.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def setup_eclipse_object(self) -> None:
@default_args(
panelArea=2 * 1.0 * 0.5,
panelEfficiency=0.20,
nHat_B=np.array([0, 1, 0]),
nHat_B=np.array([0, 0, -1]),
)
def setup_solar_panel(
self,
Expand Down

0 comments on commit cf5a415

Please sign in to comment.