I want to release particles every hour for a month and need an array with a date in this format '2013/05/23;00:00:00:000' (YYYY/MM/DD;hh:mm:SS:sss) that has the following hour in every step. So something like this for a whole month:
x=['2013/05/23;01:00:00:000' '2013/05/23;02:00:00:000' '2013/05/23;03:00:00:000' ...'2013/06/23;01:00:00:000']
Any idea how to loop this? Thanks!