-
Notifications
You must be signed in to change notification settings - Fork 9
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
Further steps for release v0.1.0 #120
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
paseos/actors/actor_builder.py
Outdated
logger.warning( | ||
"The actor already had a power device. Currently only one device is supported. Overriding old device." | ||
) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please, add a statement about to the README where you explain that it is possible to add only power device at the time. Trying to add more than one will lead to override the first.
paseos/actors/actor_builder.py
Outdated
@@ -211,6 +217,12 @@ def set_thermal_model( | |||
actor, SpacecraftActor | |||
), "Thermal models are only supported for SpacecraftActors" | |||
|
|||
# Check if the actor already had a thermal model | |||
if actor.has_thermal_model: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As above. If you want, you can also make one statement for all the models somewhere.
README.md
Outdated
|
||
``` | ||
|
||
This requires `Python 3.8` due to [pykep's limited support of pip](https://esa.github.io/pykep/installation.html). If you encounter problems, please consider setting up a `conda` environment to install dependencies. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This requires `Python 3.8` due to [pykep's limited support of pip](https://esa.github.io/pykep/installation.html). If you encounter problems, please consider setting up a `conda` environment to install dependencies. | |
This requires `Python 3.8` due to [pykep's limited support of pip](https://esa.github.io/pykep/installation.html). If you encounter problems, please consider setting up a dedicated `conda` environment to install dependencies. |
README.md
Outdated
@@ -483,6 +498,16 @@ sim.register_activity( | |||
sim.perform_activity("activity_A") | |||
``` | |||
|
|||
##### Waiting for Activities to Finish | |||
|
|||
If you want to run multiple activities in a row or just wait for the existing one to finish, you can use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you want to run multiple activities in a row or just wait for the existing one to finish, you can use | |
At the moment, parallel running of multiple activities is not supported. | |
However, if you want to run multiple activities in a row or just wait for the existing one to finish, you can use |
Description
Building on #116 , merge that first
Resolved Issues
Already working on some things for #119 until currently open PRs are merged.
How Has This Been Tested?
Will be tested in #119
Related Pull Requests