Doha
July 22, 2024, 9:46am
3
See https://www.cmascenter.org/ioapi/documentation/all_versions/html/AVAIL.html#cmaq :
According to the ISO Fortran Standard, there are two “source formats” for Fortran source code – the older ( f77 ) “fixed” format with code in columns 7-72 and continuation markers in column 6, and the ( f90 ) “free” format, with source in columns 1-132 and ampersand (“&”) for trailing continuation markers, as well as a specification for code which is acceptable to both forms.
Since it is used by various mode…
You’re right! I followed the suggestion given in another post, and by modifying the ioapi
include path to ioapi/fixed_src , the issue was resolved. Thank you for your help!