- 积分
- 6069
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2017-2-10
- 最后登录
- 1970-1-1
|
发表于 2019-11-16 11:53:11
|
显示全部楼层
大神!首先感谢您的分享,让我少走不少弯路;然后我在编译HRLDAS时出现下面的错误,您能指导我一下吗?
make
(cd Utility_routines; make)
make[1]: Entering directory `/gpfsnewhome/guanxiaod1/gzk/NoahMP/HRLDAS/Utility_routines'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/gpfsnewhome/guanxiaod1/gzk/NoahMP/HRLDAS/Utility_routines'
(cd phys; make)
make[1]: Entering directory `/gpfsnewhome/guanxiaod1/gzk/NoahMP/HRLDAS/phys'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/gpfsnewhome/guanxiaod1/gzk/NoahMP/HRLDAS/phys'
(cd IO_code; make)
make[1]: Entering directory `/gpfsnewhome/guanxiaod1/gzk/NoahMP/HRLDAS/IO_code'
rm -f module_NoahMP_hrldas_driver.f90
/usr/bin/cpp -P -traditional -D_GFORTRAN_ -D_HRLDAS_OFFLINE_ module_NoahMP_hrldas_driver.F > module_NoahMP_hrldas_driver.f90
/usr/bin/gfortran -o module_NoahMP_hrldas_driver.o -c -g -fconvert=big-endian -fbounds-check -fno-range-check -fno-underscoring -ffree-form -ffree-line-length-none -I -I. \
-I../phys -I../Utility_routines -I/gpfsnewhome/guanxiaod1/gzk/local/Build_WRF/LIBRARIES/netcdf/include module_NoahMP_hrldas_driver.f90
module_NoahMP_hrldas_driver.f90:279.52:
REAL, ALLOCATABLE :: DECLIN ! declination (needed f
1
Error: Scalar object 'declin' at (1) may not be ALLOCATABLE
module_NoahMP_hrldas_driver.f90:276.49:
REAL, ALLOCATABLE :: GMT ! Hour of day (fraction
1
Error: Scalar object 'gmt' at (1) may not be ALLOCATABLE
module_NoahMP_hrldas_driver.f90:277.52:
INTEGER, ALLOCATABLE :: JULDAY ! Integer day (needed f
1
Error: Scalar object 'julday' at (1) may not be ALLOCATABLE
module_NoahMP_hrldas_driver.f90:1060.12:
ALLOCATE ( DECLIN ) !
1
Error: Array specification required in ALLOCATE statement at (1)
module_NoahMP_hrldas_driver.f90:1061.12:
ALLOCATE ( GMT ) !
1
Error: Array specification required in ALLOCATE statement at (1)
module_NoahMP_hrldas_driver.f90:1062.12:
ALLOCATE ( JULDAY ) !
1
Error: Array specification required in ALLOCATE statement at (1)
make[1]: *** [module_NoahMP_hrldas_driver.o] Error 1
make[1]: Leaving directory `/gpfsnewhome/guanxiaod1/gzk/NoahMP/HRLDAS/IO_code'
make: *** [all] Error 2
|
|