You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug description
The blade inertia reported in the summary file is missing several contributions (center of mass offsets and cross-section inertia, in particular the polar moment of inertia).
The calculation is done here
For a straight blade, the summary file will always return 0 inertia in the (3,3) term.
As far as I can tell, this calculation is only done for the summary file output, so it should have a minor impact on the code.
To Reproduce
Write a BeamDyn summary file with any beamdyn blade file. The blade inertia is wrong in the (3,3) element.
Expected behavior
For a volume, V, the inertia is obtained over integration over all points of the volume $\boldsymbol{r}$:
where $m(s)$ is the mass per length at a given cross-section, and $\boldsymbol{j}$ is the moment of inertia density (i.e. per length and for each cross-section). If all the mass were concentrated at the center of mass, and if the line $L$ corresponds to the center of mass line, then the second part would be zero.
The first part is what is being computed by BeamDyn (here).
For a straight blade, the first term's contribution to $J_{zz}$ is always zero (because $r_x^2+r_y^2$). No matter if the blade is straight or not, we need to add the second term's contribution to end up with the correct inertia (accounting for center of mass offsets and section inertia).
I believe one solution would consist in
Using the 6x6 rigid body mass matrix of each section, transform it to the global coordinate system
(see e.g. here)
Extracting the mass, COG and inertia about the COG for each cross-section (see e.g. here).
Translating the 6x6 mass matrix to the blade origin (see e.g., here).
integrating each contribution, summing using the integration weights.
As an alternative (that's the method I was using when I found this bug), I believe we could obtain the rigid body mass matrix of the Blade by computing:
Where $\boldsymbol{S}$ is the matrix of rigid body modes in its 6 columns, and $\boldsymbol{M}$ is the mass matrix. Maybe the rigid body modes need to be scaled by the integration weights to improve the accuracy.
The text was updated successfully, but these errors were encountered:
Originally reported in #302. This is a better description, so closing #302.
ebranlard
changed the title
BeamDyn reports wrong inertia (missing section polar inertia) in summary file
BeamDyn reports wrong inertia (missing cg-offsets and section inertia) in summary file
Nov 22, 2022
Bug description
The blade inertia reported in the summary file is missing several contributions (center of mass offsets and cross-section inertia, in particular the polar moment of inertia).
The calculation is done here
For a straight blade, the summary file will always return 0 inertia in the (3,3) term.
As far as I can tell, this calculation is only done for the summary file output, so it should have a minor impact on the code.
To Reproduce
Write a BeamDyn summary file with any beamdyn blade file. The blade inertia is wrong in the (3,3) element.
Expected behavior$\boldsymbol{r}$ :
For a volume, V, the inertia is obtained over integration over all points of the volume
If for simplicity, the integral is performed along a line,$L$ (with the curvilinear coordinate $s$ ), the inertia is something like:
where$m(s)$ is the mass per length at a given cross-section, and $\boldsymbol{j}$ is the moment of inertia density (i.e. per length and for each cross-section). If all the mass were concentrated at the center of mass, and if the line $L$ corresponds to the center of mass line, then the second part would be zero.$J_{zz}$ is always zero (because $r_x^2+r_y^2$ ). No matter if the blade is straight or not, we need to add the second term's contribution to end up with the correct inertia (accounting for center of mass offsets and section inertia).
The first part is what is being computed by BeamDyn (here).
For a straight blade, the first term's contribution to
I believe one solution would consist in
(see e.g. here)
As an alternative (that's the method I was using when I found this bug), I believe we could obtain the rigid body mass matrix of the Blade by computing:
Where$\boldsymbol{S}$ is the matrix of rigid body modes in its 6 columns, and $\boldsymbol{M}$ is the mass matrix. Maybe the rigid body modes need to be scaled by the integration weights to improve the accuracy.
The text was updated successfully, but these errors were encountered: