Changes between Version 46 and Version 47 of ReleaseNotes


Ignore:
Timestamp:
Dec 17, 2021, 12:34:43 PM (2 years ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ReleaseNotes

    v46 v47  
    22
    33
    4 == Version 1.16 - November 30, 2020 ==
     4
     5== Version 2.0 - December 17, 2021 ==
     6
     7Note on signifcant changes influencing the compatibility with previous versions of PDAF
     8- We modernized the MPI parallelization. With these changes the MPI stub library that we provided before, and which allowed to compile and run PDAF without an MPI library, is no longer usable. Thus, PDAF does not require an MPI library. This should not have an impact on most users given that today MPI is standard on all cluster computers and an MPI library is available and can by easily installed on virtually any Linux, MacOS or Windows system.
     9- We renamed the PDAF library files with prefix PDAF-D_ to the prefix PDAF_ to ensure a consistent naming of the files. If you don't use the Makefile provided in the PDAF package, you likely need to adapt to this change.
     10- The observation generation option (GENOBS) was moved from filtertype=11 to filtertype=100
     11- Some model implementations (e.g. the Lorenz models) use netcdf for file writing/reading. Here we moved to the NF90 interface. This reuired that the netcdf.mod module file of the netcdf library is installed
     12
     13Changes:[[BR]]
     14* Added 3D-Var methods
     15  * variants: 3D-Var with parameterized covariances, 3D ensemble var (ensemble covariances) and hybrid-var (combined parameterized and ensemble covariances); ensemble perturbations can be transformed using the global ESTKF or the local LESTKF
     16  * Added [wiki:PdafTutorial tutorials for 3D-Var methods] (codes and slide set with explanations)
     17  * Added template files for 3D-Var methods
     18* Added models from Lorenz (2005): model II (state with averaging), model III (two-scale); both with assimilation fully implemented
     19* Added tutoral code showing a multivariate implementation with two model fields (/tutorial/online_2D_serialmodel_2fields). The tutorial demonstrates an efficient way to handle multiple model fields
     20* Added possibility to reset the MPI world communicator in which PDAF operates (routine PDAF_set_comm_pdaf). This ensures compatibility with e.g. OI-servers that use processes separate from those used by the model integration.
     21* Added possibility to let the user force that the analysis step is computed at the next call to PDAF_assimilate/PDAF_put_state (routine PDAF_force_analysis)
     22* Added possibility to overwrite PDAF's ensemble member counting in the flexible parallelization variant and force execution of the analysis (PDAF_set_memberid)
     23* Added routine to reset the value of the forgetting factor. Can be applied during the analysis step, e.g. to give each local analysis domain a different inflation value (PDAF_reset_forget)
     24* Added diagnostic routine to compute the continuous ranked probability score, CRPS (PDAF_diag_crps)
     25* Code revisions:
     26  * Renaming of routines: prefix PDAF-D_ replaced by PDAF_
     27  * modernized use of MPI: now we use 'USE MPI' instead of 'include mpif.h'. This solves the issue of gfortran 10, which claimed argument mismatches
     28  * modernized use of netCDF (with 'use netcdf' instead of 'include netcdf.inc'). This also resolves the issue of gfortran 10
     29  * observation generation (GENOBS) moved to filtertype=100
     30  * PDAF_sampleens now works without prior call to PDAF_init (removed memory counting)
     31  * removed stub PDAF library since it is not compatible with 'USE mpi'. Thus, compiling PDAF now requires a MPI library to be installed
     32* PDAF-OMI related
     33  * Calling deallocate_obs_pdafomi is no longer required
     34  * Model bindings for MITgcm and AWI-CM revised for using PDAF-OMI
     35  * all model implementations (Lorenz models) now implemented using PDAF-OMI
     36  * Added OMI adjoint observation operators for use with 3D-Var methods
     37* Bug corrections:
     38  * Correction of initialization of gcoords in tutorial for obs_C_pdafomi (observations with linear interpolation)
     39  * For compatibility with the Cray compiler, all .mod files of the PDAF library are copied to /include
     40  * resolved issue of gfortran-10 complaining about argument mismatch by 'USE mpi'
     41 
     42----
     43
     44== Previous versions ==
     45
     46
     47=== Version 1.16 - November 30, 2020 ===
    548
    649Changes:[[BR]]
     
    1457  * PDAF_gather_ens: add MPIstatus to allow correct compilation for blocking MPI
    1558  * corrected skewness/kurtosis computation (not all array indices were used)
    16 
    17  
    18 ----
    19 
    20 == Previous versions ==
    2159
    2260=== Version 1.15.1 - March 12, 2020 ===