Hello,
I am working on a wrf model that uses FORTRAN 90. I have inserted a new code to compute temperatures at 30cm. When I compile I get the error:
Here are the lines of code the error references to:
I added the variables CHS30 and T30 to the subroutine SFCDIAGS and the subroutine SFCDIAGS correctly compiled. But I get the above errors when I try to compile with CHS30 and T30 in the two above lines of code in the surface driver module.
I am working on a wrf model that uses FORTRAN 90. I have inserted a new code to compute temperatures at 30cm. When I compile I get the error:
Code:
PGF90-S-0186-Argument missing for formal argument kts(module_surface_driver.f90: 972)
Code:
PGF90-S-0186-Argument missing for formal argument kts(module_surface_driver.f90: 1113)
Here are the lines of code the error references to:
Code:
CALL SFCDIAGS(hfx,qfx,tsk,qsfc,chs2,chs30,cqs2,t2,t30,th2,q2, &
psfc,cp,r_d,rcp, &
ids,ide, jds,jde, kds,kde, &
ims,ime, jms,jme, kms,kme, &
i_start(ij),i_end(ij), j_start(ij),j_end(ij), kts,kte )
Code:
CALL SFCDIAGS(HFX,QFX,TSK,QSFC,CHS2,CHS30,CQS2,T2,T30,TH2,Q2, &
PSFC,CP,R_d,RCP, &
ids,ide, jds,jde, kds,kde, &
ims,ime, jms,jme, kms,kme, &
i_start(ij),i_end(ij), j_start(ij),j_end(ij), kts,kte )
I added the variables CHS30 and T30 to the subroutine SFCDIAGS and the subroutine SFCDIAGS correctly compiled. But I get the above errors when I try to compile with CHS30 and T30 in the two above lines of code in the surface driver module.