You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running SUEWS with Spartacus when the wind speed in the forcing data = 0 gives NaN or -600 values in the output
I tried using the new version (SuPy version: 2024.12.3.dev) , but still the results are the same.
The issue is not there if i force all wind-speed occurences in the forcing data <= 0.01 to be something like 0.01
df_forcingl['U'] = df_forcing['U'].apply(lambda x: x if x >= 0.1 else 0.1)
Perhaps I missed out on key points from yesterdays meeting on if this new version solved the problem or not. But I still get same errors as before.
Best,
Oskar
The text was updated successfully, but these errors were encountered:
Running SUEWS with Spartacus when the wind speed in the forcing data = 0 gives NaN or -600 values in the output
I tried using the new version (SuPy version: 2024.12.3.dev) , but still the results are the same.
The issue is not there if i force all wind-speed occurences in the forcing data <= 0.01 to be something like 0.01
df_forcingl['U'] = df_forcing['U'].apply(lambda x: x if x >= 0.1 else 0.1)
Perhaps I missed out on key points from yesterdays meeting on if this new version solved the problem or not. But I still get same errors as before.
Best,
Oskar
The text was updated successfully, but these errors were encountered: