Topic: legacy program issue, arrays
I have an issue with my "old" legacy program. This program was compiled on another older compiler and is used since 20 years or so.
I compiled it now new with Simply Fortran, but I get in one case wrong calculation results. The reason for, an array is not correctly read from the data file in Simply Fortran.
Array specification in F77, within an include file:
PARAMETER (MAXTU=10,MAXAOR=30,MAXN1S=80)
COMMON/TURKEN/RN1S(MAXTU,MAXAOR,MAXN1S)
If i read data for this array from an input file, the correct array size and data are used with the old compiler. But with Simpy Fortran i get an array size (MAXTU=80,MAXAOR=30,MAXN1S=10) instead, and the data values are not correctly read from the data file.
Does anyone had a similar problem?
Erwin