Skip to content

Commit

Permalink
Correct typo in bounding box calculation for actuator line wing (#1222)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbkuhn authored Sep 3, 2024
1 parent 8cfc8d0 commit 5edcac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion amr-wind/wind_energy/actuator/wing/fixed_wing_ops.H
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ struct ReadInputsOp<FixedWing, ActSrcLine>
info.bound_box = amrex::RealBox(
minpx - search_radius, minpy - search_radius,
minpz - search_radius, maxpx + search_radius,
maxpy - search_radius, maxpz + search_radius);
maxpy + search_radius, maxpz + search_radius);
} else if (amrex::toLower(wdata.motion_type) == "linear") {
// Extend bounding box in case of velocity
constexpr amrex::Real tiny = 1e-8;
Expand Down

0 comments on commit 5edcac4

Please sign in to comment.