李静 发表于 2013-8-15 15:10:44

Fluent步长按设定程序应该怎样调整?

想让fluent计算步长按设定的的自动调整,比如:步长0.1s运行200步,接着步长1s运行200步,再步长5s运行200步,整个过程自动调整,该如何操作?

陈西 发表于 2013-8-22 11:32:17

/*********************************************************************UDF that changes the time step value for a time-dependent solution**********************************************************************/#include "udf.h"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]
查看完整版本: Fluent步长按设定程序应该怎样调整?