Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
25137ad
HD c-bind: declare added mass routine public, notes on init position
andrew-platt Sep 10, 2025
4fc16a9
SS c-bind: linting (indentation not matching)
andrew-platt Sep 10, 2025
25d5f64
SS c-bind: GetFluid* routines
andrew-platt Sep 10, 2025
19f91c6
SS wavefield: change WaveField_GetNodeWaveVel to WaveField_GetNodeWav…
andrew-platt Sep 10, 2025
c9ab843
seastate: update python lib, revise pointer passing
andrew-platt Sep 12, 2025
8baa0c9
ss c-bind: more debuglevel outputs and tidying
andrew-platt Sep 12, 2025
cbf7b78
ss c-bind: more linting/tidying/compacting. Add GetWaveNorm routine
andrew-platt Sep 12, 2025
244a7f7
ss c-bind: split out PreInit from Init
andrew-platt Sep 12, 2025
cfd4f04
ss c-bind: remove density from the SeaSt_C_GetFluidVelAccDens routine
andrew-platt Sep 16, 2025
41914b1
ss c-bind python: interface updates to match c-bind updates
andrew-platt Sep 16, 2025
61a2ab1
ss c-bind/python: add vtk inputs to pre-init (not working yet)
andrew-platt Sep 16, 2025
69ab53f
ss c-bind: add regression test
andrew-platt Sep 17, 2025
2903aa3
ss c-bind: add vtk outputs
andrew-platt Sep 17, 2025
fff4aba
ss c-bind: add MemClear routine
andrew-platt Sep 17, 2025
24af040
ss c-bind: update notes on a few routines
andrew-platt Sep 17, 2025
6d510fc
ss c-bind python: change restype to None
andrew-platt Sep 17, 2025
781f61d
ss c-bind: remove WaveElevSeriesFlag_C, WrWvKinMod_C from init
andrew-platt Sep 17, 2025
716f5f4
ss c-bind: incorrect type, failed to compile in double
andrew-platt Sep 17, 2025
4cdc47a
ss python: revert change to interface_abcy.py, add suggestions from @…
andrew-platt Sep 17, 2025
c69f059
gh workflow: add ss python interface test directory
andrew-platt Sep 17, 2025
bf1e67a
ss python: reduce precision in regression test results
andrew-platt Sep 17, 2025
0e929ae
SS: set default r in GetNodeWaveNormal to 5 mm
andrew-platt Sep 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/automated-dev-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ jobs:
${{github.workspace}}/build/reg_tests/modules/moordyn
${{github.workspace}}/build/reg_tests/modules/inflowwind
${{github.workspace}}/build/reg_tests/modules/hydrodyn
${{github.workspace}}/build/reg_tests/modules/seastate
!${{github.workspace}}/build/reg_tests/glue-codes/openfast-cpp/5MW_Baseline


Expand Down
38 changes: 0 additions & 38 deletions glue-codes/python/examples/SeaState.py

This file was deleted.

2 changes: 1 addition & 1 deletion glue-codes/python/pyOpenFAST/aerodyn_inflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def adi_preinit(self) -> None:
byref(c_float(self.water_depth)), # IN -> water depth
byref(c_float(self.mean_sea_level_offset)), # IN -> MSL to SWL offset
byref(c_int(self.mhk)), # IN -> mhk flag (0=not MHK, 1=fixed bottom, 2=floating)
byref(c_int(self.debug_level)), # IN -> debug level (0=None to 4=Fatal)
byref(c_int(self.debug_level)), # IN -> debug level (0=None to 4=all meshes)
byref(self.error_status_c), # OUT <- error status code
self.error_message_c # OUT <- error message buffer
)
Expand Down
2 changes: 1 addition & 1 deletion glue-codes/python/pyOpenFAST/interface_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class OpenFASTInterfaceType(CDLL):
ERROR_MSG_C_LEN = 8197

# NOTE: the length of the name used for any output file written by the
# HD Fortran code is 1025.
# Fortran code is 1025.
default_str_c_len = 1025

abort_error_level = c_int(4)
Expand Down
Loading