We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad9d635 commit a3d1a52Copy full SHA for a3d1a52
1 file changed
test/wing_geometry/test_billowing.jl
@@ -117,10 +117,10 @@ end
117
for pair in 1:(n_ribs - 1)
118
res = te_arc_length_between_ribs(
119
wing, pair, pair + 1)
120
- # measured_pct = (arc - straight) / arc * 100
121
measured = (res.arc - res.straight) / res.arc * 100
122
- # With 8 panels per pair the discrete approximation
123
- # won't be exact, but should be close.
+ diff = measured - pct
+ @info "Pair $pair: measured=$(round(measured; digits=3))%" *
+ " target=$(pct)% diff=$(round(diff; digits=3))%"
124
@test isapprox(measured, pct; rtol=0.05)
125
end
126
0 commit comments