As i can see from above, we can do the selection as follows according to what we want:35. What are the 'steps' for the surface daily fields in ERA-Interim?
The ERA-Interim data server surface archive has a mixture of analysis fields, forecast fields and fields available from both the analysis and forecast. The other daily archives have only analysis data.
If step 0 is chosen, then only analysed fields, which are produced for 0000, 0600, 1200 and 1800 UTC, are available.
If step 3, 6, 9 or 12 is selected then only forecast fields which are produced from forecasts beginning at 0000 and 1200 UTC, are available.
1. If we need just 6-hourly products, shall we? No!!! I wanted to combine the 6hrs annlysis with forcast on some steps, but fell down. I selected step 0 and all four times to get data on those time points, i.e., 0,6,12,18 o'clock, and i want to choose time 0 and 12 and step 6 and 12. The step 12 (v12 hereafter, so other steps) was accumulated for 12 hours from time 0, so v12/(12*3600) should be centered on 6 o'clock (equivalence to time 6 with step 0) and same for time 18. But how to get for time 0 and 12? For the accumulations are from 0 and 12 respectively, no fields cover them.
2. If we want 3-hourly data set, we have this provided by Hernan (viewtopic.php?f=30&t=3003).
Code: Select all
A3 = V3 / (3*3600)
A6 = (V6 - V3) / (3*3600)
A9 = (V9 - V6) / (3*3600)
A12 = (V12 - V9) / (3*3600)
Code: Select all
3:00 v3 / (3*3600)
6:00 (v6-v3) / 3*3600
..
12:00 (v12-v9)/ 3*3600
..
18:00 v(18-v15)/ 3*3600
..
24:00 v(24-v21)/ 3*3600
Code: Select all
frc_time = frc_time - 1.5/24; % Center forcing time on the
% accumulation interval
Code: Select all
% If the scale F(n).scale is set to negative, the input ECMWF data is a
% cummulative integral in forecast cycle from hour zero.
% For steps at 6, 9 and 12 hours we must separate last 3 hours of
% integration from previous accumulation.
% At 3 hour step don't change anything
if (F(n).scale < 0)
step = rem(frc_time,0.5)*24;
if step == 3
fieldfinal = field;
else
fieldfinal = field - field_previous; % At other steps subtract
end % the previous accumulation
Code: Select all
else
fieldfinal = field - field_previous; % At other steps subtract
end % the previous accumulation
From John's statement in this post viewtopic.php?f=19&t=2705,
With cycles 00:00:00 and steps 6 and 12, we can get fields that accumulated from hours 0 to 6 and from hours 0 to 12, but where the data integral from hours 12 to 18 and from hours 12 to 24 Is that a omitted statement or is that tureIn your case, if you select cycles 00:00:00 and 12:00:00 download only steps 6 and 12, then you will have data that are the integral from hours 0 to 6 and from hours 0 to 12.