use of spold2.UserMasterData in project olca-modules by GreenDelta.
the class MasterData method writeTechFlow.
public static void writeTechFlow(IntermediateExchange techFlow, UserMasterData masterData) {
IntermediateExchange masterFlow = new IntermediateExchange();
masterData.intermediateExchanges.add(masterFlow);
// !
masterFlow.id = techFlow.flowId;
masterFlow.unitId = techFlow.unitId;
masterFlow.name = techFlow.name;
masterFlow.unit = techFlow.unit;
}
Aggregations