I am working on a simulation where I am using the timeInterval option within liggghtsCommands. My understanding is that this should execute the specified command after every time interval (as defined by timeInterval), but in my case, it doesn't seem to work that way.
runFirst off;
runLast off;
runEveryCouplingStep off;
runEveryWriteStep off;
startTime 0.09;
endTime 0.09;
timeInterval 0.001;
From what I observe, the command only executes once at the start time and then continues at the coupling interval, stopping at the end time. It seems like the timeInterval parameter is not influencing the command execution as expected.
Is this the correct behavior, or am I misunderstanding how timeInterval should work? Any insights would be appreciated.
Thank you