Fluent步长按设定程序应该怎样调整?
想让fluent计算步长按设定的的自动调整,比如:步长0.1s运行200步,接着步长1s运行200步,再步长5s运行200步,整个过程自动调整,该如何操作? /*********************************************************************UDF that changes the time step value for a time-dependent solution**********************************************************************/#include &quot;udf.h&quot;DEFINE_DELTAT(mydeltat,d){real time_step;real flow_time = CURRENT_TIME;if (flow_time < 0.5)time_step = 0.1;elsetime_step = 0.2;return time_step;}
页:
[1]