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

Additional features for the new SeaState module and HydroDyn #1008

Merged
merged 435 commits into from
May 31, 2023
This pull request is big! We’re only showing the most recent 250 commits.

Commits on May 31, 2022

  1. SeaState: Make warnings about clamping boundary shown only once

    - required adding the SeaState misc vars to some HD types
    - Added a warning if the writeOutputs request a position outside of the defined domain
    - fix comments regarding where time is in the 4-D arrays (some comments had it in position 4, but it is in position 1)
    bjonkman committed May 31, 2022
    Configuration menu
    Copy the full SHA
    5eeccbf View commit details
    Browse the repository at this point in the history

Commits on Jun 3, 2022

  1. Configuration menu
    Copy the full SHA
    3752930 View commit details
    Browse the repository at this point in the history
  2. Glue: combined code for structure transfer to option1 inputs

    - there was an extra call to SD_CalcOutput after the transfer and then a copy of some of the transfer codes, so I put the call to SD_CalcOutput inside `Transfer_Structure_to_Opt1Inputs` 
    - also fixed some comments in SeaState
    bjonkman committed Jun 3, 2022
    Configuration menu
    Copy the full SHA
    fbef3cf View commit details
    Browse the repository at this point in the history
  3. Linearization: reduce amount of duplicated code in offshore cases

    Use pointers in `Linear_HD_InputSolve_du`, 'Linear_HD_InputSolve_dy', and 'Linear_MAP_InputSolve_dy' to avoid duplicating code for a differene of 1 mesh
    
    Also moved index routines for SD%y to make their placement consistent with the other modules
    bjonkman committed Jun 3, 2022
    Configuration menu
    Copy the full SHA
    79acf5b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cea079d View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2022

  1. update some comments

    bjonkman committed Jun 6, 2022
    Configuration menu
    Copy the full SHA
    60ceac0 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. Update orientation differences in linear trim solution

    - Changed name of optional parameter to `ModName_GetOP` routine from `NeedLogMap` to `NeedPackedOrient` in an attempt to clarify what that does (returns the orientation matrix as a 3-valued vector instead of 9-valued one)
    - Made the use of this value consistent in ElastoDyn (all meshes with orientation fields that are packed in the GetOP routine need to have the same value for their  call to `PackMotionMesh`)
    - Added the optional `NeedPackedOrient` input to `SD_GetOP`
    - Made ED, BD, and SD each pack their arrays the same way in `FAST_DiffInterpOutputs`; otherwise, the linear trim solution does not difference all of the outputs correctly to determine if it has converged
    bjonkman committed Jun 14, 2022
    Configuration menu
    Copy the full SHA
    0e234f0 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2022

  1. update r-test

    bjonkman committed Jun 21, 2022
    Configuration menu
    Copy the full SHA
    78aaf92 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6c5390 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

  1. update r-test

    bjonkman committed Jun 22, 2022
    Configuration menu
    Copy the full SHA
    d99a3c3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    26f4880 View commit details
    Browse the repository at this point in the history
  3. HD/WAMIT2: allocate moment field in output mesh

    The field is getting set in `WAMIT2_CalcOutput`, but it is not allocated in the `MeshCreate` statement. Seems like that would have caused seg faults...
    bjonkman committed Jun 22, 2022
    Configuration menu
    Copy the full SHA
    6de2289 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d656ebe View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2022

  1. VTK output: add wave visualization back

    This could probably be improved by just plotting the SeaState grid at each time, but this works with the way it was done before.
    bjonkman committed Jun 24, 2022
    Configuration menu
    Copy the full SHA
    178bcff View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ecbc10 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2022

  1. Configuration menu
    Copy the full SHA
    44930c0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02aaccd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4ade328 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e24b94 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1965c9b View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2022

  1. HydroDyn/SeaState cleanup

    - moved check for "has ice' from HD to SeaSt (SeaState must have WaveMod=0 and CurrMod=0) in that case
    - don't check for WvHiCOff > WvLoCOff if WaveMod = 0,1 or 6
    - warn if WvHiCOff is being modified internally
    - fix module abbreviation for SeaState in FAST_Subs.f90
    - removed some unused variables
    bjonkman committed Jun 28, 2022
    Configuration menu
    Copy the full SHA
    46c526d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c18f4a View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2022

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

Commits on Jun 30, 2022

  1. Configuration menu
    Copy the full SHA
    11cd19c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cc1bbcc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b6fc713 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2022

  1. Configuration menu
    Copy the full SHA
    a93e13e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3 from bjonkman/LuWang_hydro

    SeaState/HydroDyn cleanup
    luwang00 authored Jul 1, 2022
    Configuration menu
    Copy the full SHA
    011a121 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3f8b14d View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2022

  1. Configuration menu
    Copy the full SHA
    ed6f6e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6ec9ab6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c5ff7a5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    70a375b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d5256f2 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2022

  1. update r-test

    bjonkman committed Jul 11, 2022
    Configuration menu
    Copy the full SHA
    f6c1754 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a43e451 View commit details
    Browse the repository at this point in the history
  3. bug fix: SS_Excitation wave elevation was not set properly for nBody > 1

    - possibly segmentation faults due to arrays not being allocated before being used in SS_Exc_InputExtrapInterp
    - also updated error handling
    bjonkman committed Jul 11, 2022
    Configuration menu
    Copy the full SHA
    1452337 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e1889fe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7c8fb6a View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2022

  1. Configuration menu
    Copy the full SHA
    0ff7438 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8b579f9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6682afe View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2022

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

Commits on Jul 14, 2022

  1. SD: make new channel names backward compatible

    previous channel names did not have a leading 0 on the member #; this change allows the leading zero to be omitted
    bjonkman committed Jul 14, 2022
    Configuration menu
    Copy the full SHA
    c9b4118 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. SeaState: updates to WriteOutput

    - added a few more outputs for MCF accelerations (used in validation vs other codes)
    - removed unused variables
    - combined some writeOutput variables and routines
    - use SetOutParam routine generated by Matlab (instead of splitting this code into 3 other routines)
    - added checks for invalid channel outputs
    bjonkman committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    b53d5aa View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. Update module description in summary file

    Do not print names of modules that are not used. Also, adds SeaState module to the list when/if it is used.
    bjonkman committed Jul 19, 2022
    Configuration menu
    Copy the full SHA
    a641b97 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2022

  1. Configuration menu
    Copy the full SHA
    f51f673 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ae91162 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    31bb8fe View commit details
    Browse the repository at this point in the history
  4. glue: Replace IF statements for solve options with single logical

    Reduces complexity of IF statements that are used each time step
    bjonkman committed Jul 20, 2022
    Configuration menu
    Copy the full SHA
    9f3233c View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2022

  1. python regression test scripts

    - add `-module` argument to `manualRegressionTest.py` so it will run the module tests, too
    - HD regression test now also copies the data it uses from `glue-codes\openfast\5MW_Baselin\HydroData`
    - modules now return the error code if they exit on error after running an executable
    - added `const` flag to optional logical arguments in `manualRegressionTest.py` and `executeHydrodynRegressionCase.py`
    bjonkman committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    746adcd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b1a83c6 View commit details
    Browse the repository at this point in the history
  3. update r-test

    bjonkman committed Jul 29, 2022
    Configuration menu
    Copy the full SHA
    ff1a4fa View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2022

  1. Configuration menu
    Copy the full SHA
    9d8a6ca View commit details
    Browse the repository at this point in the history
  2. update r-test

    bjonkman committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    d2fd2e9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a393f0e View commit details
    Browse the repository at this point in the history
  4. Bug Fix: Adding WaveMod = 7 to the subroutine WAMIT_Init.

    WaveMod = 7 was missing from WAMIT_Init, so it won't work with ExctnMod > 0.
    luwang00 committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    2f568df View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

  1. Configuration menu
    Copy the full SHA
    70517c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    56097fe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7e43136 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5e9d591 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2022

  1. Axial drag force: Avoided updating the states of the high-pass normal…

    … relative velocity filter with misc. variables.
    luwang00 committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    1f3056e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    30d1f97 View commit details
    Browse the repository at this point in the history
  3. HD driver: add output-to-file capability

    Now HD and SeaSt data are output in the same file
    bjonkman committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    8aac668 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b20cbb2 View commit details
    Browse the repository at this point in the history
  5. python regression-test scripts: update for HD driver changes

    Also note the .log files now have a different base name (haven't checked this for other drivers, just HD)
    bjonkman committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    3f3ee0a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d74fad3 View commit details
    Browse the repository at this point in the history
  7. update types files

    bjonkman committed Aug 3, 2022
    Configuration menu
    Copy the full SHA
    af3e768 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2022

  1. update more types files

    bjonkman committed Aug 4, 2022
    Configuration menu
    Copy the full SHA
    8c2b643 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2022

  1. Configuration menu
    Copy the full SHA
    917320a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9c3912e View commit details
    Browse the repository at this point in the history
  3. HD driver: cleanup + reorg

    Moved parts of driver into subroutines; also involved moving data into data types
    bjonkman committed Aug 8, 2022
    Configuration menu
    Copy the full SHA
    373d63b View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2022

  1. HD driver reorg

    - move linearization routines from main code to module
    - move setting of HD inputs into a separate subroutine and attempt to simplify (also fix a bug on HD orientation inputs when prpInputsMod< 0
    - destroy allocated variables
    - add error checks on PRPin data (assumptions on time and length of arrays could have caused incorrect results or seg faults)
    - linearization when PrpInputsMod == 2 or < 0 now uses correct HD inputs (otherwise inputs weren't set)
    - updated some error checking
    bjonkman committed Aug 11, 2022
    Configuration menu
    Copy the full SHA
    a3c2cf8 View commit details
    Browse the repository at this point in the history
  2. HD: fix assumption that update states has 2 input times

    e.g., driver has only 1, and OpenFAST may have arrays of 2 or 3 elements.
    bjonkman committed Aug 11, 2022
    Configuration menu
    Copy the full SHA
    486fa7b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0c68597 View commit details
    Browse the repository at this point in the history
  4. update r-test

    bjonkman committed Aug 11, 2022
    Configuration menu
    Copy the full SHA
    01f857c View commit details
    Browse the repository at this point in the history
  5. python scripts: don't print blank lines on .out files

    return NaN when the number of output channels in the two files are not the same (there is no comparison for which channels are which)
    bjonkman committed Aug 11, 2022
    Configuration menu
    Copy the full SHA
    7a989af View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    14134a7 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2022

  1. Configuration menu
    Copy the full SHA
    63e627d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ddfbd99 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    63265e3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    57520e7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b9fda82 View commit details
    Browse the repository at this point in the history
  6. Reverting the change made in the previous commit (63265e3)

    The original equation for the white-noise spectrum is correct.
    luwang00 committed Aug 15, 2022
    Configuration menu
    Copy the full SHA
    41c8de3 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2022

  1. Configuration menu
    Copy the full SHA
    ae58d1c View commit details
    Browse the repository at this point in the history
  2. HD/SeaSt: clarify outputs to module level output file

    These outputs happen after moving on to the next step, so I wanted to clarify that in the code (and not confuse myself when I look at this again)
    bjonkman committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    0aee614 View commit details
    Browse the repository at this point in the history
  3. HD driver: fix perturbations on WAMIT and Morison meshes

    Was missing a transfer to the two meshes.
    Also set time = 0 before calling SimStatus the first time
    bjonkman committed Aug 16, 2022
    Configuration menu
    Copy the full SHA
    dcb5b33 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ba12ea8 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2022

  1. HD/SeaSt cleanup

    - renamed some Waves/Waves2 variables to avoid confusion with SeaSt variables of same name
    - removed some unused variables (especially unused copies of data in different data structures)
    - removed commented-out wave stretching code (old, from FAST7?)
    - moved all of the SeaState summary file output into a subroutine
    - fixed some allocation size errors
    - fixed uninitialized variables: NWaveElev and ErrStat
    bjonkman committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    3c7524f View commit details
    Browse the repository at this point in the history
  2. SeaSt cleanup: rename some submodule variables

    The SeaSt module had the same name for the WaveElev and WaveKin arrays as its submodules, though at the SeaSt level they indicate values at user-defined points and at the submodule level, they indicate values on a regularly spaced grid. I renamed the submodule variables for less confusion (at least on my part)
    bjonkman committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    1645147 View commit details
    Browse the repository at this point in the history
  3. SeaSt: remove unnecessary arrays

    Since the first nx*ny points of the WaveKinGrid*i arrays are identical to the WaveElevGrid*i arrays, I removed the WaveElevGrid*i arrays.
    bjonkman committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    1f4bf9a View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2022

  1. Merge pull request #4 from bjonkman/LuWang_hydro

    Code cleanup + HD driver linearization
    luwang00 authored Aug 18, 2022
    Configuration menu
    Copy the full SHA
    f30b1ea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    95f98d7 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2022

  1. Configuration menu
    Copy the full SHA
    1910374 View commit details
    Browse the repository at this point in the history
  2. Fix broken manual regression test

    - Bokeh must be at least v2.4
    - executeSeaStateRegressionCase.py has same changes as other module scripts that were changed in dev
    - manual test uses same keywords/arguments as execute*RegressionCase.py scripts
    bjonkman committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    c8b2477 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2022

  1. Configuration menu
    Copy the full SHA
    edea770 View commit details
    Browse the repository at this point in the history
  2. python scripts: avoid plotting errors with different numbers of outpu…

    …t channels
    
    this still doesn't check that the outputs are in the same order, so we could be comparing different channels against each other....
    bjonkman committed Aug 23, 2022
    Configuration menu
    Copy the full SHA
    be4c884 View commit details
    Browse the repository at this point in the history
  3. update r-test

    bjonkman committed Aug 23, 2022
    Configuration menu
    Copy the full SHA
    6eb4920 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4fc9d81 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2022

  1. Configuration menu
    Copy the full SHA
    de3a9c2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7ae3388 View commit details
    Browse the repository at this point in the history
  3. Cleanup size of lines read from file

    attempt to make them consistent and able to be changed with a single variable
    bjonkman committed Aug 25, 2022
    Configuration menu
    Copy the full SHA
    5b0823a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4708737 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2022

  1. Configuration menu
    Copy the full SHA
    0076b03 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dd123af View commit details
    Browse the repository at this point in the history
  3. HD/SeaSt: update error handling + code cleanup

    - cleanup up some error handling and potential memory leaks
    - fix issue where 4D data is ALWAYS copied to 3D
    bjonkman committed Aug 29, 2022
    Configuration menu
    Copy the full SHA
    d7b57ef View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f088391 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4dae42a View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2022

  1. update r-test

    bjonkman committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    43cc15b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5 from bjonkman/LuWang_hydro

    Merge OpenFAST/dev + HD/SeaSt code cleanup
    luwang00 authored Aug 30, 2022
    Configuration menu
    Copy the full SHA
    5210163 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2022

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

Commits on Sep 1, 2022

  1. Configuration menu
    Copy the full SHA
    d7ed2a4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c6abf07 View commit details
    Browse the repository at this point in the history
  3. Bug Fix: Morison_CalcOutput

    In Morison_CalcOutput, member end radii and unit vectors were not initialized before checking for partially wetted end plates.
    luwang00 committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    659309b View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2022

  1. Bug Fix: Morison_CalcOutput

    Adjusted the element iteration to start from 1 instead of 0 when mem%i_floor = 0 (lower end is at or above the seabed)
    luwang00 committed Sep 2, 2022
    Configuration menu
    Copy the full SHA
    acb70c4 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2022

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

Commits on Sep 7, 2022

  1. Merge pull request #6 from bjonkman/LuWang_hydro

    Fix potential numerical issues with acos in HD/SeaSt
    luwang00 authored Sep 7, 2022
    Configuration menu
    Copy the full SHA
    a7f6de7 View commit details
    Browse the repository at this point in the history
  2. Morison WriteOutput cleanup (plus bug fixes)

    - removed unused Morison variables and subroutines
    - reconfigured some of Morison WriteOutput logic (to use most of what's generated by the Write_ChkOutlist.m)
    - Morison Wave elevation outputs now say they are in units of "m" and not "Pa"
    - Some of the checking on valid Morison outputs was using wrong lengths of character strings, which could lead to errors if the length of any new output channel names was > 9
    bjonkman committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    98c2452 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2072943 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ea6dfa9 View commit details
    Browse the repository at this point in the history
  5. NWTC Lib: add OutStrLenM1 and FindValidChannelIndx

    This requires removing the definition of OutStrLenM1 from all the Matlab-generated writeOutput code. But, it also allows that matlab-generated code to be simplified
    
    also removed some unused variables
    bjonkman committed Sep 7, 2022
    Configuration menu
    Copy the full SHA
    875550b View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

  1. Configuration menu
    Copy the full SHA
    6caad82 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    63a303e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ef1620c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94ed2e8 View commit details
    Browse the repository at this point in the history
  5. HD: remove environment conditions from input file; use values from SeaSt

    - These are defined in SeaState and passed to HydroDyn. HD CANNOT change them anymore, and HD uses the outputs from SeaState, not the default values from the driver input file (updated in both HD driver and OpenFAST).
    
    - HD no longer returns the environmental conditions from initOutput
    
    - Removed the environmental conditions section from HD documentation and added a rough placeholder for the environmental conditions, waves, and current sections in a new .rst file for SeaState. THIS NEEDS TO BE UPDATED!
    bjonkman committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    2638ae3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    d0385dc View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. Configuration menu
    Copy the full SHA
    46fe43d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    587416a View commit details
    Browse the repository at this point in the history
  3. SD: fix units on M??N?MKxe channels

    bjonkman authored and luwang00 committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    991e5b5 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. Configuration menu
    Copy the full SHA
    1e311b9 View commit details
    Browse the repository at this point in the history
  2. MD: remove unused variables

    bjonkman committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    8a02893 View commit details
    Browse the repository at this point in the history
  3. Fix conflicts from MD2 merge

    - reformulated FAST.Farm/MD connections (now it also connects with SubDyn... that should be tested, though)
    - moved HD/Waves info into SeaState/Waves
    - fixed some linearization code
    bjonkman committed Sep 13, 2022
    Configuration menu
    Copy the full SHA
    c1079be View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2022

  1. Configuration menu
    Copy the full SHA
    4ecf83a View commit details
    Browse the repository at this point in the history
  2. MD: remove unused variables

    bjonkman committed Oct 13, 2022
    Configuration menu
    Copy the full SHA
    5ed3a16 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ef3664 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2022

  1. Merge remote-tracking branch 'origin/dev' into f/Hydro_SeaState_PR1008

    - NOTE: added SubDyn-MD FAST.Farm coupling (not just ED-MD)
    - initialized `WaveFieldMod` in Simulink interface
    - cleaned up error message subroutine names in HD
    bjonkman committed Oct 18, 2022
    Configuration menu
    Copy the full SHA
    e2252ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a06ab4 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2022

  1. Configuration menu
    Copy the full SHA
    3633616 View commit details
    Browse the repository at this point in the history
  2. MD driver: remove unused variables

    also fix Debug|x64 driver vs-build configuration
    bjonkman committed Oct 19, 2022
    Configuration menu
    Copy the full SHA
    1b60c40 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2022

  1. MD driver cleanup

    - fixed some error handling (to debug why r-test wasn't running)
    - stopped blank MD.out file from being generated
    - allow more than 7 columns to be on a line in MD input file without error (e.g. if you added a comment at the end of the line, it would error)
    - updated r-test MD driver files
    bjonkman committed Oct 20, 2022
    Configuration menu
    Copy the full SHA
    1ebd80e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b307423 View commit details
    Browse the repository at this point in the history
  3. HD: fix uninitialized NumOuts when no outputs listed

    If HD doesn't request any outputs, the number of outputs to Morison (and probably HD) was undefined. This has been fixed.
    
    I also updated the code so that it should not have uninitialized values in the output channel list if a channel is listed multiple times.
    bjonkman committed Oct 20, 2022
    Configuration menu
    Copy the full SHA
    c9a6153 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'LuWang_hydro' into f/Hydro_SeaState_PR1008

    - comment out some unused variables in MD
    - modify some comments
    - fix a couple of potential error handling issues in MD
    bjonkman committed Oct 20, 2022
    Configuration menu
    Copy the full SHA
    d941fca View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. Configuration menu
    Copy the full SHA
    533180a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2364e41 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8b383ee View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2022

  1. Modified the strip-theory buoyancy calculation to accommodate partial…

    …ly wetted last element. Changed some exceptions encountered in the calculation of strip-theory hydrodynamic loads from fatal error to warning.
    luwang00 committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    3dfc608 View commit details
    Browse the repository at this point in the history
  2. AD: allow "Aero" as well as "Fld" for channel names

    - remove nonstandard tabs from Fortran source code
    - rename variables that had been changed to "Fld" back to "Aero"; channel names now allow for both versions to be used, with "Aero" as default
    bjonkman committed Oct 27, 2022
    Configuration menu
    Copy the full SHA
    0f6ea02 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2022

  1. Added an approximate expression for the wave spreading normalization …

    …constant for large wave spreading coefficients to avoid the normalization constant from becoming NaN.
    luwang00 committed Oct 28, 2022
    Configuration menu
    Copy the full SHA
    a63cf4d View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2022

  1. Extended the smoothing of strip-theory hydrodynamic loads to cover th…

    …e cases of one or no fully submerged element (only a partially submerged element). Removed the corresponding fatal exception for less than two fully submerged elements. Relaxed to a warning the previously fatal exception where an initially surface-piercing member becomes fully submerged or completely out of water (the load smoothing is simply skipped in this case).
    luwang00 committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    71184b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80edd5b View commit details
    Browse the repository at this point in the history
  3. update r-test

    bjonkman committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    5fc8c75 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    96f0716 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    06cee6d View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2022

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

Commits on Nov 7, 2022

  1. Configuration menu
    Copy the full SHA
    0158a99 View commit details
    Browse the repository at this point in the history
  2. update r-test

    bjonkman committed Nov 7, 2022
    Configuration menu
    Copy the full SHA
    24dc180 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2022

  1. Configuration menu
    Copy the full SHA
    64ec8dd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3028570 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2022

  1. update r-test

    bjonkman committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    a572884 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    afa6a1c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5c8efb4 View commit details
    Browse the repository at this point in the history
  4. Waves: avoid resetting index inside loop

    This is caused by improper variable scope.
    
    Note: If you write `This is probably poor programming practice, but`, you should probably reconsider whatever it is that you are about to type.
    bjonkman committed Nov 10, 2022
    Configuration menu
    Copy the full SHA
    2fb855b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1b60a41 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2022

  1. Configuration menu
    Copy the full SHA
    c98e493 View commit details
    Browse the repository at this point in the history
  2. SeaSt/Waves: remove unnecessary InitOut variables

    - WaveDir
    - WaveMultiDir
    bjonkman committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    fe6a7ff View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2022

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

Commits on Nov 16, 2022

  1. Configuration menu
    Copy the full SHA
    5a008bf View commit details
    Browse the repository at this point in the history
  2. SeaSt BugFix: still water waves was not correctly initializing

    WaveVel and nodeInWater were not set properly because the index wasn't updated
    bjonkman committed Nov 16, 2022
    Configuration menu
    Copy the full SHA
    c8b8330 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2022

  1. Updated the subroutine WrVTK_AllMeshes to output the SubDyn y3Mesh wi…

    …th structural deformation instead of the rigid-body y2Mesh.
    luwang00 committed Nov 17, 2022
    Configuration menu
    Copy the full SHA
    41cd3a0 View commit details
    Browse the repository at this point in the history
  2. SeaSt: sort out wave initialization

    It's hard to follow how various `InitOut` components get initialized. This is attempting to put initializations in one place.
    - NStepWave, NStepWave2, WaveDT, WaveDOmega set
    - WaveTime, WaveElev0, and WaveElevC0 allocated and initialized
    bjonkman committed Nov 17, 2022
    Configuration menu
    Copy the full SHA
    68111ac View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2022

  1. Waves: update initializations

    - Added more InitOut arrays to `Initial_InitOut_Arrays` so that it's easier to read/debug
    - remove some unused local variables in VariousWavesInit
    - remove outdated comments/code from VariousWavesInit for readability
    bjonkman committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    18e24b3 View commit details
    Browse the repository at this point in the history
  2. HD/SeaSt: remove unused (redundant) NodeInWater

    This variable is calculated in Morison as a misc var, but is also redundantly calculated and stored in SeaState and HD InitInp
    bjonkman committed Nov 28, 2022
    Configuration menu
    Copy the full SHA
    22b41dd View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2022

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

Commits on Dec 1, 2022

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

Commits on Dec 2, 2022

  1. Bug Fix: SetMemberProperties (Morison.f90)

    InitInp%Nodes%Position(3) is already defined relative to the SWL, not the MSL. No need to subtract MSL2SWL when checking if MCF members are surface piercing.
    luwang00 committed Dec 2, 2022
    Configuration menu
    Copy the full SHA
    016901c View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2022

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

Commits on Dec 13, 2022

  1. SeaSt: cleanup

    remove unused variables + fix comments
    bjonkman committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    baecc39 View commit details
    Browse the repository at this point in the history
  2. Waves: move some initializations into subroutines

    - replace some scalars with arrays to avoid recalculation
    - identified some inefficiencies with pRNG that have not been completely fixed here due to different numbers of random numbers causing different results. May address in the future.
    bjonkman committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    91c2d06 View commit details
    Browse the repository at this point in the history
  3. waves bug fix: index starts from 0

    When passing arrays from subroutine, the index starting at 0 was missed.
    bjonkman committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    74c0979 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2023

  1. Configuration menu
    Copy the full SHA
    0a190f6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a9b81d1 View commit details
    Browse the repository at this point in the history
  3. update r-test pointer

    bjonkman committed Jan 9, 2023
    Configuration menu
    Copy the full SHA
    657f838 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

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

Commits on Feb 17, 2023

  1. Bug fix: Corrected the expression for distributed axial drag force in…

    … Morison.f90
    
    The previous expression was incorrect. The distributed axial drag force was not changing direction following the relative velocity. The leading coefficient of 0.5 in the previous expression should also be canceled out by the factor of 2 coming from the reference area of 2*pi*R*dRdl.
    luwang00 committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    916f45e View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2023

  1. Streamline the logic for strip-theory loads in Morison.f90 to better …

    …support members transitioning in and out of water.
    luwang00 committed Feb 18, 2023
    Configuration menu
    Copy the full SHA
    324134f View commit details
    Browse the repository at this point in the history
  2. Bug Fix: Added back the coefficient of 0.5 for distributed axial drag…

    … force incorrectly removed in Commit 916f45e
    
    The rest of the fix made in 916f45e remains valid.
    luwang00 committed Feb 18, 2023
    Configuration menu
    Copy the full SHA
    d82f0d0 View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. Configuration menu
    Copy the full SHA
    58777da View commit details
    Browse the repository at this point in the history
  2. Bug fix and improvement to the strip-theory hydrodynamic loads with w…

    …ave stretching
    
    1. Corrected the strip-theory load integration when the number of fully submerged elements is less than two. 2. Streamlined the logic when the number of fully submerged elements is less than two. 3. The member radius is now interpolated when computing the strip-theory loads at the intersection with the free surface. This ensures smoothly varying loads on tapered members.
    luwang00 committed Feb 20, 2023
    Configuration menu
    Copy the full SHA
    fc1806a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8ecc789 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. Configuration menu
    Copy the full SHA
    90203e5 View commit details
    Browse the repository at this point in the history
  2. Quick fix to prevent segfault when ExctnMod=2 and ExctnDisp=2

    ExctnDisp=1 and ExctnDisp=2 have the same behavior when ExctnMod=2 right now. Proper implementation for ExctnDisp=2 with state-space wave excitation to follow.
    luwang00 committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    ea180ff View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2023

  1. Configuration menu
    Copy the full SHA
    c3c0a58 View commit details
    Browse the repository at this point in the history
  2. Corrections to comments

    luwang00 committed Mar 1, 2023
    Configuration menu
    Copy the full SHA
    17a0f51 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    39a4058 View commit details
    Browse the repository at this point in the history
  4. Bug Fix: Fixed the problem causing SeaState to function incorrectly w…

    …hen NX!=NY in SeaState SPATIAL DISCRETIZATION
    luwang00 committed Mar 1, 2023
    Configuration menu
    Copy the full SHA
    6d40517 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3dc9b5a View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Configuration menu
    Copy the full SHA
    5faaa99 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5415893 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2023

  1. hd: fix NBody>1 & NBodyMod=1 WAMIT2 bug

    Some arrays in WAMIT2 were not initialized to the correct dimensions for multiple WAMIT bodies in the second order files.
    andrew-platt authored and luwang00 committed Mar 8, 2023
    Configuration menu
    Copy the full SHA
    3a2d128 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2023

  1. Bug Fix: Corrected an issue in FAST_Lin.f90 which led to incorrect li…

    …nearization with SubDyn
    luwang00 committed Mar 17, 2023
    Configuration menu
    Copy the full SHA
    092648d View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2023

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

Commits on Mar 21, 2023

  1. Merge pull request #7 from ebranlard/f/fix-vtk-wave

    Bug Fix: Wrong ErrStat preventing wave elev VTK outputs
    luwang00 authored Mar 21, 2023
    Configuration menu
    Copy the full SHA
    1af49d1 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2023

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

Commits on Apr 19, 2023

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

Commits on Apr 25, 2023

  1. Configuration menu
    Copy the full SHA
    a8dee01 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0173f0b View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2023

  1. TurbSim bug fix: fix index into Z array for text grid files

    This caused an index to be out of bounds if there were tower points
    bjonkman committed Apr 27, 2023
    Configuration menu
    Copy the full SHA
    163919f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ba9a424 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dae7e1d View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2023

  1. Configuration menu
    Copy the full SHA
    e4ea833 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    129491e View commit details
    Browse the repository at this point in the history

Commits on May 2, 2023

  1. Configuration menu
    Copy the full SHA
    75e2e0a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c6205b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    91c79dd View commit details
    Browse the repository at this point in the history
  4. HD: Cleanup initialization

    - remove checks on changing DT after calling WAMIT and WAMIT2 (since it can't change there anyway)
    - removed WAMIT InitOut type since it was empty
    - Conv_Rdtm_Init no longer sets Interval, but it was set to that same value before calling WAMIT
    bjonkman committed May 2, 2023
    Configuration menu
    Copy the full SHA
    ecfe0ef View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e695cf4 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2023

  1. HD: replace string WAMIT_Init with parameter

    - it is used so many times.... This routine should be split into smaller routines.
    bjonkman committed May 3, 2023
    Configuration menu
    Copy the full SHA
    fb0e81f View commit details
    Browse the repository at this point in the history
  2. HD: added back check on DT that was done previously

    WAMIT/Conv_Rdtn
    bjonkman committed May 3, 2023
    Configuration menu
    Copy the full SHA
    ffd8a2d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bba4cf1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    886ef97 View commit details
    Browse the repository at this point in the history
  5. Bug Fix: HD Driver incorrectly assumed the number of lines in the PRP…

    …InputsFile match NSteps in the HD driver input
    luwang00 committed May 3, 2023
    Configuration menu
    Copy the full SHA
    72f4b70 View commit details
    Browse the repository at this point in the history
  6. Error handling

    luwang00 committed May 3, 2023
    Configuration menu
    Copy the full SHA
    3b3a092 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. Merge pull request OpenFAST#21 from luwang00/f/Hydro_SeaState_PR1008

    Bug Fix: HD driver not reading the PRP motion input file correctly and missing variable declaration in the MD driver
    bjonkman authored May 4, 2023
    Configuration menu
    Copy the full SHA
    48672c2 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

  1. update pointer to r-test

    also remove unused variable in MD driver
    bjonkman committed May 8, 2023
    Configuration menu
    Copy the full SHA
    4ea2ef0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e836226 View commit details
    Browse the repository at this point in the history
  3. vs-build: define OPENFAST_DOUBLE_PRECISION instead of `DOUBLE_PRECI…

    …SION`
    
    This backward-compatibility of preprocessor definitions from OpenFAST#524 was broken in OpenFAST#1453.
    bjonkman committed May 8, 2023
    Configuration menu
    Copy the full SHA
    9787e50 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2023

  1. update r-test

    bjonkman committed May 9, 2023
    Configuration menu
    Copy the full SHA
    98ea7e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d5ee7d5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #8 from bjonkman/f/Hydro_SeaState_PR1008

    Merge OpenFAST dev + other SeaState/HydroDyn code cleanup
    luwang00 authored May 9, 2023
    Configuration menu
    Copy the full SHA
    be08721 View commit details
    Browse the repository at this point in the history
  4. AD vs-build: fix file list

    VTK.f90 was added twice; YAML.f90 was omitted.
    bjonkman committed May 9, 2023
    Configuration menu
    Copy the full SHA
    3acc13c View commit details
    Browse the repository at this point in the history

Commits on May 10, 2023

  1. update r-test

    fixes an issue with an AD input file
    bjonkman committed May 10, 2023
    Configuration menu
    Copy the full SHA
    773bc33 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4786b33 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #9 from bjonkman/f/Hydro_SeaState_PR1008

    A few minor updates
    luwang00 authored May 10, 2023
    Configuration menu
    Copy the full SHA
    0d9e76d View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. Configuration menu
    Copy the full SHA
    3376ddd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ddf5006 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2023

  1. update r-test

    bjonkman committed May 16, 2023
    Configuration menu
    Copy the full SHA
    a953aae View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b4380fd View commit details
    Browse the repository at this point in the history

Commits on May 17, 2023

  1. Merge pull request #10 from bjonkman/f/Hydro_SeaState_PR1008

    Update with latest OpenFAST dev and r-test
    luwang00 authored May 17, 2023
    Configuration menu
    Copy the full SHA
    7880713 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2023

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

Commits on May 22, 2023

  1. HD: add check in HD_Init that SeaState data exists

    Ran into an issue during updating the c_bindings interface where I hadn't added SeaState data yet, but triggered a segfault deep in WAMIT2.  Long term we will want to keep this check as we will want the option of running HD without SeaState
    andrew-platt committed May 22, 2023
    Configuration menu
    Copy the full SHA
    b3c27e9 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2023

  1. Configuration menu
    Copy the full SHA
    c2ce211 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #11 from andrew-platt/f/SeaState_C_Bindings_update

    HD_C_Bindings updated for SeaState
    luwang00 authored May 23, 2023
    Configuration menu
    Copy the full SHA
    a6efeb3 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2023

  1. Configuration menu
    Copy the full SHA
    5d95537 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7884f59 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    09b5a09 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    42c9900 View commit details
    Browse the repository at this point in the history
  5. Testing: reduce number of parrallel hydrodyn module cases

    Ran into memory limitations on GH actions.
    andrew-platt committed May 31, 2023
    Configuration menu
    Copy the full SHA
    179e5bf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a94caf6 View commit details
    Browse the repository at this point in the history