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
The contrail accf by day is not using the right weather variable for outgoing longwave radiation. Climaccf is using "top net thermal radiation (ttr)" in J m^-2 from ERA5 single level dataset. It is then divided in their implementation by the time interval (3600s in this case) to convert it to the mean flux on this time interval (W m^-2). Climaccf should therefore be given the value in J m^-2, and not the one in W m^-2.
This is the expected result with Climaccf :
This is the result with Pycontrail accf:
This is the result with climaccf with the wrong OLR values :
We think this is the main difference between the two results.
Details
Version: 0.42.0
Module: models.accf
OS: windows
Steps to Reproduce
Run the accfs with pycontrail
Compare with Climaccf with both the weather variable in J/m-² and in W/m-²
The text was updated successfully, but these errors were encountered:
We made the choice to modify the accumulated values on load because it made downstream modeling simpler, but only for the internally built models. I think it was an incorrect choice, so we'll find a way to stop modifying the input meteorology by default.
I just ran across this issue in some comparison work I was doing. A work around to this would be to multiply by 3600*step_size after this line in our wrapper code.
@mlshapiro is there any objection to doing this now and removing it once we change how the met data gets loaded?
Description
The contrail accf by day is not using the right weather variable for outgoing longwave radiation. Climaccf is using "top net thermal radiation (ttr)" in J m^-2 from ERA5 single level dataset. It is then divided in their implementation by the time interval (3600s in this case) to convert it to the mean flux on this time interval (W m^-2). Climaccf should therefore be given the value in J m^-2, and not the one in W m^-2.
This is the expected result with Climaccf :
This is the result with Pycontrail accf:
This is the result with climaccf with the wrong OLR values :
We think this is the main difference between the two results.
Details
Steps to Reproduce
The text was updated successfully, but these errors were encountered: