I'm going to guess that Modulus 7.0 is the program described on this
page:
https://pavementdesign.tamu.edu/downloading.htm
and that you're reading an FWD ("Falling Weight Deflectometer") file,
which you've just modified. The program was working before you changed
the file, and now it's not.
"End-of-file during read" means that the program is trying to read
more data than the file contains. There are many ways this can happen.
Typically, files that you can modify with a text editor consist of
lines, with each line ending in what's known as a line terminator,
which could be a carriage return, a line feed, or both of those. You
can think of those as characters that are invisible to you but visible
(and meaningful) to the Fortran run-time library (which is what
"forrtl" means).
If you remove a line from the file, you can get an end-of-file error.
If you add a line or replace the last line and you don't hit the
"Enter" key at the end of the line, your last line could be missing a
line terminator, and you might get an end-of-file error.
Hopefully, you'll have a manual that explains how the FWD file is
organized. If you don't know how it's organized, you might not want to
change it.
If you have a copy of the FWD file that worked, you should be able to
compare it to the file that's not working, and that should help you
figure out what you did that made it stop working.
Good luck.
Louis