|  | 
| subroutine | atmo_init_imbrication () | 
|  | Map Fortran to C variables.  More... 
 | 
|  | 
| subroutine | allocate_all () | 
|  | Allocate variables adapted to the number of files and time step to be considered.  More... 
 | 
|  | 
| subroutine | finalize_imbrication () | 
|  | Final step for deallocation.  More... 
 | 
|  | 
| subroutine | interpolate_all_profiles (the_time) | 
|  | Time interpolation of all profiles -.  More... 
 | 
|  | 
| subroutine | dump_interpolated_profiles | 
|  | Print the interpolated profiles for checking purposes.  More... 
 | 
|  | 
| integer function | yo2j (year, ordinal) | 
|  | Converts a (year,ordinal) date to julian calendar date for calculating time shifts.  More... 
 | 
|  | 
| subroutine | read_files_list (a_file, the_list) | 
|  | Reads a file having in each significative line a file name it returns then as 'the_list' the list of lines read a line is significative if it's first char is not / or # or ! The following 3 lines give an example from which one must remove the first two characters.  More... 
 | 
|  | 
| subroutine | find_next_line (unilog, current_line, meteo_file, l_iostat) | 
|  | Find next validated line.  More... 
 | 
|  | 
| subroutine | read_meteo_file (meteo_file) | 
|  | Reads a meteo_file for code_saturne Atmospheric Physics option.  More... 
 | 
|  | 
| subroutine | check_chronologies | 
|  | Checks the time variables to ensure the chronology.  More... 
 | 
|  | 
| subroutine | check_positions | 
|  | Check that the profiles position is the same over time.  More... 
 | 
|  | 
| subroutine | check_altitudes | 
|  | Check that the profiles vertical grids heights are strictly increasing.  More... 
 | 
|  | 
| subroutine | hydrostatic_pressure | 
|  | Compute the hydrostastic pressure by Laplace integration.  More... 
 | 
|  | 
| subroutine | potential_temperature_and_density | 
|  | Computes the potential_temperature_and_density profiles.  More... 
 | 
|  | 
| subroutine | get_index (the_array, the_value, lower, upper) | 
|  | Search for the position of a value in an array, assuming that the array is sorted in a strictly increasing order.  More... 
 | 
|  | 
| subroutine | time_interpolation (the_time, the_times, the_profiles, interpolated_profile) | 
|  | Interpolates a "profile" at a given time. Given a series of profiles varying in time you get the profile interpolated from them at the given time.  More... 
 | 
|  | 
| subroutine | altitude_interpolation (the_altitude, the_altitudes, the_profile, interpolated_value) | 
|  | interpolates in a profile at a given altitude  More... 
 | 
|  | 
| subroutine | red_tape | 
|  | Compute radius of influence.  More... 
 | 
|  | 
| subroutine | bounds (string, length, b, e) | 
|  | Identification of the first and last non white character of a string.  More... 
 | 
|  | 
| subroutine | activate_imbrication | 
|  | Prepare data for imbrication by reading meteo files.  More... 
 | 
|  | 
| subroutine | summon_cressman (the_time) | 
|  | Prepare for the cressman interpolation of the variables.  More... 
 | 
|  | 
|  | 
| logical(c_bool), pointer | imbrication_flag | 
|  | activation flag  More... 
 | 
|  | 
| logical(c_bool), pointer, save | imbrication_verbose | 
|  | 
| logical(c_bool), pointer | cressman_u | 
|  | Flags for activating the cressman interpolation for the boundary conditions.  More... 
 | 
|  | 
| logical(c_bool), pointer | cressman_v | 
|  | 
| logical(c_bool), pointer | cressman_tke | 
|  | 
| logical(c_bool), pointer | cressman_eps | 
|  | 
| logical(c_bool), pointer | cressman_theta | 
|  | 
| logical(c_bool), pointer | cressman_qw | 
|  | 
| logical(c_bool), pointer | cressman_nc | 
|  | 
| real(c_double), pointer | vertical_influence_radius | 
|  | numerical parameters for the cressman interpolation formulas  More... 
 | 
|  | 
| real(c_double), pointer | horizontal_influence_radius | 
|  | 
| integer | line_len | 
|  | Parameter for "meteo" files.  More... 
 | 
|  | 
| character(line_len) | imbrication_files_list | 
|  | 
| character(line_len), dimension(:), allocatable | imbrication_files | 
|  | 
| integer | number_of_files | 
|  | 
| character *(3) | skip_chars | 
|  | 
| integer | thermal_profile_dim | 
|  | Profile dimension variable.  More... 
 | 
|  | 
| integer | dynamical_profile_dim | 
|  | 
| integer | sections_per_file | 
|  | Time sections per files.  More... 
 | 
|  | 
| integer, dimension(:,:), allocatable | years | 
|  | read data from "meteo" files  More... 
 | 
|  | 
| integer, dimension(:,:), allocatable | ordinals | 
|  | 
| integer, dimension(:,:), allocatable | hours | 
|  | 
| integer, dimension(:,:), allocatable | minutes | 
|  | 
| double precision, dimension(:,:), allocatable | seconds | 
|  | 
| double precision, dimension(:,:), allocatable | xpos | 
|  | Positions.  More... 
 | 
|  | 
| double precision, dimension(:,:), allocatable | ypos | 
|  | 
| double precision, dimension(:,:), allocatable | ground_pressure | 
|  | 
| double precision, dimension(:,:,:), allocatable | zt | 
|  | Vertical grid for temperature and humidity variables.  More... 
 | 
|  | 
| double precision, dimension(:,:,:), allocatable | tempc | 
|  | 
| double precision, dimension(:,:,:), allocatable | qw | 
|  | 
| double precision, dimension(:,:,:), allocatable | nc | 
|  | 
| double precision, dimension(:,:,:), allocatable | zd | 
|  | Vertical grid for wind variables.  More... 
 | 
|  | 
| double precision, dimension(:,:,:), allocatable | u | 
|  | 
| double precision, dimension(:,:,:), allocatable | v | 
|  | 
| double precision, dimension(:,:,:), allocatable | tke | 
|  | 
| double precision, dimension(:,:,:), allocatable | eps | 
|  | 
| double precision, dimension(:,:), allocatable, target | times | 
|  | derived data  More... 
 | 
|  | 
| double precision, dimension(:,:,:), allocatable | pressure | 
|  | 
| double precision, dimension(:,:,:), allocatable | theta | 
|  | 
| double precision, dimension(:,:,:), allocatable | density | 
|  | 
| double precision, dimension(:,:), allocatable | ti_zt | 
|  | time interpolated profiles  More... 
 | 
|  | 
| double precision, dimension(:,:), allocatable | ti_tempc | 
|  | 
| double precision, dimension(:,:), allocatable | ti_qw | 
|  | 
| double precision, dimension(:,:), allocatable | ti_nc | 
|  | 
| double precision, dimension(:,:), allocatable | ti_zd | 
|  | 
| double precision, dimension(:,:), allocatable | ti_u | 
|  | 
| double precision, dimension(:,:), allocatable | ti_v | 
|  | 
| double precision, dimension(:,:), allocatable | ti_tke | 
|  | 
| double precision, dimension(:,:), allocatable | ti_eps | 
|  | 
| double precision, dimension(:,:), allocatable | ti_pressure | 
|  | 
| double precision, dimension(:,:), allocatable | ti_theta | 
|  | 
| double precision, dimension(:,:), allocatable | ti_density | 
|  | 
| double precision, dimension(:,:,:), allocatable | coordinates_th | 
|  | additional variables  More... 
 | 
|  | 
| double precision, dimension(:,:,:), allocatable | influence_param_th | 
|  | 
| double precision, dimension(:,:,:), allocatable | coordinates_dyn | 
|  | 
| double precision, dimension(:,:,:), allocatable | influence_param_dyn | 
|  | 
| integer(c_int), pointer | id_u | 
|  | 
| integer(c_int), pointer | id_v | 
|  | 
| integer(c_int), pointer | id_qw | 
|  | 
| integer(c_int), pointer | id_nc | 
|  | 
| integer(c_int), pointer | id_tke | 
|  | 
| integer(c_int), pointer | id_eps | 
|  | 
| integer(c_int), pointer | id_theta | 
|  | 
| double precision, dimension(:), pointer | times_sequence =>null() | 
|  | 1D array of times at which profiles are given  More... 
 | 
|  |