Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions modules/moordyn/src/MoorDyn.f90
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ MODULE MoorDyn

PRIVATE

TYPE(ProgDesc), PARAMETER :: MD_ProgDesc = ProgDesc( 'MoorDyn', 'v2.0.0', '2023-09-18' )
TYPE(ProgDesc), PARAMETER :: MD_ProgDesc = ProgDesc( 'MoorDyn', 'v2.2.2', '2024-01-16' )

INTEGER(IntKi), PARAMETER :: wordy = 0 ! verbosity level. >1 = more console output

Expand Down Expand Up @@ -163,7 +163,7 @@ SUBROUTINE MD_Init(InitInp, u, p, x, xd, z, other, y, m, DTcoupling, InitOut, Er
InitOut%Ver = MD_ProgDesc

CALL WrScr(' This is MoorDyn v2, with significant input file changes from v1.')
CALL WrScr(' Copyright: (C) 2023 National Renewable Energy Laboratory, (C) 2019 Matt Hall')
CALL DispCopyrightLicense( MD_ProgDesc%Name, 'Copyright (C) 2019 Matt Hall' )


!---------------------------------------------------------------------------------------------
Expand Down
8 changes: 4 additions & 4 deletions modules/moordyn/src/MoorDyn_Driver.f90
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ PROGRAM MoorDyn_Driver

CHARACTER(20) :: FlagArg ! flag argument from command line
CHARACTER(200) :: git_commit ! String containing the current git commit hash
TYPE(ProgDesc), PARAMETER :: version = ProgDesc( 'MoorDyn Driver', '', '' )
TYPE(ProgDesc), PARAMETER :: version = ProgDesc( 'MoorDyn Driver', '', '2024-01-18' )



Expand All @@ -131,8 +131,8 @@ PROGRAM MoorDyn_Driver
CALL CheckArgs( MD_InitInp%FileName, Arg2=drvrInitInp%InputsFile, Flag=FlagArg )
IF ( LEN( TRIM(FlagArg) ) > 0 ) CALL NormStop()

! Display the copyright notice
CALL DispCopyrightLicense( version%Name, 'Copyright (C) 2021 NREL, 2019 Matt Hall' )
! ! Display the copyright notice
! CALL DispCopyrightLicense( version%Name, ' Copyright (C) 2019 Matt Hall' )
! Obtain OpenFAST git commit hash
git_commit = QueryGitVersion()
! Tell our users what they're running
Expand All @@ -144,7 +144,7 @@ PROGRAM MoorDyn_Driver
CALL CPU_TIME ( ProgStrtCPU ) ! Initial time (this zeros the start time when used as a MATLAB function)


CALL WrScr( ' MD Driver updated 2022-01-12')
CALL WrScr('MD Driver updated '//TRIM( version%Date ))

! Parse the driver input file and run the simulation based on that file
CALL get_command_argument(1, drvrFilename)
Expand Down