Skip to content
Snippets Groups Projects

ecological_assessment: delete unused BPR and some corrections

Open kbistreck requested to merge fix/correctErrorsInEcologicalAssessment into main
18 files
+ 93
120
Compare changes
  • Side-by-side
  • Inline
Files
18
@@ -37,12 +37,12 @@ void LifeCycleEmissionsSchaefer::run(const std::shared_ptr<RuntimeIO> &rtIO, std
/* Production phase */
myRuntimeInfo->out << " Calculation of production phase..." << std::endl;
theProduction.calculate_production_resources(schaeferIOData, rtIO);
theProduction.calculate_production_resources(schaeferIOData);
theProduction.calculate_production_emissions(schaeferIOData);
/* Operation phase*/
myRuntimeInfo->out << " Calculation of operation phase..." << std::endl;
theOperation.calculate_operation_resources(schaeferIOData, rtIO, theProduction);
theOperation.calculate_operation_resources(schaeferIOData,theProduction);
theOperation.calculate_operation_emissions(schaeferIOData, theProduction);
/* End-of-Life Phase */
Loading