Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.5.2 #150

Merged
merged 148 commits into from
Jun 7, 2024
Merged

Release v0.5.2 #150

merged 148 commits into from
Jun 7, 2024

Commits on Mar 18, 2024

  1. Update python-pypi-test.yml

    try fix the issue with test-pypi
    mohammadamint authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    3cee920 View commit details
    Browse the repository at this point in the history
  2. Update python-publish-pypi.yml

    solve the similar issue of test-pypi with the workflow in the publish-pypi workflow
    mohammadamint authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    f142bfc View commit details
    Browse the repository at this point in the history
  3. Merge pull request #117 from RAMP-project/96-solving-the-testpypi-rel…

    …ease-issue-1
    
    Update python-pypi-test.yml
    Bachibouzouk authored Mar 18, 2024
    Configuration menu
    Copy the full SHA
    0c0f51e View commit details
    Browse the repository at this point in the history
  4. Fix issue 114. Skip app if func_time or rand_time==0

    Johann Kraft authored and Bachibouzouk committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    76e5342 View commit details
    Browse the repository at this point in the history
  5. Add warning if appliance with func_time=0 is defined

    Johann Kraft authored and Bachibouzouk committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    1f87cc0 View commit details
    Browse the repository at this point in the history
  6. Add tests and fix faulty func_time warning

    Johann Kraft authored and Bachibouzouk committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    d9fcb0a View commit details
    Browse the repository at this point in the history
  7. Formatted code with black.

    Johann Kraft authored and Bachibouzouk committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    8d5d504 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3d864d2 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0c65148 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. Merge pull request #116 from JW-Kraft/fix/func_time_zero_error

    Skip appliance if func_time==0 or rand_time==0
    Bachibouzouk authored Mar 19, 2024
    Configuration menu
    Copy the full SHA
    a0346dd View commit details
    Browse the repository at this point in the history
  2. Implemented fix for duty cylce repetition issue 78 (#78)

    - in Appliance -> .update_daily_use:
      - duration of switch-on event is corrected to be only as long as duty cylce
      - corrected duration of switch-on event is returned
    - in Appliance -> .generate_load_profile
      - calculation of total time of operation is performed using corrected duration of switch-on event
    Johann Kraft authored and Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    898be3c View commit details
    Browse the repository at this point in the history
  3. Implemented unit test for fix of issue 78 (#78)

    Johann Kraft authored and Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    df3c22f View commit details
    Browse the repository at this point in the history
  4. Formatted code with black.

    Johann Kraft authored and Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    f92054d View commit details
    Browse the repository at this point in the history
  5. Move duty_cycle selection from update_daily_use to rand_switch_on_window

    - Introduce current_duty_cycle_id as attribute of Appliance to
    keep track of the current duty cycle and avoid re-evaluating
    which duty-cycle is concerned by a switch on event
    - Change x in range(a,b) to a <= x < b as the latter is about 5 times
    faster 243 ns vs 51.4 ns
    - Remove direct mention of specific issue in the comments
    Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    afe1d02 View commit details
    Browse the repository at this point in the history
  6. Compute total time before while loop

    As now indexes are not updated by update daily_use but by
    rand_switch_on_window, it is less risky for backward compatibility
    to update the total time before entering the loop
    Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    293242a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1355a16 View commit details
    Browse the repository at this point in the history
  8. Parameter to switch on/off continuous operation within duty_cycles

    When this parameter is set to False (default) te behavior should
    be the same as previously, i.e. continuous duty cyles during the
    entire switch on event (can contain several duty cycles).
    
    Only when set to True would the switch on event be limited to the
    duration of the duty cycle in order to better model productive use
    of appliances (mill, welder)
    Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    8f52080 View commit details
    Browse the repository at this point in the history
  9. Fix the duty cycle test

    Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    2e162de View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    d5029ea View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    21f6d40 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    35428a4 View commit details
    Browse the repository at this point in the history
  13. Update changelog

    Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    3d34976 View commit details
    Browse the repository at this point in the history
  14. Fix old comparative tests script

    It needs to be run from the root of the repository
    Bachibouzouk committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    3819467 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    5b42bdc View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Remove unused line

    Bachibouzouk committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    0564791 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #111 from JW-Kraft/fix/duty-cycle-repetition

    Fix/duty cycle repetition for productive use
    Bachibouzouk authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    03cb5cb View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2024

  1. Configuration menu
    Copy the full SHA
    c5937c9 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2024

  1. Merge pull request #132 from RAMP-project/fix/empty_peak_time_range

    Fix/empty peak time range
    FLomb authored Apr 25, 2024
    Configuration menu
    Copy the full SHA
    96c987d View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2024

  1. adding the paper files for JOSS

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    57b13ee View commit details
    Browse the repository at this point in the history
  2. Adding depreciation warning to Appliance method in User class

    to ensure the Back-compatibility with legacy code, the Appliance method
    of User class is present. However the method is not further maintained
    since the nex-gen version of the sofware. To warn the users to move
    towards the new method, a DeprecationWarning is added.
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    cd3ac19 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3388542 View commit details
    Browse the repository at this point in the history
  4. Adapt Testing guidelines

    Issue: it was not easy to find that there were extra dependencies for
    testing
    
    Solution: mention it explicitely in the CONTRIBUTING.md
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    724dda5 View commit details
    Browse the repository at this point in the history
  5. Modify switch_on test

    issue: the test was failing randomly when accessing whether the sampled
    coincidence were following a normal distribution, due to the fact we
    apply math.ceil to the random.gauss to get integer number of appliances
    to be switched on simultaneously
    
    solution: get an experimental probability density function and fit a
    normal distribution to it, look how large is the error of mean and std
    as a proxy of visual inspection of the graph
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    7f33a16 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9d28c32 View commit details
    Browse the repository at this point in the history
  7. Fix running excel from command line

    issue: using the excel file generated by the "Using tabular inputs to
    build a model" example one could not run successfully `ramp -i
    example_excel_usecase.xlsx -n 10`
    
    solution: pass the argument flat=False to the Usecase method
    generate_daily_load_profiles. The postprocessing should actually
    make use of the newest capabilities
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    033c393 View commit details
    Browse the repository at this point in the history
  8. Fix multi-year in cli

    issue: the user could not simulate more than one year because of a
    requirement that the number of power values for an appliance should not
    exceed 366
    
    solution: the checks were moved to a function of Appliance class which
    is called when the usecase is initialized. If the Appliance instance has
    constant power, its power timeseries is adjusted and a warning is
    issued. However if the power timeseries was provided by user and does
    not contain enough values to cover the simulation range, an error is
    raised.
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    f592cff View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    7703d0d View commit details
    Browse the repository at this point in the history
  10. Fix seasonality input of RAMP cli

    Also provide a test of the CLI with example file
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    0b90f45 View commit details
    Browse the repository at this point in the history
  11. Fix small typo in core.py

    Remove typo in a string
    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    0d72c6f View commit details
    Browse the repository at this point in the history
  12. Add issue templates

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    79bccf0 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    bc768cc View commit details
    Browse the repository at this point in the history
  14. Pull request template

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    1dff6d9 View commit details
    Browse the repository at this point in the history
  15. Update CONTRIBUTE.md

    Add a section about issues
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    2b1bddb View commit details
    Browse the repository at this point in the history
  16. improving the readthedocs template

    within the current template, 'basicstrap', the navigation on the left sidebar (with the partial TOC) is a bit
    counter-intuitive. The new template provides a more intituitive
    sidebars.
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    b9942cc View commit details
    Browse the repository at this point in the history
  17. fixing extra imports in conf.py of the previous themes

    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    d8e34c8 View commit details
    Browse the repository at this point in the history
  18. Fix rst title length

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    8397966 View commit details
    Browse the repository at this point in the history
  19. Update conversion of notebook code

    Add a line at end of section with link to download the notebook
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    a411a62 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    dc43cd6 View commit details
    Browse the repository at this point in the history
  21. Lint with black

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    18b7420 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    ef006b8 View commit details
    Browse the repository at this point in the history
  23. Python=3.8 to be outdated as the prefered python version

    issue:
    
    Python 3.8 is mentioned in the README as the prefered python version for
    the installation. However, this python vesion is going to be outdated by
    October 2024.
    
    Current RAMP dev can be safely used by python 3.10.
    
    Changes:
    
    - README.rst --> updateing the installation guide
    - environment.yml --> updating the python dependency for installing
      environment through yml file
     - setup.py --> updating the python_requires accordingly
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    8f064fc View commit details
    Browse the repository at this point in the history
  24. User empty object print ValueError

    issue:
    When a user object is empty cannot be printed due as the __repr__ method
    uses the save() method to print the properties of the users, which raise
    Exception in case no appliances are added to the user.
    
    solution:
    in case save() methods returns an exception, the function prints the
    user_name, and user_num with a message to mention no appliances are
    assigned to the user object yet.
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    5fb1872 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    1227ad5 View commit details
    Browse the repository at this point in the history
  26. Fix comparison fonction of Appliance class

    The comparisons were not saved so the return value was always "True"
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    b3b495a View commit details
    Browse the repository at this point in the history
  27. Lint with black

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    296ef55 View commit details
    Browse the repository at this point in the history
  28. Fix test fixture

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    4515baa View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    0277649 View commit details
    Browse the repository at this point in the history
  30. Copy README.rst from repo source and adapt link to contributing

    As the contribution guidelines have a dedicated in the documentation we
    replace the link within the readme which was pointing towards the file
    CONTRIBUTING.md on github with a link which points towards the dedicated
    contribution guidelines within the documentation
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    926deec View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    e6b9731 View commit details
    Browse the repository at this point in the history
  32. exmples imrpvement - Simple Appliances

    issue:
    The lack of clear explanation of the example notebooks makes the core
    context of each example very difficult to be understood and followed.
    
    changes:
    improving the explanation of the example
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    d8285cd View commit details
    Browse the repository at this point in the history
  33. exmples imrpvement - Fixed-Flatt appliances

    Improving the explanation and analysis of the example
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    73909a6 View commit details
    Browse the repository at this point in the history
  34. exmples imrpvement - occasional use

    - Imroving the example with occasional uses
    - fixing some typos
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    332bbec View commit details
    Browse the repository at this point in the history
  35. exmples imrpvement - cooking appliances

    Improving the example explanatio for cooking appliances
    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    d6d081d View commit details
    Browse the repository at this point in the history
  36. exmples improvement - thermal load

    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    7b918dc View commit details
    Browse the repository at this point in the history
  37. Update docs/notebooks/cooking_app.ipynb

    Co-authored-by: Pierre Francois <[email protected]>
    mohammadamint and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    7222eb0 View commit details
    Browse the repository at this point in the history
  38. Update docs/notebooks/fixed_flat_app.ipynb

    Co-authored-by: Pierre Francois <[email protected]>
    mohammadamint and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    6d78d90 View commit details
    Browse the repository at this point in the history
  39. Update docs/notebooks/simple_bulb.ipynb

    Co-authored-by: Pierre Francois <[email protected]>
    mohammadamint and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    c349a7f View commit details
    Browse the repository at this point in the history
  40. Update docs/notebooks/thermal_app.ipynb

    Co-authored-by: Pierre Francois <[email protected]>
    mohammadamint and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    8fa6a08 View commit details
    Browse the repository at this point in the history
  41. Update docs/notebooks/simple_bulb.ipynb

    Co-authored-by: Pierre Francois <[email protected]>
    mohammadamint and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    9612562 View commit details
    Browse the repository at this point in the history
  42. Update docs/notebooks/simple_bulb.ipynb

    Co-authored-by: Pierre Francois <[email protected]>
    mohammadamint and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    321a5ae View commit details
    Browse the repository at this point in the history
  43. re-run example files

    Mohammad Amin Tahavori authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    9e8ba96 View commit details
    Browse the repository at this point in the history
  44. Improved fixed_cycle docs

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    b1114a9 View commit details
    Browse the repository at this point in the history
  45. Additional refinements

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    d1cb327 View commit details
    Browse the repository at this point in the history
  46. Clean-up unwanted conda warning

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    2c04462 View commit details
    Browse the repository at this point in the history
  47. Simplified multi_cycle documentation

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    88558a6 View commit details
    Browse the repository at this point in the history
  48. Update docs

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    684af31 View commit details
    Browse the repository at this point in the history
  49. Add seed parameter to UseCase

    Johann Kraft authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    6e3ba80 View commit details
    Browse the repository at this point in the history
  50. Example file to demonstrate fixed random seed

    Johann Kraft authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    884a797 View commit details
    Browse the repository at this point in the history
  51. Added myself to AUTHORS

    Johann Kraft authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    f0bacef View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    04f22a5 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    2056417 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    8556519 View commit details
    Browse the repository at this point in the history
  55. Lint with black

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    2e26f03 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    6d8a196 View commit details
    Browse the repository at this point in the history
  57. Fix test setup

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    c9f039b View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    bef31c1 View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    cb2f955 View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    307af07 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    1fd8891 View commit details
    Browse the repository at this point in the history
  62. Configuration menu
    Copy the full SHA
    160b72f View commit details
    Browse the repository at this point in the history
  63. Explicit the arguments in methods the example files

    Do this only for the first occurence as there are many appliances and
    users in examples 1 and 3
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    0fefa91 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    652f6df View commit details
    Browse the repository at this point in the history
  65. Lint with black

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    dcf5d74 View commit details
    Browse the repository at this point in the history
  66. Configuration menu
    Copy the full SHA
    3648b18 View commit details
    Browse the repository at this point in the history
  67. Configuration menu
    Copy the full SHA
    5c0e76a View commit details
    Browse the repository at this point in the history
  68. Configuration menu
    Copy the full SHA
    59159f3 View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    5bbf9f7 View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    fee9966 View commit details
    Browse the repository at this point in the history
  71. Lint with black

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    b18b675 View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    23e793f View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    15fcd9d View commit details
    Browse the repository at this point in the history
  74. Improve docstring

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    b27d0ff View commit details
    Browse the repository at this point in the history
  75. Configuration menu
    Copy the full SHA
    5bf3c91 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    80c3ef2 View commit details
    Browse the repository at this point in the history
  77. Code to reproduce JOSS figure

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    5787a21 View commit details
    Browse the repository at this point in the history
  78. Configuration menu
    Copy the full SHA
    11cac97 View commit details
    Browse the repository at this point in the history
  79. Custom line colours

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    d4c1c94 View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    ff3b187 View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    8a59b6e View commit details
    Browse the repository at this point in the history
  82. Lint with black

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    a610181 View commit details
    Browse the repository at this point in the history
  83. Configuration menu
    Copy the full SHA
    8acb318 View commit details
    Browse the repository at this point in the history
  84. Update CONTRIBUTING.md with developper setup

    Pre-commit already getting rid of trailing spaces
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    6e90793 View commit details
    Browse the repository at this point in the history
  85. Configuration menu
    Copy the full SHA
    4a2843c View commit details
    Browse the repository at this point in the history
  86. Configuration menu
    Copy the full SHA
    7bf997b View commit details
    Browse the repository at this point in the history
  87. Configuration menu
    Copy the full SHA
    3e4ca1d View commit details
    Browse the repository at this point in the history
  88. More literature and examples

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    a54dc56 View commit details
    Browse the repository at this point in the history
  89. Updated figure

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    fd23846 View commit details
    Browse the repository at this point in the history
  90. add two authors

    FLomb authored and Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    c633e19 View commit details
    Browse the repository at this point in the history
  91. Fix formating of certain citations

    And fix trailing spaces (pre-commit hooks)
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    572dd70 View commit details
    Browse the repository at this point in the history
  92. Add 2nd affiliation of author

    The author was master student from this institution working at RLI
    at the time and he is researcher at this institution now
    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    c939cf9 View commit details
    Browse the repository at this point in the history
  93. Add author orchid

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    75e2871 View commit details
    Browse the repository at this point in the history
  94. Configuration menu
    Copy the full SHA
    85575fc View commit details
    Browse the repository at this point in the history
  95. Configuration menu
    Copy the full SHA
    6e4699d View commit details
    Browse the repository at this point in the history
  96. Lint with black

    Bachibouzouk committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    2b5eefb View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    c56b550 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    c0423c0 View commit details
    Browse the repository at this point in the history
  2. Update README.rst to clarify 'active development'

    This PR addresses a comment by a JOSS reviewer that the statement about 'active development' at the bottom of the README may lead to misunderstandings.
    
    The statement is now more explicit and clear.
    FLomb authored Jun 4, 2024
    Configuration menu
    Copy the full SHA
    2e2aa33 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #151 from RAMP-project/review/clarify-active-devel…

    …opment
    
    Update README.rst to clarify 'active development'
    Bachibouzouk authored Jun 4, 2024
    Configuration menu
    Copy the full SHA
    b34509f View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2024

  1. Configuration menu
    Copy the full SHA
    d8f3c35 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0c87d2c View commit details
    Browse the repository at this point in the history
  3. fix path issues in test_run.py

    FLomb committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    0922874 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    522b436 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ff026c9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    14f1d61 View commit details
    Browse the repository at this point in the history
  7. Fix fridge duty cycle

    Bachibouzouk committed Jun 5, 2024
    Configuration menu
    Copy the full SHA
    4b4fce7 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    510c164 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2024

  1. Change duty_cycle selection method

    Previously the mean of the index range was computed and see if it was
    falling within a duty cycle. This method compare the boundaries of the
    range with the one of each duty cycle to know if there is an
    intersection. If there is one, the duty cycle is chosen.
    
    Note: this method does not take into account the case where the indexes
    range spans accross more than one duty cycle.
    Bachibouzouk committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    fb91034 View commit details
    Browse the repository at this point in the history
  2. Fix failing tests

    Bachibouzouk committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    2ea6532 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #153 from RAMP-project/fix/duty_cycle_selection

    Fix duty cycle selection
    Bachibouzouk authored Jun 6, 2024
    Configuration menu
    Copy the full SHA
    fce9fc9 View commit details
    Browse the repository at this point in the history
  4. Minor docstring improvements

    FLomb committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    75cb11d View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f25fbf4 View commit details
    Browse the repository at this point in the history
  6. Fix contribution link

    Bachibouzouk committed Jun 6, 2024
    Configuration menu
    Copy the full SHA
    0fbb021 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    37c9d21 View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2024

  1. Merge pull request #152 from RAMP-project/fix/ramp_convert

    Small fixes before the release
    Bachibouzouk authored Jun 7, 2024
    Configuration menu
    Copy the full SHA
    077ddbe View commit details
    Browse the repository at this point in the history
  2. Update changelog

    With some pre-commit linting fixes on previous releases
    Bachibouzouk committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    0ec1e67 View commit details
    Browse the repository at this point in the history
  3. Bump version number

    Bachibouzouk committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    1e4cc7e View commit details
    Browse the repository at this point in the history
  4. Fix README formatting

    So that twine check dist/* does not output errors.
    
    Pre-commit removed trailing spaces in the file as well
    Bachibouzouk committed Jun 7, 2024
    Configuration menu
    Copy the full SHA
    b31aaf8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9ddd6a4 View commit details
    Browse the repository at this point in the history