Lịch sử TRIP2.PrepareTheInputRunoffData
Ẩn các thay đổi nhỏ - Hiển thị các thay đổi trong cách định dạng chữ
Mult_B0_19951231.nc Mult_B0_19951231.nc) is a surface runoff input file I had created based on the [[http://www.iges.org/gswp2/ |GSWP-2 runoff product.
Mult_B0_19951231.nc is a surface runoff input file I had created based on the GSWP-2 runoff product.
Mult_B0_19951231.nc (Attach:Mult_B0_19951231.nc Δ) is a surface runoff input file I had created based on the GSWP-2 runoff product.
Mult_B0_19951231.nc Mult_B0_19951231.nc) is a surface runoff input file I had created based on the [[http://www.iges.org/gswp2/ |GSWP-2 runoff product.
- Notice
- What is TRIP2?
- Download TRIP2
- Install TRIP2
- Prepare the input runoff data
- Prepare the maps required by TRIP2
- Edit run script
- Launch simulation
The input runoff fields contain two variables: surface runoff [mm/day] and sub-surface runoff [mm/day].
The input runoff data should be prepared in netCDF format. The current configuration of TRIP2 is for daily input runoff. If you want to run simulations for other time resolutions such as: monthly, 6-hourly, hourly, etc., please modify >TRIP2/bin/MAIN_day.f by yourself to meet your requirements.
The input runoff file name can be like this: FILE_YYYYMMDD.nc where YYYY is YEAR, MM is MONTH, DD is DAY.
Exemple:
Mult_B0_19951231.nc (Attach:Mult_B0_19951231.nc Δ) is a surface runoff input file I had created based on the GSWP-2 runoff product.
Use the ncdump comment, we have:
(:table align='left' width=90% cellpadding=5 cellspacing=0 bgcolor=#ffffcc :) (:cellnr:)
- [thanh@shui sfcroff]$ ncdump -h Mult_B0_19951231.nc
lon:valid_min = -180.f ;
lon:valid_max = 180.f ;
lon:long_name = "Longitude" ;
lat:valid_min = -90.f ;
lat:valid_max = 90.f ;
lat:long_name = "Latitude" ;
time:long_name = "Time axis" ;
(:tableend:)
Note: From the output of the "ncdump -h" command, we know that our input runoff file has a longitude dimension of 360 and a latitude dimension of 180. The variable sfcroff has 3 dimensions: time, lat, lon, where time coordinate has only one step. The missing value is -9999f. (:table align='left' width=90% cellpadding=5 cellspacing=0 bgcolor=#ffffcc :) (:cellnr:)
- [thanh@shui sfcroff]$ ncdump -v lon Mult_B0_19951231.nc
lat = 180 ;
time = UNLIMITED ; // (1 currently)
lon:valid_min = -180.f ;
lon:valid_max = 180.f ;
lon:long_name = "Longitude" ;
lat:valid_min = -90.f ;
lat:valid_max = 90.f ;
lat:long_name = "Latitude" ;
time:long_name = "Time axis" ;
(:tableend:)
Note: The command "ncdump -v lon FILENAME.nc" outputs the longitude values. We can see that our runoff file has 1 degree resolution in longitude. The longitude values were saved from small to big (-179.5 to 179.5). When you prepare your input runoff data, you should also keep the "small to big" order for the longitude dimension.
(:table align='left' width=90% cellpadding=5 cellspacing=0 bgcolor=#ffffcc :) (:cellnr:)
- [thanh@shui sfcroff]$ ncdump -v lat Mult_B0_19951231.nc
lat = 180 ;
time = UNLIMITED ; // (1 currently)
lon:valid_min = -180.f ;
lon:valid_max = 180.f ;
lon:long_name = "Longitude" ;
lat:valid_min = -90.f ;
lat:valid_max = 90.f ;
lat:long_name = "Latitude" ;
time:long_name = "Time axis" ;
(:tableend:)
Note: The command "ncdump -v lat FILENAME.nc" outputs the latitude values. We can see that our runoff file has 1 degree resolution in latitude. The latitude values were saved from big to small (89.5 to -89.5). When you prepare your input runoff data, you should also keep the "big to small" order for the latitude dimension.