Skip to content

Yaw optimization serial refine - Ny passes #1013

Answered by paulf81
fwasilcz asked this question in Q&A
Discussion options

You must be logged in to vote

Hi yes, you have the idea right. If you look to line 289 of yaw_optimizer_sr.py you'll see the relavent code for generating the points to test in the refine pass:

                # Update bounds for next iteration to close proximity of optimal solution
                dx = (
                    evaluation_grid[1, :, :] -
                    evaluation_grid[0, :, :]
                )[ids]
                self._yaw_lbs[ids] = np.clip(
                    yaw_angles_opt[ids] - 0.50 * dx,
                    self._minimum_yaw_angle_subset[ids],
                    self._maximum_yaw_angle_subset[ids]
                )
                self._yaw_ubs[ids] = np.clip(
                    yaw_angles…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@fwasilcz
Comment options

Answer selected by fwasilcz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants