Skip to content

Commit 007f24e

Browse files
authored
Merge pull request #3302 from ptrbortolotti/dev
fix legend in fast writer, tight coupling inputs
2 parents 2bb3b37 + c123558 commit 007f24e

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

openfast_io/openfast_io/FAST_writer.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -290,10 +290,10 @@ def write_MainInput(self):
290290
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['DT'], 'DT', '- Recommended module time step (s)\n'))
291291
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['ModCoupling'], 'ModCoupling', '- Module coupling method (switch) {1=loose; 2=tight with fixed Jacobian updates (DT_UJac); 3=tight with automatic Jacobian updates}\n'))
292292
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['InterpOrder'], 'InterpOrder', '- Interpolation order for input/output time history (-) {1=linear, 2=quadratic}\n'))
293-
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['NumCrctn'], 'NumCrctn', '- Numerical damping parameter for tight coupling generalized-alpha integrator (-) [0.0 to 1.0]\n'))
294-
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['RhoInf'], 'RhoInf', '- Convergence iteration error tolerance for tight coupling generalized alpha integrator (-)\n'))
295-
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['ConvTol'], 'ConvTol', '- Maximum number of convergence iterations for tight coupling generalized alpha integrator (-)\n'))
296-
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['MaxConvIter'], 'MaxConvIter', '- Number of correction iterations (-) {0=explicit calculation, i.e., no corrections}\n'))
293+
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['NumCrctn'], 'NumCrctn', '- Number of correction iterations (-) {0=explicit calculation, i.e., no corrections}\n'))
294+
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['RhoInf'], 'RhoInf', '- Numerical damping parameter for tight coupling generalized-alpha integrator (-) [0.0 to 1.0]\n'))
295+
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['ConvTol'], 'ConvTol', '- Convergence iteration error tolerance for tight coupling generalized alpha integrator (-)\n'))
296+
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['MaxConvIter'], 'MaxConvIter', '- Maximum number of convergence iterations for tight coupling generalized alpha integrator (-)\n'))
297297
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['DT_UJac'], 'DT_UJac', '- Time between calls to get Jacobians (s)\n'))
298298
f.write('{:<22} {:<11} {:}'.format(self.fst_vt['Fst']['UJacSclFact'], 'UJacSclFact', '- Scaling factor used in Jacobians (-)\n'))
299299
f.write('---------------------- FEATURE SWITCHES AND FLAGS ------------------------------\n')

openfast_io/openfast_io/StC_defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def default_StC_vt():
2929
StC['StC_X_M'] = 0 # - StC X mass (kg) [must equal StC_Y_M for StC_DOF_MODE = 2]
3030
StC['StC_Y_M'] = 0 # - StC Y mass (kg) [must equal StC_X_M for StC_DOF_MODE = 2]
3131
StC['StC_Z_M'] = 0 # - StC Z mass (kg) [used only when StC_DOF_MODE=1 and StC_Z_DOF=TRUE]
32-
StC['StC_XY_M'] = 0 # - StC Z mass (kg) [used only when StC_DOF_MODE=2]
32+
StC['StC_Omni_M'] = 0 # - StC omni mass (kg) [used only when StC_DOF_MODE=2 or 3]
3333
StC['StC_X_K'] = 0 # - StC X stiffness (N/m)
3434
StC['StC_Y_K'] = 0 # - StC Y stiffness (N/m)
3535
StC['StC_Z_K'] = 0 # - StC Z stiffness (N/m) [used only when StC_DOF_MODE=1 and StC_Z_DOF=TRUE]

0 commit comments

Comments
 (0)