LinAeroEla

class sharpy.linear.src.lin_aeroelastic.LinAeroEla(data, custom_settings_linear=None, uvlm_block=False, chosen_ts=None)[source]
Future work:
  • settings are converted from string to type in __init__ method.

  • implement all settings of LinUVLM (e.g. support for sparse matrices)

When integrating in SHARPy:
  • define:
    • self.setting_types

    • self.setting_default

  • use settings.to_custom_types(self.in_dict, self.settings_types, self.settings_default) for conversion to type.

Parameters
  • data (sharpy.presharpy.PreSharpy) – main SHARPy data class

  • settings_linear (dict) – optional settings file if they are not included in the data structure

settings

solver settings for the linearised aeroelastic solution

Type

dict

lingebm

linearised geometrically exact beam model

Type

lingebm.FlexDynamic

num_dof_str

number of structural degrees of freedom

Type

int

num_dof_rig

number of rigid degrees of freedom

Type

int

num_dof_flex

number of flexible degrees of freedom (num_dof_flex+num_dof_rigid=num_dof_str)

Type

int

linuvl

linearised UVLM class

Type

linuvlm.Dynamic

tsaero

aerodynamic state timestep info

Type

sharpy.utils.datastructures.AeroTimeStepInfo

tsstr

structural state timestep info

Type

sharpy.utils.datastructures.StructTimeStepInfo

dt

time increment

Type

float

q

corresponding vector of displacements of dimensions [1, num_dof_str]

Type

np.array

dq

time derivative (\(\dot{\mathbf{q}}\)) of the corresponding vector of displacements with dimensions [1, num_dof_str]

Type

np.array

SS

state space formulation (discrete or continuous time), as selected by the user

Type

scipy.signal

assemble_ss(beam_num_modes=None, wake_prop_settings=None)[source]

Assemble State Space formulation

get_gebm2uvlm_gains()[source]
Provides:
  • the gain matrices required to connect the linearised GEBM and UVLM

inputs/outputs

  • the stiffening and damping factors to be added to the linearised

GEBM equations in order to account for non-zero aerodynamic loads at the linearisation point.

The function produces the gain matrices:

  • Kdisp: gains from GEBM to UVLM grid displacements

  • Kvel_disp: influence of GEBM dofs displacements to UVLM grid velocities.

  • Kvel_vel: influence of GEBM dofs displacements to UVLM grid displacements.

  • Kforces (UVLM->GEBM) dimensions are the transpose than the

Kdisp and Kvel* matrices. Hence, when allocation this term, ii and jj indices will unintuitively refer to columns and rows, respectively.

And the stiffening/damping terms accounting for non-zero aerodynamic forces at the linearisation point:

  • Kss: stiffness factor (flexible dof -> flexible dof) accounting

for non-zero forces at the linearisation point. - Csr: damping factor (rigid dof -> flexible dof) - Crs: damping factor (flexible dof -> rigid dof) - Crr: damping factor (rigid dof -> rigid dof)

Stiffening and damping related terms due to the non-zero aerodynamic forces at the linearisation point:

\[\mathbf{F}_{A,n} = C^{AG}(\mathbf{\chi})\sum_j \mathbf{f}_{G,j} \rightarrow \delta\mathbf{F}_{A,n} = C^{AG}_0 \sum_j \delta\mathbf{f}_{G,j} + \frac{\partial}{\partial\chi}(C^{AG}\sum_j \mathbf{f}_{G,j}^0)\delta\chi\]

The term multiplied by the variation in the quaternion, \(\delta\chi\), couples the forces with the rigid body equations and becomes part of \(\mathbf{C}_{sr}\).

Similarly, the linearisation of the moments results in expression that contribute to the stiffness and damping matrices.

\[\mathbf{M}_{B,n} = \sum_j \tilde{X}_B C^{BA}(\Psi)C^{AG}(\chi)\mathbf{f}_{G,j}\]
\[\delta\mathbf{M}_{B,n} = \sum_j \tilde{X}_B\left(C_0^{BG}\delta\mathbf{f}_{G,j} + \frac{\partial}{\partial\Psi}(C^{BA}\delta\mathbf{f}^0_{A,j})\delta\Psi + \frac{\partial}{\partial\chi}(C^{BA}_0 C^{AG} \mathbf{f}_{G,j})\delta\chi\right)\]

The linearised equations of motion for the geometrically exact beam model take the input term \(\delta \mathbf{Q}_n = \{\delta\mathbf{F}_{A,n},\, T_0^T\delta\mathbf{M}_{B,n}\}\), which means that the moments should be provided as \(T^T(\Psi)\mathbf{M}_B\) instead of \(\mathbf{M}_A = C^{AB}\mathbf{M}_B\), where \(T(\Psi)\) is the tangential operator.

\[\delta(T^T\mathbf{M}_B) = T^T_0\delta\mathbf{M}_B + \frac{\partial}{\partial\Psi}(T^T\delta\mathbf{M}_B^0)\delta\Psi\]

is the linearised expression for the moments, where the first term would correspond to the input terms to the beam equations and the second arises due to the non-zero aerodynamic moment at the linearisation point and must be subtracted (since it comes from the forces) to form part of \(\mathbf{K}_{ss}\). In addition, the \(\delta\mathbf{M}_B\) term depends on both \(\delta\Psi\) and \(\delta\chi\), therefore those terms would also contribute to \(\mathbf{K}_{ss}\) and \(\mathbf{C}_{sr}\), respectively.

The contribution from the total forces and moments will be accounted for in \(\mathbf{C}_{rr}\) and \(\mathbf{C}_{rs}\).

\[\delta\mathbf{F}_{tot,A} = \sum_n\left(C^{GA}_0 \sum_j \delta\mathbf{f}_{G,j} + \frac{\partial}{\partial\chi}(C^{AG}\sum_j \mathbf{f}_{G,j}^0)\delta\chi\right)\]

Therefore, after running this method, the beam matrices should be updated as:

>>> K_beam[:flex_dof, :flex_dof] += Kss
>>> C_beam[:flex_dof, -rigid_dof:] += Csr
>>> C_beam[-rigid_dof:, :flex_dof] += Crs
>>> C_beam[-rigid_dof:, -rigid_dof:] += Crr

Track body option

The track_body setting restricts the UVLM grid to linear translation motions and therefore should be used to ensure that the forces are computed using the reference linearisation frame.

The UVLM and beam are linearised about a reference equilibrium condition. The UVLM is defined in the inertial reference frame while the beam employs the body attached frame and therefore a projection from one frame onto another is required during the coupling process.

However, the inputs to the UVLM (i.e. the lattice grid coordinates) are obtained from the beam deformation which is expressed in A frame and therefore the grid coordinates need to be projected onto the inertial frame G. As the beam rotates, the projection onto the G frame of the lattice grid coordinates will result in a grid that is not coincident with that at the linearisation reference and therefore the grid coordinates must be projected onto the original frame, which will be referred to as U. The transformation between the inertial frame G and the U frame is a function of the rotation of the A frame and the original position:

\[C^{UG}(\chi) = C^{GA}(\chi_0)C^{AG}(\chi)\]

Therefore, the grid coordinates obtained in A frame and projected onto the G frame can be transformed to the U frame using

\[\zeta_U = C^{UG}(\chi) \zeta_G\]

which allows the grid lattice coordinates to be projected onto the original linearisation frame.

In a similar fashion, the output lattice vertex forces of the UVLM are defined in the original linearisation frame U and need to be transformed onto the inertial frame G prior to projecting them onto the A frame to use them as the input forces to the beam system.

\[\boldsymbol{f}_G = C^{GU}(\chi)\boldsymbol{f}_U\]

The linearisation of the above relations lead to the following expressions that have to be added to the coupling matrices:

  • Kdisp_vel terms:

    \[\delta\boldsymbol{\zeta}_U= C^{GA}_0 \frac{\partial}{\partial \boldsymbol{\chi}} \left(C^{AG}\boldsymbol{\zeta}_{G,0}\right)\delta\boldsymbol{\chi} + \delta\boldsymbol{\zeta}_G\]
  • Kvel_vel terms:

    \[\delta\dot{\boldsymbol{\zeta}}_U= C^{GA}_0 \frac{\partial}{\partial \boldsymbol{\chi}} \left(C^{AG}\dot{\boldsymbol{\zeta}}_{G,0}\right)\delta\boldsymbol{\chi} + \delta\dot{\boldsymbol{\zeta}}_G\]

The transformation of the forces and moments introduces terms that are functions of the orientation and are included as stiffening and damping terms in the beam’s matrices:

  • Csr damping terms relating to translation forces:

    \[C_{sr}^{tra} -= \frac{\partial}{\partial\boldsymbol{\chi}} \left(C^{GA} C^{AG}_0 \boldsymbol{f}_{G,0}\right)\delta\boldsymbol{\chi}\]
  • Csr damping terms related to moments:

    \[C_{sr}^{rot} -= T^\top\widetilde{\mathbf{X}}_B C^{BG} \frac{\partial}{\partial\boldsymbol{\chi}} \left(C^{GA} C^{AG}_0 \boldsymbol{f}_{G,0}\right)\delta\boldsymbol{\chi}\]

The track_body setting.

When track_body is enabled, the UVLM grid is no longer coincident with the inertial reference frame throughout the simulation but rather it is able to rotate as the A frame rotates. This is to simulate a free flying vehicle, where, for instance, the orientation does not affect the aerodynamics. The UVLM defined in this frame of reference, named U, satisfies the following convention:

  • The U frame is coincident with the G frame at the time of linearisation.

  • The U frame rotates as the A frame rotates.

Transformations related to the U frame of reference:

  • The angle between the U frame and the A frame is always constant and equal to \(\boldsymbol{\Theta}_0\).

  • The angle between the A frame and the G frame is \(\boldsymbol{\Theta}=\boldsymbol{\Theta}_0 + \delta\boldsymbol{\Theta}\)

  • The projection of a vector expressed in the G frame onto the U frame is expressed by:

    \[\boldsymbol{v}^U = C^{GA}_0 C^{AG} \boldsymbol{v}^G\]
  • The reverse, a projection of a vector expressed in the U frame onto the G frame, is expressed by

    \[\boldsymbol{v}^U = C^{GA} C^{AG}_0 \boldsymbol{v}^U\]

The effect this has on the aeroelastic coupling between the UVLM and the structural dynamics is that the orientation and change of orientation of the vehicle has no effect on the aerodynamics. The aerodynamics are solely affected by the contribution of the 6-rigid body velocities (as well as the flexible DOFs velocities).

reshape_struct_input()[source]

Reshape structural input in a column vector