|
|
You can use dynamic meshes for steady-state applications as well as for transient applications. Some examples include: checking the valve application after reaching a steady-state valve position; or after a fluid-structure interface application has reached a steady-state solution.
There are no differences in the meshing aspect between steady-state cases and transient cases. Furthermore, setting up a steady-state simulation is similar to setting up a transient case, described in Section 11.3. However, there are a few differences which you should note:
The mesh must be manually updated through journal files or execute commands. To update the mesh, you can use the Mesh Motion dialog box.
Run Calculation
Preview Mesh Motion...
Alternatively, you can use the following text command:
solve
mesh-motion
which can also be used as an execute command in the Execute Commands dialog box:
Calculation Activities
Create/Edit...
(Execute Commands)
You can display dynamic mesh statistics (such as minimum and maximum volumes and maximum cell and face skewness) by clicking the Update button in the Mesh Motion dialog box (Figure 11.3.12).
|
|
The following options are not available for steady-state applications:
|
An Example of Steady-State Dynamic Mesh Usage
Consider a rescue drop case shown in Figure 11.3.13. The object can be moved in any position in the steady-state solver, after which steady-state analyses can be performed at different object positions.
The dynamic mesh parameters setup is identical for the steady-state and transient cases, which is described in Section 11.3.1. When setting up the dynamic zones, the procedures are similar to those described in Section 11.3.9, except that the UDF selected from the Motion UDF/Profile drop-down list is different. In steady-state cases the dtime passed to the UDF is by default 1. So, in this example, the object will move 50mm each time the following UDF is executed:
#include "udf.h"
DEFINE_CG_MOTION(pod,dt,vel,omega,time,dtime)
{
NV_S(vel,=,0);
NV_S(omega,=,0);
vel[1] = -50e-3;
}
|
The resulting mesh is shown in Figure 11.3.15.