Hi,
I would like to produce forecast for a little domain. The domain is defined as follow:
Every thing works fine but the output data produced seems to be inaccurate. If i have a look on the HGT variable according to the following NCL script:
Which give me the following result
Thanks in advance
I would like to produce forecast for a little domain. The domain is defined as follow:
Code:
Namelist.wps
&share
wrf_core = 'ARW',
max_dom = 2,
start_date = '2020-01-31_00:00:00','2020-01-31_00:00:00',
end_date = '2020-01-31_06:00:00','2020-01-31_06:00:00',
interval_seconds = 10800,
io_form_geogrid = 2,
opt_output_from_geogrid_path = '/home/meteo/WPS/',
debug_level = 0,
/
&geogrid
parent_id = 1,1,
parent_grid_ratio = 1,5,
i_parent_start = 1,26,
j_parent_start = 1,22,
e_we = 65,66,
e_sn = 55,56,
geog_data_res = '5m','30s',
dx = 5600,
dy = 5600,
map_proj = 'lambert',
ref_lat = 45.609,
ref_lon = 6.747,
truelat1 = 45.609,
truelat2 = 45.609,
stand_lon = 6.747,
geog_data_path = '/home/meteo/WPS_GEOG',
opt_geogrid_tbl_path = '/home/meteo/WPS/',
Every thing works fine but the output data produced seems to be inaccurate. If i have a look on the HGT variable according to the following NCL script:
Code:
begin
; Chargement du fichier de sortie WRF
a = addfile("wrfout_d02.nc","r") ; Open a file
time = wrf_user_getvar(a,"times",-1)
ntime = dimsizes(time)
do it = 0,ntime-1,1
date = time(it)
wlat=a->XLAT(0,:,:)
wlon=a->XLONG(0,:,:)
print("date " +date)
print("wlat " + min(wlat) + " ; " + max(wlat))
print("wlon " + min(wlon) + " ; " + max(wlon))
olat=45.609
olon=6.747
ref=wrf_latlon_to_ij(wlat,wlon,olat,olon)
print("Grille ref " + ref)
lonlat=wrf_user_ij_to_ll(a,48.,43., opt)
print("Lon/Lat " + lonlat)
h = wrf_user_getvar(a,"HGT", it)
hbsm = h(43,48)
print("altitude " + hbsm)
end do
end
Unfortunatly the true elevation is 1120m . Could you tell me what is wrong and how solve this problemCopyright (C) 1995-2018 - All Rights Reserved
University Corporation for Atmospheric Research
NCAR Command Language Version 6.5.0
The use of this software is governed by a License Agreement.
See http://www.ncl.ucar.edu/ for more details.
(0) date 2020-01-31_06:00:01
(0) wlat 45.1845 ; 45.7299
(0) wlon 6.06894 ; 6.99255
(0) Grille ref 42
(1) Grille ref 47
(0) Lon/Lat 6.74702
(1) Lon/Lat 45.609
(0) altitude 983.395
Thanks in advance