Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

module_fr_fire_model.f90(6): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MODULE_FR_

This post was from a previous version of the WRF&MPAS-A Support Forum. New replies have been disabled and if you have follow up questions related to this post, then please start a new thread from the forum home page.

louwangzhiyuwhy

New member
ifort compile wrf under centos6 x86_64
ifort --version
Copyright (C) 1985-2013 Intel Corporation. All rights reserved.

1100 export NETCDF=/scv2000/wanghaoyun/install/netcdf4
1101 export CC=icc
1102 export FC=ifort
1103 export CXX=icpc
1104 export F77=ifort
1105 export JASPERLIB=/scv2000/wanghaoyun/install/grib2/lib
1106 export JASPERINC=/scv2000/wanghaoyun/install/grib2/include
1107 export LDFLAGS=-L/scv2000/wanghaoyun/install/grib2/lib
1108 export CPPFLAGS=-L/scv2000/wanghaoyun/install/grib2/include

netcdf mpich zlib libpng jasper are all installed

and test case https://www2.mmm.ucar.edu/wrf/OnLineTutorial/compilation_tutorial.php#STEP2
Test #2: Fortran + C + NetCDF + MPI
also worked:
C function called by Fortran
Values are xx = 2.00 and ii = 1
status = 2
SUCCESS test 2 fortran + c + netcdf + mpi

cd WRF
./configure
./compile em_real >& log.compile
and I got ERROR:
module_fr_fire_model.f90(6): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [MODULE_FR_
Why?
Is any other library I didn't link to the right path????
 

Attachments

  • configure.wrf
    23.1 KB · Views: 62
  • log.compile
    900.4 KB · Views: 92
Please modify the code phys/module_fr_fire_phys.F, find the following subroutine read_namelist_fire(init_fuel_moisture), and at the end of this subroutine, please change the line

end

to

end subroutine read_namelist_fire

Then recompile. Hope this will fix the problem.
 
Top