Hi,
I am a newbie to workbench scripting. I have an automation project that needs to regenerate the geometry and meshing after a specified flowtime interval. The algorithm is simple, something like:
While (flowtime <= X )
{
Geometry regeneration (call SpaceClaim script)
Mesh regeneration (call ANSYS Meshing script)
FLUENT recalculation
}
else
{
Message(" End of project")
}
How could it be possible to include FLUENT flowtime in the Workbench script?