WRF學習筆記

来源:互联网 发布:安卓陀螺仪软件 编辑:程序博客网 时间:2024/05/19 18:10

安裝好WRF後,首先去WPS中修改namelist.wps文件

文件中各參數的意思如下:

----in share----

wrf_core可以選擇ARW或NMM

max_dom表示domain的數量(包括parent domain)

start_date各domain的開始時間

end_date各domain的結束時間

interval_seconds氣象輸入文件的時間間隔

io_form_geogrid保存的文件格式1 for binary; 2 for NetCDF; 3 for GRIB1

opt_output_from_geogrid_path輸出文件的位置

----in geogrid提取地形----

parent_id各區域的父區域的號碼,最外層的parent_id是1

parent_grid_ratio與父區域的比例,最外層的parent_grid_ratio是1

i_parent_start子區域在父區域中X方向的開始位置(左下角的X位置),最外層是1

j_parent_start子區域在父區域中Y方向的開始位置(左下角的Y位置),最外層是1

e_we各區域X方向的終止格點值

e_sn各區域Y方向的終止格點值

geog_data_res大概是插值的地表數據的分辨率吧

dx和dy一個格點對應真實的距離, 'polar', 'lambert', 'mercator'投影 時單位是米,  'lat-lon'投影是度

map_proj投影方式'lambert', 'polar', 'mercator', 'lat-lon'

ref_lat和ref_lon中心經緯度

truelat1和truelat2和stand_lon投影的各種參數

geo_data_path代表rel_path 的位置

----in ungrid解碼數據----

out_format output的格式'WPS', 'SI', 'MM5'

prefix輸出的intermediate file的前綴

----in metgrid插值----

fg_name ungribbed data files的前綴

io_from_metgrid metgrid輸出文件的格式,1 for binary; 2 for NetCDF; 3 for GRIB1

opt_output_from_metgrid_path輸出文件的位置

詳情可看http://www2.mmm.ucar.edu/wrf/users/docs/user_guide_V3.8/users_guide_chap3.htm#_Description_of_the_1



WRF中修改namelist.input文件

詳情:http://www2.mmm.ucar.edu/wrf/users/docs/user_guide_V3.8/users_guide_chap5.htm#examples
----time control----
run_days運行的天數
run_hours運行的時數(比如,要運行36小時,可以設day=1 hour=12,或者hour=36)
run_minutes運行的分鐘數
run_seconds運行的秒數
start(end)_year(month,day,hour,minute,second)開始(結束)的年(月日時分秒)
interval_seconds輸入的真實數據的時間間隔(比如6小時的就是21600)
input_from_file嵌套區域是否有輸入文件(除了最外層)whether the nested run will have input files for domains other than domain 1
history_interval輸出文件的時間間隔,單位為分鐘
frames_per_outfile:number of output times bulked into each history file; used to split output files into smaller pieces
restart:whether this run is a restart
restart_interval:restart output file interval in minutes
io_form_history輸出文件格式,2 for netCDF、102 for 分割的NetCDF、1 for 二進制格式、4 for PHDF5、5 for GRIB1、10 for GRIB2、11 for parallel netCDF
io_form_restart restart的輸出文件格式,2 for netCDF、102 for 分割的NetCDF
io_form_input輸入文件格式,2 for netCDF、102 for 分割的NetCDF
io_form_boundary wrfbdy file的格式(2、4、5、10、11)
debug_level:giving this a larger value (50, 100, 200, etc.) increases the debugging print-outs when running WRF
----domain----
time_step積分的時間間隔,建議6*dx in km
time_step_fract_num積分的時間間隔分數部分的分子
time_step_fract_den積分的時間間隔分數部分的分母
max_dom區域數
i_parent_start子區域在父區域中X方向的開始位置(左下角的X位置),最外層是1
j_parent_start子區域在父區域中Y方向的開始位置(左下角的Y位置),最外層是1
e_we各區域X方向的終止格點值
e_sn各區域Y方向的終止格點值
e_vert各區域Z方向的終止格點值
p_top_requested頂層的壓強值(Pa)
num_metgrid_levels WPS輸出結果中的垂直層數,對某一個 met_em* 文件ncdump -h 去找出這個數
num_metgrid_soil_levels WPS輸出結果中的土壤層數,對某一個 met_em* 文件ncdump -h 去找出這個數
dx和dy一個格點對應真實的距離,單位米
grid_id網格標識符
parent_id各區域的父區域的ID
parent_grid_ratio與父區域的比例,for real data cases the ratio must be odd; for ideal data cases, the ratio can be even if feedback is set to 0
feedback 0 for no feedback,1 for 從子區域反鐀到父區域
max_ts_locs:不知道?maximum number of time series locations?默認為5
----physical----
mp_physics微物理方案,各數值含義見官網
ra_lw_physics長波輻射方案,各數值含義見官網
ra_sw_physics短波輻射方案,各數值含義見官網
radt:minutes between radiation physics calls.  Recommended 1 minute per km of dx (e.g. 10 for 10 km grid); use the same value for all nests
sf_sfclay_physics:surface layer option,各數值含義見官網
sf_surface_physics :land-surface option,各數值含義見官網
bl_pbl_physics邊界層方案,各數值含義見官網
bldt:minutes between boundary-layer physics calls (0=call every time step)
cu_physics積雲參數化方案,各數值含義見官網
cudt:minutes between cumulus physics calls; should be set to 0 when using all cu_physics except Kain-Fritsch (0 = call every time step)
isfflx:heat and moisture fluxes from the surface for real-data cases and when a PBL is used ,各數值含義見官網
ifsnow:snow-cover effects (only works for sf_surface_physics=1),各數值含義見官網
icloud:cloud effect to the optical depth in radiation ,各數值含義見官網
surface_input_source:where landuse and soil category data come from,各數值含義見官網
num_soil_layers:number of soil layers in land surface model ,各數值含義見官網
sf_urban_physics:activate urban canopy model (in Noah LSM only),各數值含義見官網
----dynamics----
w_damping垂直速度阻尼,0無,1有
diff_opt湍流混合選項,0、1、2,各數值含義見官網
km_opt eddy選項,1、2、3、4,各數值含義見官網
diff_6th_opt:6th-order numerical diffusion,0、1、2,各數值含義見官網
diff_6th_factor:6th-order numerical diffusion non-dimensional rate (max value 1.0 corresponds to complete removal of 2dx wave in one timestep)
base_temp:base state temperature
damp_opt:upper-level damping flag,0、1、2、3,各數值含義見官網
zdamp:damping depth (m) from model top
dampcoef:damping coefficient (see damp_opt)
khdif:horizontal diffusion constant(m2/s)
kvdif :vertical diffusion constant (m2/s)
non-hydrostatic:running the model in non-hydrostatic mode
moist_adv_opt:advection options for moisture,0、1、2、3、4,各數值含義見官網
scalar_adv_opt:advection options for scalars,0、1、2、3、4,各數值含義見官網
----bdy_control----
spec_bdy_width:total number of rows for specified boundary value nudging (real only)
spec_zone:number of points in specified zone (specified b.c. option; real only)
relax_zone:number of points in relaxation zone (spec b.c. option; real only)
specified:specified boundary condition; only can be used for domain 1 (default is .false.; real only)
nested:nested boundary conditions (must be set to .true for nests)
----namelist_quilt----
namelist_quilt:of processors used for IO quilting per IO group
nio_groups:default; may be set to higher value for nesting IO or history and restart IO


用ncl把fnl*.grib轉成nc後,各變量代表:

TMP溫度
POT位溫
DPT露點溫度
APTMP Apparent Temperature
SPFH比濕
RH相對濕度
PWAT Precipitable water
SNOD雪深
WEASD Water equivalent of accumulated snow depth
CLWMR雲混合比
CPOFP Percent frozen precipitation
UGRD風速U
VGRD風速V
VVEL垂直速度
ABSV絕對渦度
GUST Wind speed(gust)
VWSH垂直速度切變
USTM U-component storm motion
VSTM V-component storm motion
VRATE Ventilation rate
PRES壓強
PRMSL Pressure reduced to MSL(mean sea level)
ICAHT ICAO標準大氣參考高度
HGT位勢高度
MSLET MSLP(ETA model reduction)
5WAVH 5-wave位勢高度
HPBL行星邊界層高度
PLPL氣團抬升的高度所對應的壓強
CWAT雲水
SUNSD日照時數
CAPE對流有效勢能
CIN對流抑制能
HLCY Storm relative helicity
LFTX Surface lifted index
4LFTX Best (4 layer) lifted index
TOZNE臭氧總量
O3MR臭氧混合比
LAND陸地1還是海洋0
TSOIL土壤溫度
SOILW Volumetric soil moisture content
WILT Wilting point凋萎點
FLDCP Field capacity
HINDEX Haines index
ICEC Ice cover
lv各種一維高度
lat緯度
lon經度


0 0
原创粉丝点击