- Sep 09, 2024
-
-
GUEZ Lionel authored
-
GUEZ Lionel authored
In program `examine_eddy`.
-
GUEZ Lionel authored
-
GUEZ Lionel authored
-
GUEZ Lionel authored
Change order of command line arguments of program `examine_eddy`. Preparing to allow a variable number of NetCDF file arguments.
-
GUEZ Lionel authored
-
GUEZ Lionel authored
Do not always specify uv-file when it is the same as ssh-file.
-
GUEZ Lionel authored
-
GUEZ Lionel authored
-
GUEZ Lionel authored
Instead of reading command line arguments in procedure `input_ssh`, read them outside and pass file names to `input_ssh`. This allows `input_ssh` to be called by programs with different number of command line arguments, in different positions. Preparing to make the specification of uv-file optional.
-
Reverting part of commit c4410682. We want to extend the program to a non-uniform or non longitude-latitude grid. Checking equality of whole longitude and latitude arrays, one or two-dimensional, seems a little bit too much.
-
- Sep 03, 2024
-
-
Lionel GUEZ authored
-
- Aug 23, 2024
-
-
Lionel GUEZ authored
-
Lionel GUEZ authored
Useless since at least commit bff41cdd.
-
Lionel GUEZ authored
This was not useful since we do not need an array of snapshots in `inst_eddies`. It is clearer without the integration in a snapshot variable. The integration in a snapshot variable came from initial commit, when there was only one program for detection of instantaneous eddies and overlapping.
-
- Jul 19, 2024
-
-
Lionel GUEZ authored
Replace argument `s` of `write_snapshot` by its component `list`.
-
Lionel GUEZ authored
Replace argument `s` of `set_all_extr` by its components. The idea is to remove the structure `snapshot` from program `inst_edddies`.
-
Lionel GUEZ authored
-
- Jul 15, 2024
-
-
Lionel GUEZ authored
We are circumventing a bug of the Intel Fortran compiler. This was tested with both ifx `2023.1.0` and ifort `2021.9.0`. The bug occurs on return from procedure `set_max_speed`: `free(): double free detected in tcache 2` and crashes execution. The bug is revealed in commit cc13fd5b. The GNU compiler does not have this bug. To circumvent the Intel compiler bug, instead of an ssh component of `cont_list_proj`, we have to use a separate array: `cont_list_ssh`. This is maybe for the best because the component `area` of `cont_list_proj` was not defined.
-
- Jul 10, 2024
-
-
GUEZ Lionel authored
-
GUEZ Lionel authored
-
GUEZ Lionel authored
-
GUEZ Lionel authored
`n_points` can be deduced from previous print, and `n_extr` has been printed too.
-
GUEZ Lionel authored
-
GUEZ Lionel authored
If `l != 0` then `shape_rec.record.r_eq_area >= 0` so `n_points` was always equal to `n_points_valid`: no need for a separate variable.
-
GUEZ Lionel authored
Because the loop on shapes may take long.
-
- Jul 09, 2024
-
-
Lionel GUEZ authored
-
- Jul 06, 2024
-
-
GUEZ Lionel authored
`MAX_RADIUS_deg` is not general enough for a non longitude latitude grid. The variable `max_radius` moves from module `input_ssh_m` to module `config_m`. The variable `MAX_RADIUS_deg` disappears. The constraint `2 * max_radius_deg(1) < 180` becomes `4 * max_radius(1) < nlon` but is only applied to the periodic case because we do not have the general equivalent of 180° in number of points.
-
GUEZ Lionel authored
In procedure `get_var`.
-
GUEZ Lionel authored
-
GUEZ Lionel authored
Promote nlon and nlat to variables of module `input_ssh_m`, avoiding their repeated computation.
-
GUEZ Lionel authored
Preparing to allow access to variables of module `input_ssh_m`.
-
GUEZ Lionel authored
Rename variable `outside_points_proj` to `outside_points`.
-
GUEZ Lionel authored
-
GUEZ Lionel authored
`Region_1_20454_cyclone_3/config_nml.txt` is a symlink to `Extraction_eddies_region_1_noise/config_nml.txt`.
-
GUEZ Lionel authored
In main program units `inst_eddies`, `examine_eddy` and `test_get_1_outerm`, redefine `outside_points` as coordinates in projection space, avoiding a round trip to longitude and latitude. In `examine_eddy`, we therefore store `coord_proj` instead of coord.
-
GUEZ Lionel authored
-
GUEZ Lionel authored
From `nearby_extr`.
-