The instationary/time-dependent model is basically the same as the
stationary flow around the cylinder tutorial, just with different inlet flow boundary condition and using the time-dependent solver. It is therefore only available as a m-script model:
ex_navierstokes6.mSpecifically, the inlet boundary condition Re ~ 100 is defined as:
if ( opt.instatbc ) % Instationary BC
s_inflow = '6*sin(pi*t/8)*(y*(0.41-y))/0.41^2';
else
s_inflow = '6*(y*(0.41-y))/0.41^2';
end
and solved for t = 0 - 8 s, with time step 0.02, and time-stepping scheme 2 (Crank-Nicolson):
[fea.sol.u,tlist] = solvetime( fea, 'tstep', 0.02, 'tmax', 8, 'maxnit', 5, 'ischeme', 2 );
Changing these parameters in the stationary tutorial should give you similar results.