You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/analysis/analyses.jl
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ function analyze(
91
91
solve_parameter_tuple.linsys,
92
92
solve_parameter_tuple.wakeK,
93
93
propulsor;
94
-
grid_solver_options=options.wake_solver_options,
94
+
grid_solver_options=options.grid_solver_options,
95
95
integration_options=options.integration_options,
96
96
autoshiftduct=options.autoshiftduct,
97
97
itcpshift=options.itcpshift,
@@ -106,11 +106,11 @@ function analyze(
106
106
#=
107
107
NOTE: If the linear system or wake did not converge, there is likely a serious problem that would lead to an error in the solve, so we will exit here with a fail flag for an optimizer or user
@warn"Exiting. LU decomposition of the LHS matrix for the linear system failed. Please check your body geometry and ensure that there will be no panels lying directly atop eachother or other similar problematic geometry."
113
-
elseif!options.wake_solver_options.converged[1]
113
+
elseif!options.grid_solver_options.converged[1]
114
114
@warn"Exiting. Wake elliptic grid solve did not converge. Consider a looser convergence tolerance if the geometry looks good."
0 commit comments