-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
114 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright (c) 2023, MASSACHUSETTS INSTITUTE OF TECHNOLOGY | ||
# Subject to FAR 52.227-11 – Patent Rights – Ownership by the Contractor (May 2014). | ||
# SPDX-License-Identifier: MIT | ||
|
||
from kspdg.sb1.sb1_base import SunBlockingGroup1Env | ||
|
||
class SB1_E1_ParentEnv(SunBlockingGroup1Env): | ||
def __init__(self, loadfile: str, **kwargs): | ||
super().__init__(loadfile=loadfile, **kwargs) | ||
|
||
def evasive_maneuvers(self): | ||
'''Do not perform evasive maneuvers | ||
''' | ||
pass | ||
|
||
class SB1_E1_I1_Env(SB1_E1_ParentEnv): | ||
def __init__(self, **kwargs): | ||
super().__init__(loadfile=SunBlockingGroup1Env.LOADFILE_I1, **kwargs) | ||
|
||
class SB1_E1_I2_Env(SB1_E1_ParentEnv): | ||
def __init__(self, **kwargs): | ||
super().__init__(loadfile=SunBlockingGroup1Env.LOADFILE_I2, **kwargs) | ||
|
||
class SB1_E1_I3_Env(SB1_E1_ParentEnv): | ||
def __init__(self, **kwargs): | ||
super().__init__(loadfile=SunBlockingGroup1Env.LOADFILE_I3, **kwargs) | ||
|
||
class SB1_E1_I4_Env(SB1_E1_ParentEnv): | ||
def __init__(self, **kwargs): | ||
super().__init__(loadfile=SunBlockingGroup1Env.LOADFILE_I4, **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters