We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8909fce commit 0141122Copy full SHA for 0141122
src/solver.jl
@@ -478,14 +478,10 @@ function gamma_loop(
478
479
relative_velocity_array .= va_array .+ induced_velocity_all
480
for i in 1:n_panels
481
- relative_velocity_crossz[i, :] .= cross3(
482
- view(relative_velocity_array, i, :),
483
- view(y_airf_array, i, :)
484
- )
485
- v_acrossz_array[i, :] .= cross3(
486
- view(va_array, i, :),
487
488
+ relative_velocity_crossz[i, :] .= MVec3(view(relative_velocity_array, i, :)) ×
+ MVec3(view(y_airf_array, i, :))
+ v_acrossz_array[i, :] .= MVec3(view(va_array, i, :)) ×
489
end
490
491
0 commit comments