1 subroutine da_get_print_lvl(prs,ipr)
3 !-----------------------------------------------------------------------
5 !-----------------------------------------------------------------------
9 real, intent(in) :: prs
10 integer, intent(out) :: ipr
14 if (trace_use) call da_trace_entry("da_get_print_lvl")
17 ! Avoid the pressure is unavailable (ex. -8888.88) Shu-Ya Chen (Dec. 2011)
18 if( (prs*.01 .ge. pptop(k-1)) .or. (prs < 0.)) exit
22 if (trace_use) call da_trace_exit("da_get_print_lvl")
24 end subroutine da_get_print_lvl