-
Notifications
You must be signed in to change notification settings - Fork 3
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
[bugfix] Add commands to turn HRC off to SCS 107 #344
Conversation
@taldcroft @jeanconn @javierggt I suspect that I do not have the correct settings to carry out the kadi unit tests, as I get a lot of failures, even when I run them on the |
We should probably figure out what is going on with the tests then. @jzuhone are you running the tests on HEAD or local? And what is failing? |
@jeanconn I'm running the tests on HEAD. I am getting quite a number of failures--I can send a summary later. |
Thanks! For me, against flight ska3 I'm seeing one test failure on master just now that looks to be a hiccup related to the SCS107 (test_get_starcats_each_year is failing in year 2025 because the fids aren't identified because they are (properly) off). |
kadi/commands/command_sets.py
Outdated
dict(type="COMMAND_HW", tlmsid="224PCAOF"), | ||
dict(type="COMMAND_HW", tlmsid="2IMHVOF"), | ||
dict(type="COMMAND_HW", tlmsid="2SPHVOF"), | ||
dict(type="COMMAND_HW", tlmsid="2S2HVOF"), |
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.
For the hiccup today, HRC and FOT MP and Tom settled on using these 8
COMMAND_HW | TLMSID=224PCAOF
COMMAND_HW | TLMSID=2IMHVOF
COMMAND_HW | TLMSID=2SPHVOF
COMMAND_HW | TLMSID=215PCAOF
COMMAND_HW | TLMSID=2S2STHV
COMMAND_HW | TLMSID=2S1STHV
COMMAND_HW | TLMSID=2S2HVOF
COMMAND_HW | TLMSID=2S1HVOF
so it sounds like there's a little remaining work figuring out which set makes the most sense.
I'm seeing one failure in
|
I took it to mean that the fid lights aren't identified for our recent scs107 interval. I thought that test looks to run over a chunk of time in each year and the new thing is we're in a new year. |
This change ended up being a bit involved in the end because adding new commands to SCS-107 impacts a bunch of regression testing. I needed to add a configuration hook to disable adding the new commands. This is required for comparing to existing commands in the archive. This is convenient for some other tests to just make the pain go away since at least a few tests were updated to reflect the new commanding. |
@jzuhone - can you re-run your functional testing and unit tests on HEAD with the new commit? |
I added a note about deployment, which should be no earlier than Feb 15. |
I like the deployment plan idea - though do we want to defer in fact until ska3-matlab is ready for this? Also, does deferred deployment suggest we should push that unrelated test fix in another PR or just put up with it? |
@taldcroft I ran the tests on HEAD and everything passes except for the one xfail you also got. |
I said during TWG that I'd take care of the remaining coding necessary for this, but it seems that work has happened between then and now. Has it been completed, or do you still need me to finalize the ordering and timing? |
Thanks @johnny1up ! I think the approach here to just separate the commands by 1.205s is sufficient for the use cases in kadi, but if you have suggestions they are obviously welcome. |
The ruff formatting issues appear unrelated to this PR. |
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.
Changes look good! (Aside from the ruff failure, which you already noted)
I'll fix the ruff failure tonight |
Looks to me like the ruff formatting fixes are already in master so we could rebase or ignore here. |
a773832
to
54e6f15
Compare
@jeanconn ok, ruff errors fixed by a rebase. |
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.
I redid the unit test in the description. Looks good to me.
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.
Tomorrow will be Feb 15, which was the NLT time for deployment. So we've waited long enough since this definitely won't get released before then. Even in masters this will be fine since there was margin in the Feb 15 date.
As a tiny go-back I think Feb 15 was the not-sooner-than time (not not-later-than) so we're still OK. |
Description
The DEC2324 load was interrupted by a radiation shutdown, in the middle of an HRC-S observation. SCS-107 should power the HRC off.
The
cea_check
run for the JAN0325 return-to-science loads incorrectly indicated that the HRC was on at the beginning of the load, which resulted in a thermal violation. This PR ensures that the HRC is turned off from the perspective of kadi states.This includes an unrelated fix to one regression test
test_get_starcats_each_year
. This was failing in 2025 because the first 4 days include an SCS-107 run. I think that testing a fixed set of years 2003 to 2024 inclusive is fine.Deployment
This should NOT be installed to flight prior to Feb 15. Otherwise this will result in duplication of the same commands which are in the Command Events sheet. Kadi command processing has a 30-day lookback, so wait until Feb 15 to be sure.
Interface impacts
New HRC commands result from any SCS-107 run (including NSM, Safe Mode). The command timing is different due to the addition of new commands with 1.025 sec waits.
Testing
Unit tests
Jean
Independent check of unit tests by JZ:
Functional tests
Without this change, the JAN0325 thermal model run indicated that the HRC was still on at the beginning of the load when run through
cea_check
, despite the fact that it had been turned off by the SCS-107 run. With the change included, the HRC is correctly marked as off at the beginning of the thermal model run.