Replies: 1 comment
-
We used to have the pickle file in the code base. That caused also some pain. The thing is that the two notebooks from a calculation point of view do indeed depend on each other. First you calculate the load collective from time series data, then you use the load collective to do a damage calculation. There is 9abebdd to force that the notebooks producing stuff that other notebooks depend on during the documentation build. Maybe we can figure out why this does not work anymore. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The notebook
demos/lifetime_calc
assumes an existing file that is loaded by%store -r rf_dict
.This file can be created with the notebook
time_series_handling
, the last cell has the code%store rf_dict
.This seems a bit fragile to me. It is somewhat documented (lifetime_calc says
More information about the time series and loading handlin and the RF generation you can find in the notebook time_series_handling
).When building the docs locally, I get an error because of this (however, the automatic doc build in the Actions succeeds):
Should we remove this dependency? How else could we load/generate the required data in
lifetime_calc
?Beta Was this translation helpful? Give feedback.
All reactions