Skip to content

Commit 30261c9

Browse files
committed
fix le te order
1 parent 3668a55 commit 30261c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/kite_geometry.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,11 @@ function create_interpolations(vertices, circle_center_z, radius, gamma_tip)
107107
areas[j] = last_area + area
108108
end
109109

110-
itp_max = linear_interpolation(gamma_range, max_xs)
111-
itp_min = linear_interpolation(gamma_range, min_xs)
112-
itp_area = linear_interpolation(gamma_range, areas)
110+
te_interp = linear_interpolation(gamma_range, max_xs)
111+
le_interp = linear_interpolation(gamma_range, min_xs)
112+
area_interp = linear_interpolation(gamma_range, areas)
113113

114-
return (itp_max, itp_min, itp_area, gamma_range, max_xs, min_xs)
114+
return (le_interp, te_interp, area_interp, gamma_range, max_xs, min_xs)
115115
end
116116

117117
# Calculate center of mass for a triangular surface mesh

0 commit comments

Comments
 (0)