FILE: idmtools_core/idmtools/entities/iplatform_ops/iplatform_simulation_operations.py
def batch_create(self, sims: List[Simulation], display_progress: bool = True, **kwargs) -> List[Simulation]:
"""
Provides a method to batch create simulations.
Args:
sims: List of simulations to create
display_progress: Show progress bar
**kwargs:
Returns:
List of tuples containing the create object and id of item that was created
"""
return batch_create_items(sims, create_func=self.create, display_progress=display_progress,
progress_description="Commissioning Simulations", unit="simulation",
**kwargs)