- 积分
- 30
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2021-10-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 drunkzui 于 2021-10-9 12:33 编辑
program bb
implicit none
real,parameter::a=17.269,b=35.86,cp=1004,g=9.8
real::z=35.2,t0=291.56,pz=1003.5,td0=291.07,ez,thea,qz,pl,tl,el,ql,zl
integer::rh=97,n
ez=6.1078*exp((a*(td0-273.16))/(td0-b))
thea=t0*(1000/pz)**0.286
qz=((0.622*ez)/(pz-0.378*ez))
pl=300
tl=thea(1000/pl)**(-0.286)
el=6.1078*exp((a*(tl-273.16))/(tl-b))
ql=((0.622*el)/(pl-0.378*el))
n=1
第十行提示我This name has not been declared as an array. [THEA]
tl=thea(1000/pl)**(-0.286)
---^
要怎么做啊,求助大佬们
|
|