Yes, we do have
https://github.com/sailfish-team/sailfish/blob/master/examples/poiseuille_pulsatile.py which shows how simulate a pulsatile flow, though I'm not sure how useful this will be for the problem you want to tackle.
Simulating a rotating blade will be doable, but tricky. There are at least two different ways of approaching the problem:
1) When the blade moves, voxelize it at its new position and update the simulation geometry to reflect the changes. This would use standard bounce-back nodes to represent the blade.
2) Use the immersed boundary method (for which Sailfish has some basic support) to implement the blade in the simulation.
Both of these will require some custom code to be written to handle the dynamics of the rotating blade.
Please let me know if you want to pursue this further and have any additional questions,
Michal