|
5.1. When I have a LR
grid of 6km resolution and a HR grid of 3 km resolution, what is
recommended for RGauss value ? for the bubble influence radius?
You have to make your
own test Usually we start with a RGAUSS radius around 1.5 time the
resolution of the LR-grid. Then, we carefully check the resulting
background field and we adjust RGAUSS not to over-smooth the fields
and not to add any unphysical length scales that would be associated
to the interpolation The influence bubble is related to the number
of LR-points associated to the interpolation of one HR-point: to
start with, choose its value so that 5 to 10 points be concerned
...
5.2. Which is the physical
criterion to fix the bubble radius value?
See previous question.
5.3. I want to interpolate
a LR variable on an other variable in the HR field. How can I do
that ?
You can choose the
relation between variables in the NAMELIST_LR and NAMELIST_HR namelists.
5.4. Can we use directly
the LR-barotropic function?
All the related pre-
and post-treatments are ready to be used. The barotropic function
can for instance be first interpolated over the HR-grid before transports
are recomputed over this grid We however think the best solution
remains the interpolation of the transports.
5.5. I ran VIFOP and
generated a restart file then I changed the number or type of variables
in the namelist. Can I use the restart file now ?
No, you have to re-run
the interpolation as soon as you change the namelist file.
5.6. 2D variable (sea
surf elev) is not correctly interpolated (it's everywhere = 0) and
the 3D variable (tem) is interpolated, but it is almost constant
on surface and looks oversmoothed in general, with respect to the
LR field. What's going on?
It seems that your
namelist.lr and namelist.hr files are not written the good way.
There might be a mistake in identifying the variables to read, their
type and the correspondance between the LR and HR variables. Take
a look to your namelist.lr and hr files. Control the good consistency
between the number of 2D (3D) variables which is NZ2D_LR (NZ3D_LR)
and the number of lines associated to T2D_LR (T3D_LR). They must
be equal. Do the same in namelist.hr. Also control the number of
line of HR2LR_2D and HR2LR_3D, they have to be consistent with the
number of 2D and 3D variables.
Example of interpolation of 1 2D variable of type 1 (SSE) and 3
3D variables of types 1, 2 and 3 respectively (T,U,V).
The NAMELIST.LR must be in that case :
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This NAMELIST contains usefull definitions for LR variables.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1 FORMAT_LR ...
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ASCII files
(FORMAT_LR = 1)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1 NZV2D_LR Number of 2D variables (must be <= NMV2D_LR)
3 NZV3D_LR Number of 3D variables (must be <= NMV3D_LR)
1 T2D_LR Type of 2D variable 1
1 T3D_LR Type of 3D variable 1
2 Type of 3D variable 2
3 Type of 3D variable 3
0 NPSI_LR N of 2D LR variable for barotropic function.
1 NSSE_LR N of 2D LR variable for surface elevation anomaly.
2 NVBAR_LR(1) N of 2D LR variable for mean velocity component Um.
3 NVBAR_LR(2) N of 2D LR variable for mean velocity component Vm.
1 NTEM_LR N of 3D LR variable for temperature.
2 NSAL_LR N of 3D LR variable for salinity.
3 NVEL_LR(1) N of 3D LR variable for velocity component U.
4 NVEL_LR(2) N of 3D LR variable for velocity component V.
1 IFL_VEL Type of velocity: 1-> total, 2-> baroclinic.
The NAMELIST.HR must
be in that case.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
This NAMELIST contains informations about the hr variables%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1 FORMAT_HR Format of HR-grid files: 1: Ascii
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
ASCII files
(FORMAT_HR = 1)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1 NZV2D_HR Number of 2D variables to be interpolated
3 NZV3D_HR Number of 3D variables to be interpolated
1 T2D_HR Type of 2D variable 1
1 T3D_HR Type of 3D variable 1
2 Type of 3D variable 2
3 Type of 3D variable 3
0 NPSI_HR Rank of 2D HR variable for barotropic function.
1 NSSE_HR Rank of 2D HR variable for surface elevation anomaly.
2 NVBAR_HR(1) Rank of 2D HR variable for mean velocity component
Um.
3 NVBAR_HR(2) Rank of 2D HR variable for mean velocity component
Vm.
1 NTEM_HR Rank of 3D HR variable for temperature.
2 NSAL_HR Rank of 3D HR variable for salinity.
3 NVEL_HR(1) Rank of 3D HR variable for velocity component U.
4 NVEL_HR(2) Rank of 3D HR variable for velocity component V.
1 HR2LR_2D LR variable to be interpolated on HR variable 1
1 HR2LR_3D LR variable to be interpolated on HR variable 1
2 LR variable to be interpolated on HR variable 2
3 LR variable to be interpolated on HR variable 3
Top
|