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
Copy file name to clipboardExpand all lines: _tutorials/multiphysics/Unsteady_FSI_Python/Dynamic_FSI_Python.md
+15-9Lines changed: 15 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,25 +46,31 @@ Here, the difference is due to the fact that the simulation is unsteady. Thus, t
46
46
The aerodynamic model is based on the compressible Reynolds-averaged Navier-Stokes equations. A central JST scheme is used for the convective fluxes, and a weighted least square
47
47
scheme is used for the gradients. The turbulence model is the SST and a CFL number of 20, for the psuedo time step, is used.
48
48
49
-
Different Mach numbers will be considered, namely $$M=[0.1, 0.2, 0.3, 0.357, 0.364]$$. The Reynolds number is fixed at 4 millions, and the temperature is equal to 273K.
49
+
Different Mach numbers will be considered, namely $$Ma=[0.1, 0.2, 0.3, 0.357, 0.364]$$. The Reynolds number is fixed at 4 millions, and the temperature is equal to 273K.
50
50
51
51
The structural model is made by a single point, positioned at the rotation axis, with two degrees of freedom, pitch and plunge.
52
52
Inertia and mass of the airfoil are concentrated at the center of mass of the profile, at a certain distance from the rotation axis. The equations of motions are available
S\ddot{h} + I\ddot{\alpha} + C_{\alpha}\dot{\alpha} + K_{\alpha}\alpha = M \\
60
+
\end{array}
61
+
\end{cases}
62
+
$$
57
63
58
64
Where $$m$$ is the mass of the airfoil, $$I$$ the inertia around the center of mass, $$S$$ the static moment of inertia at the rotation axis, $$C$$ and $$K$$ the dampings and stiffnesses respectively. $$L$$ and $$M$$ are the lift and pitching up moment.
59
65
60
66
These equations are usually adimensionalised to obtain results independent from the free-stream density of the flow.
Where $$b$$ is the semi chord of the airfoil, $$\omega_h = \sqrt{\frac{K_h}{m}}$$$$\omega_{\alpha} = \sqrt{\frac{K_{\alpha}}{I_f}}$$. If we fix them, the structure will behave always the same regardless of $$\rho_{\inf}$$.
71
+
Where $$b$$ is the semi chord of the airfoil, $$\omega_h = \sqrt{\frac{K_h}{m}}$$$$\omega_{\alpha} = \sqrt{\frac{K_{\alpha}}{I_f}}$$. If we fix them, the structure will behave always the same regardless of $$\rho_{\infty}$$.
66
72
67
-
In this context $$\Csi=0.25$$, $$r_{\alpha}=0.5$$, $$\omega_{\alpha} = 45 rad/s$$ ,$$\bar{\omega}=0.3185$$ and $$\mu=100$$.
73
+
In this context $$\chi=0.25$$, $$r_{\alpha}=0.5$$, $$\omega_{\alpha} = 45 rad/s$$, $$\bar{\omega}=0.3185$$ and $$\mu=100$$.
68
74
69
75
Note that, as we will vary the Mach number, the density will also change accordingly. Thus, with given nondimensional parameters, the inertias and stiffnesses must be
70
76
varied accordingly.
@@ -78,8 +84,8 @@ integrate a set of ODEs for the modes of the structure.
78
84
To perform the preprocessing step, in the case control section of the Nastran model (i.e. at the very beginning of
79
85
the file), the following lines must be added:
80
86
81
-
ECHO = SORT
82
-
DISPLACEMENT(PRINT,PUNCH)=ALL
87
+
*__ECHO = SORT__
88
+
*__DISPLACEMENT(PRINT,PUNCH)=ALL__
83
89
84
90
A real egeinvalue analysis will then be performed.
85
91
This will produce, in the f06 file, an equivalent, ordered, model that will
@@ -187,7 +193,7 @@ The solver can work in two ways:
187
193
188
194
2. It can integrate in time the modal equations of motion to study the linearised structural deformations when the body is surrounded by the flow
189
195
190
-
Available keyword for the config file:
196
+
Available keywords for the config file:
191
197
192
198
*__NMODES__ (int): number of modes to use in the analysis. If n modes are available in the punch file, but only the first m<n are required, set this to m
0 commit comments