-
Sebastian Müller authoredd06a9502
To find the state of this project's repository at the time of any of these versions, check out the tags.
- Changelog
- v0.6.1 - 2024-03
- Enhancements
- v0.6.0 - 2023-07
- Enhancements
- v0.5.0 - 2023-03
- Enhancements
- changes
- v0.4.0 - 2023-01
- Enhancements
- Changes
- Bugfixes
- v0.3.2 - 2022-06
- Bugfixes
- v0.3.1 - 2022-05
- Enhancements
- Bugfixes
- v0.3.0 - 2022-04
- Enhancements
- Changes
- Bugfixes
- v0.2.0 - 2022-01
- Enhancements
- Changes
- Bugfixes
- v0.1.1 - 2021-11
- Enhancements
- Changes
- Bugfixes
- v0.1.0 - 2021-05
- Enhancements
- Changes
CHANGELOG.md 9.72 KiB
Changelog
- Changelog
All notable changes to FORCES will be documented in this file.
v0.6.1 - 2024-03
- See the git diff for details.
Enhancements
- updates related to the merge of mLM into mHM (78)
-
mo_temporal_aggregation
: add day2mon_sum; make mon_avg intent(out) -
mo_timer
: increase max_timers to 500 -
mo_optimization_utils
: added reservoir/ lake volume as optional argument to eval_interface -
mo_message
: cleanup; add t11..t16 optionals -
mo_dds
: Added 'dds_results.out.current' output file -
mo_constants
: add ONETHIRD
-
- updated the CI workflow (77)
- added doc template
- refactored coverage job
- removed unsupported toolchains
- added new toolchains for intel and conda
v0.6.0 - 2023-07
- See the git diff for details.
Enhancements
- added
mo_datetime
(76)- This module provides four types to deal with date and time:
-
puredate
: containing year, month and day -
puretime
: containing hour, minute and second -
datetime
: combination of date and time -
timedelta
: difference between two datetimes (or dates) in days and (sub-day) seconds
-
- these type can be used in arithmetic operations (+, -, *, /) and can be compared (<, >, <=, >=, ==, /=) where it makes sense
- This module provides four types to deal with date and time:
v0.5.0 - 2023-03
- See the git diff for details.
Enhancements
-
added capability of conditional compilation (60). Two cmake options were added, that are enabled by default:
-
-DFORCES_WITH_OPTIMIZATION=[ON|OFF]
: include all modules used for optimization (sce, mcmc, anneal, dds, errormeasures, likelihood, opt_functions, cost, optimization_types, optimization_utils) -
-DFORCES_WITH_NETCDF=[ON|OFF]
: include all modules using NetCDF (netcdf, ncwrite, ncread)- Here,
mo_mcmc
throws an error if you want to have atmp_file
written out. - This option can be used to drop the NetCDF dependency, if netcdf io is not needed for your program
- Here,
-
-
mo_os (73)
- added
change_dir
to have a compiler independentchdir
routine - added
get_cwd
to have a compiler independentgetcwd
routine - added path constants
curdir
,pardir
,sep
,extsep
,linesep
anddevnull
- added
path_dirname
andpath_basename
(path_split
's head and tail) - added
path_root
andpath_ext
(path_splitext
's root and ext) - added
path_stem
(final path component without suffix) - added
path_isabs
andpath_isroot
checking functions - added
path_normpath
to normalize path - added
path_abspath
to get absolute path - added
path_parts
subroutine to split path into all components - added
path_as_posix
function to replace\\
with/
in given path
- added
-
mo_string_utils (73)
- added optional
strip
argument tostartswith
- added
endswith
function
- added optional
changes
- mo_os (73)
-
path_splitext
:- don't check for folder
- ignore leading dots in tail of path
- made root and ext optional
-
path_split
:- remove trailing '/' from head unleass it is root (e.g. '/' or '//' or '///' and so on)
- made head and tail optional
- converted
path_[exists|isfile|isdir]
to lowlevel functions- original subroutines are now called
check_path_[exists|isfile|isdir]
- original subroutines are now called
-
v0.4.0 - 2023-01
- See the git diff for details.
Enhancements
- mo_poly: added mo_poly.fypp replacement for mo_poly functions (55)
- mo_poly: added new routines and tests (55)
-
orientpoly
(calculate orientation of coords in polygon), -
mod_pole
(modify coords of grid to include poles on Cartesian coord system) and -
mod_shift
(shift longitude values by 180 degrees)
-
- documentation updates (58, 66)
- license clarifications (66)
- mo_message enhancements (40)
- add global switches in
mo_message
to turn of printing withmessage
anderror_message
SHOW_MSG = .true.
SHOW_ERR = .true.
-
message
anderror_message
got a new argumentshow
, defaulting to the global setting
- add switch to
error_message
to control raising stop error:-
raise=[.true.|.false.]
with.true.
by default
-
- add global switches in
- mo_sentinel: added module for sentinel handling (64)
- routines to set, get and check sentinels for all types
value = get_sentinel(mold) call set_sentinel(value) state = check_sentinel(value)
- routines to set, get and check sentinels for all types
- mo_logging: added logging module based on the flogging project of Daan van Vugt (63)
- integration with mo_cli to set log-level from command line
Changes
- mo_os refactoring (72)
- changed signatures
(path, answer, verbose, raise)
for path_exists, path_isfile and path_isdir - respect show_msg and show_err from mo_message
- simplify inquire logic
- changed signatures
Bugfixes
- mo_kernel: fix for openmp usage (only use openmp if compiled with openmp support) (59)
v0.3.2 - 2022-06
See the git diff for details.
Bugfixes
- CMake: prevent altering CMAKE_MODULE_PATH to not interfere with down-stream packages (57)
v0.3.1 - 2022-05
See the git diff for details.
Enhancements
Bugfixes
- CMake: fix source collection for mo_netcdf if preprocessed (c2430f5b)
v0.3.0 - 2022-04
See the git diff for details.
Enhancements
- mo_utils: added is_close and short circuits for exact equality check (46)
- mo_eckhardt_filter: add Eckhardt filter and BFI optimization option (47)
Changes
- update dependencies (cmake-fortran-scripts v1.6, doxygen-awesome v2.0.3) (49)
Bugfixes
- resolve many compiler warnings (43)
v0.2.0 - 2022-01
See the git diff for details.
Enhancements
- mo_kind: add option to use iso_fortran_env; added qp (44)
- Update documentation strings for modules and functions (40)
- include SMI dependencies (42)
- mo_netcdf: feature to read all attributes of a given netcdf type (38)
- mo_utils: implement ieee arithmetic (37)
Changes
Bugfixes
- CI: Minor fixes (45)
v0.1.1 - 2021-11
See the git diff for details.
Enhancements
- CMake: add traceback flag for debug mode in gfortran and NAG
- add mo_cli: module for building command line interfaces
- add coverage site
Changes
- FPP/CPP: rename files to be pre-processed to
*.F90
, so pre-processing is done automatically
Bugfixes
- refactored mo_message.F90
v0.1.0 - 2021-05
See the git diff for details.
First version of the lightweight fork of the CHS Fortran library.
Enhancements
- mo_message: added
error_message
- added mo_os: file system interactions
- added sorting routines for character arrays
- added setCoordinate routine to mo_netcdf.fypp
- updated CMake workflow
- added version.txt and version_date.txt like for mHM
- added first pfUnit tests
- added
cmake
andhpc-module-loads
folder as subrepos from CHS repos - added doxygen documentation
- remove pre-processor directives for unsupported compilers
Changes
- removed redundant functions in mo_utils.f90 (greaterthan, lessthan)
- removed numerical recipes code
- adopted
mo_netcdf
- added i8 write_dimension routine to allow for writing i8 weights to netcdf file
- extended mo_netcdf's setDimension functionality to also account for boundaries and attributes directly
- merged folders common and common_mHM_mRM
- based all eps and nodata references on mo_constants
- mo_restart now handles dimension bounds in a more correct way
- moved
nodata_dp
andeps_dp
tomo_constants
- merged lib from mHM and MPR and mo_netcdf
- adapted license and readme file