- 积分
- 1422
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-9-12
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 小温馨岁月 于 2017-4-16 16:20 编辑
1.cesm数据需要包含cam-header和clm-header中的所有变量才可以进行转换。
isccp_prs | Mean ISCCP pressure | | | | isccp_tau | Mean ISCCP optical depth | | | | isccp_prstau | Mean pressure (mb).mean optical depth (unitless)/1000 | 缺少如上变量,应如何处理?
2.在运行CAM_netcdf_to_WRF_intermediate.f90时出错如下
CAM_netcdf_to_WRF_intermediate.f90(257): error #5102: Cannot open include file 'netcdf.inc'
INCLUDE 'netcdf.inc'
----------^
CAM_netcdf_to_WRF_intermediate.f90(258): error #6404: This name does not have a type, and must have an explicit type. [NF_NOERR]
IF (STATUS .NE. NF_NOERR) THEN
------------------^
CAM_netcdf_to_WRF_intermediate.f90(259): error #6404: This name does not have a type, and must have an explicit type. [NF_STRERROR]
PRINT *, NF_STRERROR(STATUS)
--------------^
CAM_netcdf_to_WRF_intermediate.f90(334): error #5102: Cannot open include file 'netcdf.inc'
INCLUDE 'netcdf.inc'
----------^
CAM_netcdf_to_WRF_intermediate.f90(351): error #6404: This name does not have a type, and must have an explicit type. [NF_OPEN]
STATUS = NF_OPEN(netcdf_cam_filename, 0, NCID)
-----------^
CAM_netcdf_to_WRF_intermediate.f90(352): error #6404: This name does not have a type, and must have an explicit type. [NF_NOERR]
IF (STATUS .NE. NF_NOERR) CALL HANDLE_ERR(STATUS)
------------------^
CAM_netcdf_to_WRF_intermediate.f90(368): error #6404: This name does not have a type, and must have an explicit type. [NF_INQ_VARID]
STATUS = NF_INQ_VARID(NCID, 'lat', LAT_var_id)
-----------^
CAM_netcdf_to_WRF_intermediate.f90(418): error #6404: This name does not have a type, and must have an explicit type. [NF_INQ_ATTLEN]
STATUS = NF_INQ_ATTLEN (NCID, lon_var_ID, 'units', lon_lat_netcdf_units_length)
-----------^
CAM_netcdf_to_WRF_intermediate.f90(424): error #6404: This name does not have a type, and must have an explicit type. [NF_GET_ATT_TEXT]
STATUS = NF_GET_ATT_TEXT (NCID, lon_var_ID, 'units', lon_netcdf_units)
-----------^
CAM_netcdf_to_WRF_intermediate.f90(498): error #6404: This name does not have a type, and must have an explicit type. [NF_GET_VAR_DOUBLE]
STATUS = NF_GET_VAR_DOUBLE(NCID, lon_var_ID, lon)
-----------^
CAM_netcdf_to_WRF_intermediate.f90(505): error #6404: This name does not have a type, and must have an explicit type. [NF_GET_VAR_REAL]
STATUS = NF_GET_VAR_REAL(NCID, field_var_ID(ifield), field3d)
--------------^
CAM_netcdf_to_WRF_intermediate.f90(662): error #6404: This name does not have a type, and must have an explicit type. [NF_CLOSE]
status=NF_CLOSE(ncid)
---------^
CAM_netcdf_to_WRF_intermediate.f90(826): error #5102: Cannot open include file 'netcdf.inc'
INCLUDE 'netcdf.inc'
----------^
compilation aborted for CAM_netcdf_to_WRF_intermediate.f90 (code 1)
请问是何问题?是需要更改脚本的一些内容吗?
|
|