Opened 6 years ago

Closed 5 years ago

#549 closed task (fixed)

Do not extrapolate above model top [?]

Reported by: Ian Culverwell Owned by: Ian Culverwell
Priority: normal Milestone: ROPP9.1 carry over
Component: ropp_fm Version: 9.0
Keywords: Cc:

Description

Change history (2)

comment:1 by Ian Culverwell, 6 years ago

Component: ROPP(all)ropp_fm

comment:2 by Ian Culverwell, 5 years ago

Resolution: fixed
Status: newclosed

OK. I updated ropp_fm/common/ropp_fm.f90 to reflect the changed argument list, for completeness.

What's the point of

  !--- above model top
  DO i=1,SIZE(y%geop)
    IF (y%geop(i) > x%geop(x%n_lev)) THEN
      tdry(i) = gtop*Hscale/R_dry
    ENDIF
  ENDDO

when it's immediately followed by

  DO i=1,SIZE(y%geop)
    IF ( (y%geop(i) < x%geop(1)) .OR. (y%geop(i) > x%geop(x%n_lev)) ) THEN
      tdry(i) = ropp_MDFV
    ENDIF
  ENDDO

?

No impact on testing - presumably the refractivity altitudes in our test files are always below the model top. Commit change at r5952, and close ticket.

Note: See TracTickets for help on using tickets.