/**
  * Convenience function for getting the sell value of the input materials.
  *
  * @param \iveeCore\IndustryModifier $iMod for market context
  *
  * @return float
  * @throws \iveeCore\Exceptions\PriceDataTooOldException if $maxPriceDataAge is exceeded by any of the materials
  */
 public function getOutputSellValue(IndustryModifier $iMod)
 {
     return $this->outputMaterials->getMaterialSellValue($iMod);
 }