-
Notifications
You must be signed in to change notification settings - Fork 795
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
In gazebo_motor_model.cpp , what is the unit for the motor_constant and where is the moment calculated? #1001
Comments
Based on these notes which try to explain the gazebo parameters for the motor model, you might actually be right. |
The units of ω is [Time^-2], there is no radians involved Motor constant is in (kg)(m). According to the code for motor constant and force: According to the code for moment constant and torque: |
@JohnTGZ Thanks, I appreciate your help; but, do you know how I may obtain the motor constant in this case? I used to conduct an experimental analysis in which I measured the thrust and the rotor velocity in rpm or rad/sec that corresponded to this thrust. After fitting the data, I obtained the motor constant. However, now that you are saying that it is angular rate, how can I obtain the motor constant in that case? or simply that radians are dimensionless? |
in this line of code -----> ignition::math::Vector3d drag_torque(0, 0, -turning_direction_ * force * moment_constant_);
is this the calculation for the moment? and if it is, how is it force* moment constant? does this mean moment constant unit is meters??
Thanks in advance
The text was updated successfully, but these errors were encountered: