Skip to content

Commit

Permalink
clean up function names you missed
Browse files Browse the repository at this point in the history
  • Loading branch information
juddmehr committed Feb 19, 2025
1 parent 8dd7443 commit adb1d2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/postprocess/boundary_layer_green_compressible.jl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function setup_boundary_layer_functions_green(
edge_acceleration(ss) = FLOWMath.derivative.(Ref(edge_velocity), ss)

# r's
r_coords = Akima_smooth(s, duct_control_points[2, :])
r_coords = smooth_Akima(s, duct_control_points[2, :])

# dr/ds
radial_derivative(ss) = FLOWMath.derivative.(Ref(r_coords), ss)
Expand Down
2 changes: 1 addition & 1 deletion src/visualization/plot_recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ end
[stagnz; bvp.normal[1, blo.stagnation_indices[2]:Int(bvp.npanel[1])]],
blo.upper_solved_steps,
)
nhatru = akima_smooth(
nhatru = smooth_akima(
blo.surface_length_upper,
[stagnr; bvp.normal[2, blo.stagnation_indices[2]:Int(bvp.npanel[1])]],
blo.upper_solved_steps,
Expand Down

0 comments on commit adb1d2f

Please sign in to comment.