From 64d0e14c550d4b66298e3be3c6d32781db94a6e7 Mon Sep 17 00:00:00 2001 From: LKa505 Date: Mon, 19 Jan 2026 10:23:11 +0100 Subject: [PATCH] fixes access to the 2nd column (GenTrq_TLU) in the DLL_NumTrq related table for the read_ServoDyn method --- openfast_io/openfast_io/FAST_reader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openfast_io/openfast_io/FAST_reader.py b/openfast_io/openfast_io/FAST_reader.py index 451a6686e..7f28ce44b 100644 --- a/openfast_io/openfast_io/FAST_reader.py +++ b/openfast_io/openfast_io/FAST_reader.py @@ -1645,7 +1645,7 @@ def read_ServoDyn(self): for i in range(self.fst_vt['ServoDyn']['DLL_NumTrq']): data = f.readline().split() self.fst_vt['ServoDyn']['GenSpd_TLU'][i] = float_read(data[0]) - self.fst_vt['ServoDyn']['GenTrq_TLU'][i] = float_read(data[0]) + self.fst_vt['ServoDyn']['GenTrq_TLU'][i] = float_read(data[1]) # ServoDyn Output Params (sd_out_params) f.readline()