Skip to content
Snippets Groups Projects
  1. Aug 23, 2024
  2. Jul 19, 2024
  3. Jul 18, 2024
  4. Jul 15, 2024
    • Lionel GUEZ's avatar
      Change the type of `cont_list_proj` to polyline · c89018ce
      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.
      c89018ce
  5. Jul 10, 2024
  6. Jul 09, 2024
  7. Jul 06, 2024
    • GUEZ Lionel's avatar
      Input `max_radius` instead of `MAX_RADIUS_deg` · 803b9bcc
      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.
      803b9bcc
Loading