- 积分
- 129
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-4-20
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
1、我在大型上无法使用ncdump命令,显示无法找到命令
如:
~> ncdump
-bash: ncdump: command not found
netcdf大型机原本就装好的,WRF安装且可以运行
请问是什么问题呢?
2、我在大型机上用fortran想打开nc文件,用nf_open命令
部分程序如下
in_file_str = '~/nc/wrfinput_d02'
status=nf_open(trim(in_file_str),nf_write,ncid)
if(status/=nf_noerr) call handle_nc_err(status)
subroutine handle_nc_err(status)
include 'netcdf.inc'
integer status
write(*,*)'Netcdf Process Error!'
write(*,*) nf_strerror(status)
stop 'stopped'
end subroutine
运行出来的结果是
Netcdf Process Error!
No such file or directory
我的路径写的是对的
请大侠指教是什么问题呢?
|
|