Problems when using GLDAS data simulation #246
Unanswered
Dylan-leo1
asked this question in
Q&A
Replies: 1 comment
-
This looks like an issue caused by not correctly setting your netcdf path in user_builds_option file before you compiled the model. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I would like to ask you a question. I seem to be unsuccessful when using perl create_UV_netcdf.perl. I don’t know how to solve it.
[root@localhost GLDASdata]# perl create_UV_netcdf.perl
rm -f *.o *~ *.exe
ifort -I/apps/include -o combine_precips_netcdf.exe -convert big_endian -g -O0 -fpe0 combine_precips_netcdf.f90 -L/apps/lib -lnetcdf -lnetcdff
combine_precips_netcdf.f90(1): error #7002: Error in opening the compiled module file. Check INCLUDE paths. [NETCDF]
use netcdf
----^
combine_precips_netcdf.f90(40): error #6404: This name does not have a type, and must have an explicit type. [NF90_OPEN]
ierr = nf90_open(infile1,nf90_nowrite, ncid)
-------^
combine_precips_netcdf.f90(45): error #6404: This name does not have a type, and must have an explicit type. [NF90_INQ_VARID]
ierr = nf90_inq_varid(ncid,RAIN_NAME,rain_varid)
-------^
combine_precips_netcdf.f90(46): error #6404: This name does not have a type, and must have an explicit type. [NF90_GET_VAR]
ierr = nf90_get_var(ncid,rain_varid,rain_in)
-------^
combine_precips_netcdf.f90(51): error #6404: This name does not have a type, and must have an explicit type. [NF90_CLOSE]
ierr = nf90_close(ncid)
-------^
combine_precips_netcdf.f90(69): error #6404: This name does not have a type, and must have an explicit type. [NF90_CREATE]
ierr = nf90_create(outfile, nf90_clobber, ncid)
-------^
combine_precips_netcdf.f90(73): error #6404: This name does not have a type, and must have an explicit type. [NF90_DEF_DIM]
ierr = nf90_def_dim(ncid, LAT_NAME, NLATS, lat_dimid)
-------^
combine_precips_netcdf.f90(82): error #6404: This name does not have a type, and must have an explicit type. [NF90_DEF_VAR]
ierr = nf90_def_var(ncid, LAT_NAME, NF90_REAL, lat_dimid, lat_varid)
-------^
combine_precips_netcdf.f90(85): error #6404: This name does not have a type, and must have an explicit type. [NF90_PUT_ATT]
ierr = nf90_put_att(ncid,lat_varid,UNITS,LAT_UNITS)
-------^
combine_precips_netcdf.f90(98): error #6404: This name does not have a type, and must have an explicit type. [NF90_ENDDEF]
ierr = nf90_enddef(ncid)
-------^
combine_precips_netcdf.f90(101): error #6404: This name does not have a type, and must have an explicit type. [NF90_PUT_VAR]
ierr = nf90_put_var(ncid, lat_varid, lats)
-------^
compilation aborted for combine_precips_netcdf.f90 (code 1)
make: *** [all] Error 1
Beta Was this translation helpful? Give feedback.
All reactions