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 3.5.3 #2121

Merged
merged 219 commits into from
Apr 11, 2024
Merged

Release 3.5.3 #2121

merged 219 commits into from
Apr 11, 2024

Commits on Feb 15, 2024

  1. Add 3 linearization regression tests:

    - 5MW_Land_BD_Linear_Aero: BD + AD15 (based on 5MW_Land_BD_Linear, but with aero)
    - 5MW_Land_Linear_Aero: ED + AD15 (based on 5MW_Land_BD_Linear_Aero, but with ED)
    - 5MW_OC4Semi_MD_Linear: MD equivalent of 5MW_OC4Semi_Linear
    andrew-platt committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    231afd9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7fee687 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

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

Commits on Feb 19, 2024

  1. Merge pull request #2041 from andrew-platt/b/GHactions_node16_deprecate

    Upgrade to setup-python@v4 and cache@v4 for GH actions
    deslaughter authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    53b5f9f View commit details
    Browse the repository at this point in the history
  2. Update fast_linearization_file.py to use less memory

    Specify using np.float32 where possible in reading the linearization file. Also use np.float64 instead of float for matrices. Read matrices with genfromtxt instead of line by line
    deslaughter committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    fdf8642 View commit details
    Browse the repository at this point in the history
  3. Use env var to set CTest parallel runs, reduce to 2

    Previously the number of parallel threads in CTest was set via the -j flag. This changes it to use an environment variable set at the top of the file. The number of parallel tests was reduced from 4 to 2 as the linearization tests were failing from lack of memory. This may need to be adjusted.
    deslaughter committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    73e66a9 View commit details
    Browse the repository at this point in the history
  4. Use more efficient method to compare linearization matrices in regres…

    …sion tests.
    
    The previous method looped over each element and checked to see if it was within tolerance of the reference. This does the compare for the full matrices and then iterates over the element indices which were not within tolerance. This should significantly reduce the time to do the comparison for large matrices.
    
    Also prints out the row/column variables which correspond to that element.
    deslaughter committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    577aded View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7f49d46 View commit details
    Browse the repository at this point in the history
  6. GH actions: upgrade upload-artifact to v4

    This will prevent warnings about node 16 deprecation
    andrew-platt committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    7fdf580 View commit details
    Browse the repository at this point in the history
  7. Fix bug in HD_Perturb_x where SS_Exctn%numStates was used instead of …

    …SS_Rdtn%numStates
    
    This also moves to a simpler scheme that just checks if the perturbation index 'n' is equal to the current value index 'k'
    deslaughter committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    4414602 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    07d608a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    158459f View commit details
    Browse the repository at this point in the history
  10. Merge pull request #2038 from andrew-platt/f/MoreLinearRegTests

    Add linearization regression tests
    andrew-platt authored Feb 19, 2024
    Configuration menu
    Copy the full SHA
    83f55eb View commit details
    Browse the repository at this point in the history
  11. Remove typo in warning, retains c/con option for output flags for bac…

    …kwards compatibility
    RyanDavies19 authored and andrew-platt committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    5f1760f View commit details
    Browse the repository at this point in the history
  12. Bathymetry grid bug fix

    RyanDavies19 authored and andrew-platt committed Feb 19, 2024
    Configuration menu
    Copy the full SHA
    4c664a0 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    ad16990 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    26f5a49 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d6483eb View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. Configuration menu
    Copy the full SHA
    f8e4813 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    14f20d7 View commit details
    Browse the repository at this point in the history
  3. Updated r-test pointer

    deslaughter committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    3340726 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2024

  1. Lin: incorrect BD index in dUdy for AD motion

    The motions in dUdy from BD were starting at the incorrect index.  Instead of starting at the motion, the index started at the root load output.  This resulted in a shift of all the dUdy terms coupling y_BD motion to u_AD blade motion.
    
    This error has existed since at least commit 315bb29 on April 13, 2018
    
    Co-authored-by: Derek Slaughter <deslaughter@gmail.com>
    andrew-platt and deslaughter committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    8e140b9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2055 from andrew-platt/b/LinOutPrec-3.5.3

    Lin tests: increase out precision, error printing full filename, add SD linearization test
    andrew-platt authored Feb 28, 2024
    Configuration menu
    Copy the full SHA
    03ecb64 View commit details
    Browse the repository at this point in the history
  3. Lin: sum BD blade root motion to hub moment m_ud term (consistent wit…

    …h documentation)
    
    This results in some differences in the dUdy, A, and C matrices, but basically the same frequencies
    
    Co-authored-by: Derek Slaughter <deslaughter@gmail.com>
    andrew-platt and deslaughter committed Feb 28, 2024
    Configuration menu
    Copy the full SHA
    db8d795 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8269984 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Merge pull request #2060 from andrew-platt/b/LinBD_AD

    Fix BD + AD linearization indexing (negative damping results)
    andrew-platt authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    94a51d4 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. Fix bug in BD linearization resulting from reference rotation change

    When the change in reference rotation was implemented in v3.5.0, it effectively changed the states to be in the rotating frame. The existing method for putting the state Jacobians into the rotating frame involved calculating the difference in rotation between the root mesh reference orientation and the root mesh current orientation. Originally, the reference orientation always aligned with the blade root reference orientation inside BeamDyn. However, this is not a valid assumption when ChangeRefFrame = .true. as the blade root reference is updated by UpdateStates at every step.
    
    This commit changes two things: first, if ChangeRefFrame is true, then p%RotStates is also set to true because the states are in the rotating frame; second, the Jacobian is now rotated by the difference between the root mesh current orientation and BeamDyn's root reference orientation. These orientations will be the same after UpdateStates, but the correction is still applied in case the Jacobian routines are called with a different root mesh orientation.
    deslaughter committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    b6ce4b1 View commit details
    Browse the repository at this point in the history
  2. Update r-test pointer to revisions to 5MW_Land_BD_Linear and 5MW_Land…

    …_BD_Linear_Aero due to fixing this bug
    deslaughter committed Mar 1, 2024
    Configuration menu
    Copy the full SHA
    a37aaaf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6dac6a0 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Merge pull request #2063 from deslaughter/b/BeamDynRotStates

    Fix bug in BD linearization resulting from reference rotation change
    andrew-platt authored Mar 4, 2024
    Configuration menu
    Copy the full SHA
    e5a3bbd View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Handling of Paths for SrvD UserSubs Input Files

    @rdamiani pointed out in issue #2059 that the existing method for handling file paths with `UserSubs` is difficult as it requires putting all the user input files in the same location as the ServoDyn file.  This commit is from recomendations from @rdamiani for a method he has had good success with.
    
    Co-authored-by:rdamiani <r.damiani@RRDengineering.com>
    rdamiani authored and andrew-platt committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    c6f9788 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2079 from andrew-platt/f/SrvD_UserSubs_path

    Handling of Paths for SrvD UserSubs Input Files
    andrew-platt authored Mar 8, 2024
    Configuration menu
    Copy the full SHA
    bbcf464 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Configuration menu
    Copy the full SHA
    334c702 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f588ef5 View commit details
    Browse the repository at this point in the history
  3. Implement new initial strain fix based on OpenTurbine documentation

    The previous initial strain fix caused bad linearization results (and likely didn't fix the issue in the correct way). The new one replaces RR0 with R*x0' which is what OpenTurbine is using to avoid the mismatch that caused initial strain.
    deslaughter committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    9de4788 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7a2c43e View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    61b6b09 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    70f32cc View commit details
    Browse the repository at this point in the history
  3. Restore previous fix to pitch actuator logic in SetParameters

    This fix was unintentionally removed when reverting the initial strain fix.
    deslaughter committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    37b63c0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #2085 from deslaughter/b/BDInitialStrain

    Bug: BeamDyn Initial Strain and Linearization
    andrew-platt authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    143b837 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. FASTlib: Turbine(:) array must use Fortran index 1 start

    All code in FAST_Subs.f90 and other modules assumes Fortran style indexing (index start at 1) to the Turbine data structure.
    andrew-platt committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    294b261 View commit details
    Browse the repository at this point in the history
  2. FASTlib: change ExternInitData%TurbineID to %TurbIDforName

    This more accurately reflects what it is used for.
    andrew-platt committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    385c6bb View commit details
    Browse the repository at this point in the history
  3. FASTlib: change iTurb inputs to routines with c-bindings to index 0

    - `iTurb_c` is the new variable name for the turbine index passed into a FAST_Library.f90 routine.  This is assumed to start at 0 for the first turbine.
    - `iTurb = iTurb_c + 1` shifts this index to the indexing used internally in OpenFAST.
    andrew-platt committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    31a5b03 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7cd73e4 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. Configuration menu
    Copy the full SHA
    bcc91c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c001eb View commit details
    Browse the repository at this point in the history
  3. TurbSim: increase filename to 1024 characters

    On some systems, the filepath may take the filename beyond 200 characters.
    andrew-platt committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    e0cb005 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Merge pull request #2097 from andrew-platt/b/FASTlib_TurbineIndex_1

    Consistent use of turbine indexing when coupled to c/c++
    andrew-platt authored Mar 20, 2024
    Configuration menu
    Copy the full SHA
    3e029ef View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    51a2902 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0184e60 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2900399 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8519687 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    79f5910 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5dc82f4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f6bc0cc View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    57a1fbd View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    561eb22 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0302ea8 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    5e63e58 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    965bfa1 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    025f117 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    bfde527 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. Configuration menu
    Copy the full SHA
    db0a7e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5eb65ab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    38af413 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cc8a9c9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ce8fa16 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9822a4c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2b97678 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c8814e0 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c146096 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    dc326b3 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    19e4051 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    fb67cc3 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    367aca0 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    782041b View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    d994413 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    d1c8982 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    60a689b View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    5ae67cc View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    e07542e View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2024

  1. Configuration menu
    Copy the full SHA
    96a33da View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b35146f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    392492b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    27a5c66 View commit details
    Browse the repository at this point in the history
  5. MRG: Merge pull request #1 from octue/update-dockerfiles

    Automatically build OpenFAST docker images
    cortadocodes authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    ffae93a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e43e760 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    e63477b View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a51922a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6a47596 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    24bd1ff View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    8cbac60 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ff51c68 View commit details
    Browse the repository at this point in the history
  13. VSbuild: always build Registry as release x64

    Also updated some VS solution versions to 16 from older versions.
    andrew-platt committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    e38e88b View commit details
    Browse the repository at this point in the history
  14. Add initialization of MHK, WtrDpth, MSL2SWL in IfW_InitInp for AWAE m…

    …odule
    
    These members of the InflowWind initialization input DDT weren't being initialized and could potentially cause issues in the code when using FAST.Farm. Fixed by initializing values.
    deslaughter committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    c53164d View commit details
    Browse the repository at this point in the history
  15. Use of potentially unallocated array in AeroDyn_AllBldNdOuts.

    The array p_AD%FVW%Bld2Wings was indexed with iRot even if the array hadn't been allocated. This is not valid code, which was fixed by adding an if statement to only use the array if WakeMod is FVW
    deslaughter committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    9f5cb77 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    75f35b6 View commit details
    Browse the repository at this point in the history
  17. Merge pull request #2116 from andrew-platt/b/Reg_x64_VSbuild

    VSbuild: always build Registry as release x64
    andrew-platt authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    0a06e32 View commit details
    Browse the repository at this point in the history
  18. Merge pull request #2118 from deslaughter/b/FAST.FarmMemInit

    Fix use of uninitialized variables in FAST.Farm and increase stack size in Visual Studio
    andrew-platt authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    106ed6b View commit details
    Browse the repository at this point in the history
  19. CMake: openmp optional for FF and CPP if not explicitly requested (#2120

    )
    
    If using FAST.Farm or the CPP API, optionally use OpenMP if it can be found 
    
    Co-authored-by: Derek Slaughter <deslaughter@gmail.com>
    andrew-platt and deslaughter authored Mar 26, 2024
    Configuration menu
    Copy the full SHA
    70c0870 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    db7e686 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Configuration menu
    Copy the full SHA
    8de46aa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c6aee2b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9a12135 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    520931c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    aab4a6d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d59fccb View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    14e77db View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3e06eab View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0e8a61a View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7f4b551 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2024

  1. Configuration menu
    Copy the full SHA
    4a04caa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a6d4197 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6b2e890 View commit details
    Browse the repository at this point in the history
  4. DOC: Fix link in docs

    cortadocodes committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    26c48da View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7bd86cc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    11c8cbf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    1c3115f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5e80427 View commit details
    Browse the repository at this point in the history
  9. VSbuild: set VS version to VS 2017

    Visual Studio 15
    VisualStudioVersion = 15.0.28307.902
    andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    81357c3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    e45a518 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    b55f2e9 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    cbee1cc View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    b6849ce View commit details
    Browse the repository at this point in the history
  14. Merge pull request #2128 from andrew-platt/f/VSbuild_2017

    VSbuild: set VS version to VS 2017
    andrew-platt authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    afcf7aa View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    6184f95 View commit details
    Browse the repository at this point in the history
  16. CHO: Add .idea to .gitignore

    cortadocodes authored and andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    e1bcb8c View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    cd05a11 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    de58129 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    5f9e3ae View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    5fc6f79 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    5a97da4 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    5e2ca6b View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    c8b817f View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    df21818 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    1fd0051 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    02d9dea View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    74753f6 View commit details
    Browse the repository at this point in the history
  28. REF: Sort apt-get install lines

    cortadocodes authored and andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    dadbf1e View commit details
    Browse the repository at this point in the history
  29. REF: Factor out repository URL

    cortadocodes authored and andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    14d08b6 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    971053c View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    baa9969 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    47bf090 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    ee1c2ae View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    59cca57 View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    81a19d1 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    ef8843a View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    d51173b View commit details
    Browse the repository at this point in the history
  38. Configuration menu
    Copy the full SHA
    de2bc70 View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    ea408d0 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    e1d51be View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    9144086 View commit details
    Browse the repository at this point in the history
  42. Configuration menu
    Copy the full SHA
    597800d View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    ec7ec82 View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    161b51b View commit details
    Browse the repository at this point in the history
  45. Configuration menu
    Copy the full SHA
    180d020 View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    00067fe View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    8af81e7 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    78b5abb View commit details
    Browse the repository at this point in the history
  49. Configuration menu
    Copy the full SHA
    a02ec3d View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    6c68da0 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    1880475 View commit details
    Browse the repository at this point in the history
  52. Configuration menu
    Copy the full SHA
    ebbc2d9 View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    da484ff View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    c3f105c View commit details
    Browse the repository at this point in the history
  55. Configuration menu
    Copy the full SHA
    dbdcd6b View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    0eae5b5 View commit details
    Browse the repository at this point in the history
  57. Configuration menu
    Copy the full SHA
    5a38b4b View commit details
    Browse the repository at this point in the history
  58. Configuration menu
    Copy the full SHA
    1a270fa View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    061bc25 View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    dc671e9 View commit details
    Browse the repository at this point in the history
  61. Configuration menu
    Copy the full SHA
    b6f9d8e View commit details
    Browse the repository at this point in the history
  62. Configuration menu
    Copy the full SHA
    0c858fa View commit details
    Browse the repository at this point in the history
  63. Configuration menu
    Copy the full SHA
    86f3f12 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    68605cb View commit details
    Browse the repository at this point in the history
  65. DOC: Update documentation

    cortadocodes authored and andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    2195efa View commit details
    Browse the repository at this point in the history
  66. DOC: Update dockerfile readme

    cortadocodes authored and andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    631a44d View commit details
    Browse the repository at this point in the history
  67. DOC: Fix link in docs

    cortadocodes authored and andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    11ae1b8 View commit details
    Browse the repository at this point in the history
  68. OPS: Fix version extraction

    cortadocodes authored and andrew-platt committed Mar 28, 2024
    Configuration menu
    Copy the full SHA
    bdd085b View commit details
    Browse the repository at this point in the history
  69. Configuration menu
    Copy the full SHA
    c2e744f View commit details
    Browse the repository at this point in the history
  70. Configuration menu
    Copy the full SHA
    58155a4 View commit details
    Browse the repository at this point in the history
  71. Merge pull request #2129 from deslaughter/b/setup-python_cache_failure

    Fix cache failure in Github Actions caused by setup-python
    andrew-platt authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    ea169e0 View commit details
    Browse the repository at this point in the history
  72. Merge pull request #2130 from andrew-platt/f/Docs_testing

    Docs: update python modules for regression testing
    andrew-platt authored Mar 28, 2024
    Configuration menu
    Copy the full SHA
    bc5617a View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    531dbe9 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. Configuration menu
    Copy the full SHA
    5a0cf8b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0b594dd View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2134 from andrew-platt/b/SrvD_SumFileSegFault

    SrvD: Fix seg fault if blade StC used while writing summary file
    andrew-platt authored Apr 1, 2024
    Configuration menu
    Copy the full SHA
    c5ff09d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4f6be20 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8d16cea View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. Configuration menu
    Copy the full SHA
    0aca3d0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd090f0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    96d0e5e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c185a0a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d0ac94b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4337738 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    90ad82a View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    e18dc41 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    fcb2be9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    8ea0b9d View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7fb40b0 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    db131b1 View commit details
    Browse the repository at this point in the history
  13. Merge pull request #2138 from andrew-platt/b/cmake_ImplicitLinking

    Remove linking of implicit Fortran libraries.
    andrew-platt authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    85ee2dc View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. Configuration menu
    Copy the full SHA
    b100421 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    015bdd1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2bc30e2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f08795d View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2139 from octue/final-dockerfile-updates

    Add final dockerfile updates
    andrew-platt authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    f03df27 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a56bcc8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #2141 from mayankchetan/ghcr-actions

    GH actions to push docker image to Github container registry
    andrew-platt authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    4ac6c8a View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Adding Hyperlink to appendixD.rst

    Added the missing reference link about MEMBER OUTPUT LISTS to the relevant page from the readthedocs.io site (https://openfast.readthedocs.io/en/dev/source/user/subdyn/input_files.html#member-output-list).
    reilandsberger authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    612915b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43866be View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2144 from reilandsberger/rlandsbe-readthedocs-pat…

    …ch-1
    
    Edit to readthedocs.io -- Adding Internal Reference Hyperlink for appendixD.rst
    andrew-platt authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    d4214da View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    86be053 View commit details
    Browse the repository at this point in the history
  5. docs: update changelog

    andrew-platt committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    368c6b2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8242f76 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Merge pull request #2145 from andrew-platt/docs/update_for_3.5.3_release

    Docs/update for 3.5.3 release
    andrew-platt authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    d5ce801 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2166f9f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2154 from andrew-platt/f/docker_on_release

    GH actions: build docker on release instead of merge
    andrew-platt authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    26d570f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    eabd6b5 View commit details
    Browse the repository at this point in the history