Hi,
Actually, I am a petroleum engineer, I am going to modify one open source reservoir simulator. To compile the original simulator I use the win 7, 32bit, VS 2008, Intel(R) Visual Fortran Compiler Integration 11.1.3470.2008 : There are two solutions: 1: API to build library on HDF5 2: Simulator
However I can build the API (without error), I can not run it and I face this error ( I am not sure if it is necessary to run it or just building is enough):
Visual Studio cannot debug because a debug target has not been specified.
After building the API , The library was created in the related folder, I started to build in release as well as debug for simulator solution, at that time came up with this error:
Debugging information for UTCHEM93.exe cannot be found or does not match. Binary was not built with debug information.
please help me to find out the problem to run the exe. file one time and after that start to modify the Fortran source codes because my main area is to focus on some function in the source code.
I have attached the simulator package (source codes and read me file).
Thanks
Link Copied
Hello,
looking at the projects:
Best regards,
Georg Zitzlsberger
Greeting Georg,
Your quick answer is highly appreciated. Many thanks.
I have changed the project properties as you mentioned. I faced a new error (in both KaseDebug or Debug)which I have attached it to this post
Again many thanks for you consideration.
Hello,
this is related to your software (utchem93) and neither to the compiler nor debugger.
Seems your software is reading a file called "HEAD" which is either empty or does not contain the required number of records.
The "forrtl" error is a general I/O error from the Fortran runtime (caused by "READ"). So, "READ" failed to get the data from the input file.
Best regards,
Georg Zitzlsberger
Dear Georg,
Thanks for your time consideration. As you mentioned I think the problem occur because of missing input file. However I have a sample of the input file (attached to this comment), I couldn't find the correct path to put it. Only the procedure for running in Linux has been explained in the readme file.
Again many thanks for your constructive comments.
For more complete information about compiler optimizations, see our Optimization Notice.
Hello,
I've build the "Debug" mode and executed it. I get the same error as you.
Reason is as I described before:
..\UTCHEM931-kraken-win\dev\Projects\utchem93\mvs\HEAD is empty (0 Bytes)
The failing READ tries to read 6 ASCII chars which does not work on an empty file.
I don't know utchem93 and suggest to consult the owners of that application on how to operate and configure it.
Best regards,
Georg Zitzlsberger