Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Add parsing of SubDyn files
Browse files Browse the repository at this point in the history
  • Loading branch information
deslaughter committed May 13, 2024
1 parent 26f9799 commit d509cd3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions fio.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ type Files struct {
Main []Main `json:"Main"`
ElastoDyn []ElastoDyn `json:"ElastoDyn"`
BeamDyn []BeamDyn `json:"BeamDyn"`
SubDyn []SubDyn `json:"SubDyn"`
AeroDyn []AeroDyn `json:"AeroDyn"`
AeroDyn14 []AeroDyn14 `json:"AeroDyn14"`
HydroDyn []HydroDyn `json:"HydroDyn"`
Expand Down Expand Up @@ -336,6 +337,12 @@ type StControl struct {
PrescribedForcesFile Path `json:"PrescribedForcesFile"`
}

type SubDyn struct {
FileBase
CBMod Bool `json:"CBMod"`
Nmodes Integer `json:"Nmodes"`
}

//------------------------------------------------------------------------------
// Parsing
//------------------------------------------------------------------------------
Expand Down

0 comments on commit d509cd3

Please sign in to comment.