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

python: Exercise 2 #9

Open
github-actions bot opened this issue Apr 12, 2024 · 0 comments · May be fixed by #10
Open

python: Exercise 2 #9

github-actions bot opened this issue Apr 12, 2024 · 0 comments · May be fixed by #10
Labels

Comments

@github-actions
Copy link

Python Exercise 2: Calculating experiment time windows

A lab group is using a python script to calculate the number of hour-long
experiments between an initial and final time.

Some background: The goal is to run the NSF NCAR space weather model
TIEGCM and stop every
hour to update the model using observations.
Each experiment uses observations from +/- 30 minutes from when the model
is stopped. This +/- 30 minutes is known as the experiment window.

The class time_window.py is the initialized
with the start time, the final time, and the delta (the duration of a single
experiment). From these input the number of experiments needed, and the start
and stop for both the model and the window are calculated.
The script run_test.py provided by the lab group
can be used to demonstrate the bug: run_test.py initializes the class and prints
the window and model times.

The issue: For one set of experiments, the delta was accidentally entered
as negative. The number of windows was calculated correctly, but the times
for each of the windows were incorrect.

The lab group want to add some error checking to the python script to prevent
this error happening again.

Take a look at time_window.py:

  • Where would you put the error check?
  • Are there other error checks that you think should be included in the script?

Take a look at the pull request:

  • Does the pull request address the issue?
  • Are there any unnecessary or incorrect changes?
  • What would make the pull request easier to review?
  • What would improve the pull request? Add a suggestion.
@github-actions github-actions bot linked a pull request Apr 12, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

0 participants