From c9fa3a44731e27c7ad89b88a9cab979533d1fbf6 Mon Sep 17 00:00:00 2001 From: gitea Date: Sat, 12 Oct 2024 21:49:16 +0800 Subject: [PATCH] modify current max senario time from 150s to 250s --- aio/code/data_process/current.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/code/data_process/current.py b/aio/code/data_process/current.py index fa3b09b..8129311 100644 --- a/aio/code/data_process/current.py +++ b/aio/code/data_process/current.py @@ -326,7 +326,7 @@ def p_scenario(wb, single, vel, trq, rpms, rrs, dur, w2t): data.append(df.iloc[row, 1]) i = 0 - for row in ws.iter_rows(min_row=2, min_col=2, max_row=150000, max_col=3): + for row in ws.iter_rows(min_row=2, min_col=2, max_row=250000, max_col=3): for cell in row: try: _ = f"{data[i]:.2f}"