wlog_fst - write end iterative simulation time in log file
wlog_fst(u,j,flag)
- u : integer. a file descriptor
- j : integer. an iteration number
- flag : integer. a flag to set where display the information
- 1 : display informations in the scilab window
- 2 : display informations in a tcl/tk window
//Final Simulation Time
function wlog_fst(u,j,flag)
//doit faire test pour présence argument 2
tt=">> End iterative simulation "+string(j)+" : "+return_date()+"\n";
mfprintf(u,tt);
if (flag==1) then
printf(tt);
elseif(flag==2) then
ts=sprintf(tt);
put_list(ts);
end
endfunction
IRCOM Group
Alan Layec