I have several operators in a simulation setting. An operator has a location, a target location, a task and some status information (e.g. energy level). The simulation should perform simulation steps and set the operators' target location. At each simulation step, the operator should move towards his target location, update his status information and may change his task.
Now I wonder where to put these update logic.
Should I use a service class which manipulates the operator's status or put a makeSimulationStep() method in the operator class?
On the one hand, the first approach is somehow an anemic domain model, but on the other hand the second approach seems as it puts simulation related tasks in the operator class.