Changes between Version 1 and Version 2 of Ticket #242, comment 6


Ignore:
Timestamp:
Mar 29, 2023, 4:20:13 PM (13 months ago)
Author:
pesei
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #242, comment 6

    v1 v2  
    11Hey Harish,
     2
    23I managed to understand the problem. Its has to do with the WRF input files. Either:
     4`1 - The surface pressure < pressure(zlevel=1)`
     5or
     6`2 - pressure(zlevel=i)<pressure(zlevel=i+1)`
    37
    4 1 - The surface pressure < pressure(zlevel=1)
    5 or
    6 2 - pressure(zlevel=i)<pressure(zlevel=i+1)
     8The relevant code is in `richardson.f90` (where the error is found) and `readwind.f90`, readwind_nests.f90 (where the parameters are read). If its case 1, then I think u can solve it by uncommenting the following lines in `readwind.f90, readwind_nests.f90`:
    79
    8 The relevant code is in richardson.f90 (where the error is found) and readwind.f90, readwind_nests.f90 (where the parameters are read). If its case 1, then I think u can solve it by uncommenting the following lines in readwind.f90, readwind_nests.f90:
    910
     11{{{#!fortran
    1012! for the mexico city grid 3 simulation, the surface and
    1113!   level 1 pressures are not as consistent as one would like,
     
    2527     end do
    2628
     29}}}
    2730
    28 If its case 2 then you could try a hacky solution in richardson.f90 by forcing z>0. e.g.:
    2931
     32If its case 2 then you could try a hacky solution in `richardson.f90` by forcing `z>0`. e.g.:
     33
     34
     35{{{#!fortran
    3036if (z<=0) z = 80
     37}}}
     38
    3139
    3240
hosted by ZAMG