We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Code in cable_psm.F90 utilises IF statements such as:
cable_psm.F90
IF (veg%iveg(i) .LT. 16) THEN
These should be replaced with:
IF (veg%iveg(i) .LT. lakes_cable) THEN
where lakes_cable is defined in cable_surface_types.F90.
lakes_cable
cable_surface_types.F90
Other changes in cable_psm.F90 are coming for the GW work, wait for this work to make the change.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Code in
cable_psm.F90
utilises IF statements such as:These should be replaced with:
where
lakes_cable
is defined incable_surface_types.F90
.Other changes in
cable_psm.F90
are coming for the GW work, wait for this work to make the change.The text was updated successfully, but these errors were encountered: