Changeset 1128


Ignore:
Timestamp:
Dec 19, 2013, 10:12:49 AM (11 years ago)
Author:
aslmd
Message:

MESOSCALE. corrected an interp bug on surface roughness. added a security check in module_lmd_driver.

Location:
trunk/MESOSCALE/LMD_MM_MARS/SRC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MESOSCALE/LMD_MM_MARS/SRC/WPS/wps_mars/geogrid/GEOGRID.TBL.ARW_Mars

    r986 r1128  
    125125        priority = 1
    126126        dest_type = continuous
    127         ## au-dessus de 4.... probleme de valeurs negatives...
    128         smooth_option = 1-2-1; smooth_passes=4
     127        smooth_option = 1-2-1; smooth_passes=10
    129128        interp_option =         32ppd:sixteen_pt+four_pt+average_4pt+average_16pt+search
    130129        rel_path=               32ppd:rough_GCM/
     
    133132        interp_option =         64ppd:sixteen_pt+four_pt+average_4pt+average_16pt+search
    134133        rel_path=               64ppd:rough_GCM/
    135         interp_option =         64ppd_noHRti:sixteen_pt+four_pt+average_4pt+average_16pt+search
     134        interp_option =         64ppd_noHRti:nearest_neighbor
    136135        rel_path=               64ppd_noHRti:rough_GCM/
    137136        interp_option =         custom:sixteen_pt+four_pt+average_4pt+average_16pt+search
  • trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/phys/module_lmd_driver.F

    r1038 r1128  
    981981   z0_val = 0.01
    982982ENDIF
     983!!!! ADDITIONAL SECURITY. INTERP+SMOOTH IN GEOGRID MIGHT YIELD NEGATIVE Z0 !!!
     984IF (z0_val < 0.) THEN
     985   PRINT *, 'WELL, z0 is NEGATIVE, this is impossible. better stop here.'
     986   PRINT *, 'advice --> correct interpolation / smoothing of z0 in WPS'
     987   PRINT *, '           -- or check the constant value set in namelist.input'
     988   STOP
     989ENDIF
    983990#endif
    984991
Note: See TracChangeset for help on using the changeset viewer.