Starting costs in units.powerplant.PowerPlant are initialized [here](https://github.com/chiara-fb/assume/blob/88873033af5b13faa1c7c70608d775a838b92e25/assume/units/powerplant.py#L119) as: `self.hot_start_cost = hot_start_cost * max_power` I believe the correct way should be: `self.hot_start_cost = hot_start_cost * min_power`
Starting costs in units.powerplant.PowerPlant are initialized here as:
self.hot_start_cost = hot_start_cost * max_powerI believe the correct way should be:
self.hot_start_cost = hot_start_cost * min_power