Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

default value initialization to avoid redundant variable assignment #678

Merged
merged 14 commits into from
Jun 26, 2023

Conversation

tejalbarnwal
Copy link
Collaborator

@tejalbarnwal tejalbarnwal commented Jun 20, 2023

Sub-Tasks

  • Modify wavefield.cc to initialize the wavefield parameter with default values and update them only when a user passes a value for it in the SDF file.
  • Modify all world sdf files in order only to have PMS model wave parameters, namely -- direction, steepness, gain, and period(will do it after the first review)

Summary

The modification avoids repeated initialization of some wavefield variables, which always have the same value across all world files. Therefore now, the publisher allows the user to indicate solely the variable they wish to modify, leaving the remaining variables to be managed automatically.

Test it

To test this, one can use the sydney_regatta.sdf. The world file currently only publishes direction, steepness, gain, and period.

@tejalbarnwal tejalbarnwal requested a review from caguero June 20, 2023 07:31
@M1chaelM
Copy link
Collaborator

For now, please review this using the testing instructions above to make sure the sydney_regatta.sdf is working properly.

@M1chaelM M1chaelM self-requested a review June 22, 2023 20:45
@M1chaelM
Copy link
Collaborator

@tejalbarnwal This seems to be working fine for syndey_regatta.sdf

@tejalbarnwal
Copy link
Collaborator Author

@tejalbarnwal This seems to be working fine for syndey_regatta.sdf

great, I will go ahead and push the updated world files

@tejalbarnwal
Copy link
Collaborator Author

update: I have updated all the world files

Copy link
Contributor

@caguero caguero left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very minor comments, looks almost good to go!

@@ -28,6 +28,8 @@
#include <gz/math/Vector2.hh>
#include <gz/math/Vector3.hh>

#include <iostream>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this #include?

Copy link
Collaborator Author

@tejalbarnwal tejalbarnwal Jun 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry, I forgot to remove that
I used it to debug initially, will remove it

this->data->model = params["model"].string_value();
this->data->gain = params["gain"].double_value();
this->data->tau = params["tau"].double_value();
if (params.count("size") > 0){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nitpick: Could you move the open bracket to the next line to be consistent with the Gazebo style?

if (params.count("size") > 0)
{
  this->data->size = {params["size"].vector3d_value().x(),
    params["size"].vector3d_value().y()};
}

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure, i will update them

value {
type: DOUBLE
double_value: 2
double_value: 0.5
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this change on purpose? It's usually 0.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies for the oversight, i forgot to reset the value back to 0 after conducting the tuning experiments, resulting in its unchanged state. I will update it in with a commit.

Copy link
Contributor

@caguero caguero left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me now. Good job!

@M1chaelM
Copy link
Collaborator

@tejalbarnwal Is this PR also intended to address issue #684 (which we discussed in our meeting but I only just wrote up today)? If so, we should wait to merge it until we figure out what the new parameters should be. Otherwise we can merge this now and create a new PR for #684. What would you prefer?

@tejalbarnwal
Copy link
Collaborator Author

@tejalbarnwal Is this PR also intended to address issue #684 (which we discussed in our meeting but I only just wrote up today)? If so, we should wait to merge it until we figure out what the new parameters should be. Otherwise, we can merge this now and create a new PR for #684. What would you prefer?

We could merge this and create a new PR to address #684; this way, we could have a clean commit log for the repo. I was also thinking if I should squash all the commits made to this branch to just one commit?

@M1chaelM
Copy link
Collaborator

M1chaelM commented Jun 26, 2023

@tejalbarnwal Ok, in that case I'll make a new PR soon with the new wavefield values. Could you review it today?

I don't usually squash commits but I don't think it's a problem if you prefer that.

Edit: Also, since this is approved and we aren't modifying it further and we're wrapping up for the release today, it would help if you could merge it soon. Thanks!

@tejalbarnwal
Copy link
Collaborator Author

@tejalbarnwal Ok, in that case I'll make a new PR soon with the new wavefield values. Could you review it today?

I don't usually squash commits but I don't think it's a problem if you prefer that.

Edit: Also, since this is approved and we aren't modifying it further and we're wrapping up for the release today, it would help if you could merge it soon. Thanks!

Yes, I will test out the parameters specified wave model envelope in #684. I will let you know in a few minutes if any warnings or error is raised on my system

Oh, I wasn't aware that I could merge it. I am used to reviewers merging it in other repos. I will merge it now.

@tejalbarnwal tejalbarnwal merged commit 190124b into main Jun 26, 2023
@M1chaelM M1chaelM deleted the tejal/avoid_unneeded_variable branch June 26, 2023 20:51
@M1chaelM
Copy link
Collaborator

@tejalbarnwal Thanks and no problem. We let the creator of the PR perform the merge (if you have the permissions, which you do).

You are welcome to play around with the wave parameters, but I will also soon have a PR for you to review with specific values for the various practice worlds.

@tejalbarnwal
Copy link
Collaborator Author

@tejalbarnwal Thanks and no problem. We let the creator of the PR perform the merge (if you have the permissions, which you do).

You are welcome to play around with the wave parameters, but I will also soon have a PR for you to review with specific values for the various practice worlds.

yup, I will review it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants