IndEcol / RECC-ODYM

The RECC model
MIT License
21 stars 10 forks source link

3_SHA_CementContentReduction multiplier might need revision #73

Closed CarrerF closed 9 months ago

CarrerF commented 9 months ago

Currently, the ULD ME strategy scales all the cement in the archetypes:

if ScriptConfig['Include_REStrategy_UsingLessMaterialByDesign'] == 'True': Par_RECC_MC_Nr[115::,**Cement_loc**,:,:,mS,:] = Par_RECC_MC_Nr[115::,Cement_loc,:,:,mS,:] * (1 - RECC_System.ParameterDict['3_SHA_CementContentReduction'].Values[Cement_loc] * np.einsum('oc,gt->cgot',RECC_System.ParameterDict['3_SHA_RECC_REStrategyScaleUp'].Values[mR,:,:,mS],np.ones((Ng,Nt)))).copy()

This was okay for old archetypes because all the cement was coming from concrete. However, new archetypes have positive cement content, which should not be scaled down because cement reduction already applies at the archetype level.

The amount of cement reduction should be scaled by 3_MC_CementContentConcrete, because by definition 3_SHA_CementContentreduction is the "Share of cement in concrete that can be reduced or replaced by other materials", and not the total cement of a product.

stefanpauliuk commented 9 months ago

Hi @CarrerF, this is not a bug but a feature!

There are two strategies under ULD:

CarrerF commented 9 months ago

Hi, I get that.

However, there is some cement in the archetypes that is not coming from the disaggregation of concrete: Capture

The second bullet point refers to the cement in concrete, but not explicitly on the cement used elsewhere. However, the parameter 3_SHA_CementContentReduction is applied to the total cement, the part coming from the disaggregation of concrete, and the cement that is part of MC of the archetype. Even though I understand that the difference might not lead to a significant difference in the results.

stefanpauliuk commented 9 months ago

Exactly, there is this extra cement demand for cement in mortar, plaster, or screed. Also here, a reduction of the clinker content is plausible so it's fully OK in my view to apply the cement content reduction to these cement flows as well.