I am writing a Fortran code for fluid flow in porous media. I am in the debugging stage. The code solves fluid flow equations using LAPCAK.
I have several modules that have specific tasks. for example, INDEXING MODULE is finding the coordinates and node number for every node in the domain.
I started debugging but I have the following error.
program main
use INDEXING
end program main
module INDEXING
contains
module procedure
end module INDEXING
error #7002: Error in opening the compiled module file. Check INCLUDE paths. [INDEXING]
Could you please, explain how to fix this issue?
Regards