All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openlca.io.ecospold2.input.Parameters Maven / Gradle / Ivy

The newest version!
package org.openlca.io.ecospold2.input;

import java.util.ArrayList;
import java.util.List;

import org.openlca.core.model.Parameter;
import org.openlca.core.model.ParameterScope;
import org.openlca.io.ecospold2.UncertaintyConverter;
import org.openlca.util.Strings;

import spold2.DataSet;
import spold2.Exchange;
import spold2.IntermediateExchange;
import spold2.Property;
import spold2.Spold2;

final class Parameters {

	private Parameters() {
	}

	/**
	 * Creates openLCA process parameters from the parameters and formulas in
	 * the given data set.
	 */
	static List fetch(DataSet ds, ImportConfig config) {
		List params = new ArrayList<>();
		fetchProcessParameters(ds, params, config);
		fetchFromExchanges(Spold2.getElemFlows(ds), params, config);
		fetchFromExchanges(Spold2.getProducts(ds), params, config);
		return params;
	}

	private static void fetchProcessParameters(DataSet ds,
			List parameters, ImportConfig config) {
		for (spold2.Parameter param : Spold2.getParameters(ds)) {
			if (!canCreate(param.variableName, parameters))
				continue;
			Parameter olcaParam = new Parameter();
			parameters.add(olcaParam);
			olcaParam.description = param.unitName;
			olcaParam.name = param.variableName;
			setScope(param, olcaParam);
			olcaParam.value = param.amount;
			olcaParam.uncertainty = UncertaintyConverter.toOpenLCA(param.uncertainty, 1);
			String formula = param.mathematicalRelation;
			if (config.withParameterFormulas && isValid(formula, config)) {
				olcaParam.formula = formula.trim();
				olcaParam.isInputParameter = false;
			} else {
				olcaParam.isInputParameter = true;
			}
		}
	}

	private static void setScope(spold2.Parameter param,
			Parameter olcaParam) {
		String scope = param.scope;
		String global = ParameterScope.GLOBAL.name();
		if (scope != null && global.equalsIgnoreCase(scope))
			olcaParam.scope = ParameterScope.GLOBAL;
		else
			olcaParam.scope = ParameterScope.PROCESS;
	}

	private static void fetchFromExchanges(List exchanges,
			List params, ImportConfig config) {
		for (Exchange exchange : exchanges) {
			fetchFromExchange(exchange, params, config);
			fetchFromProperties(exchange.properties, params, config);
			if (exchange instanceof IntermediateExchange)
				fetchFromProductionVolume((IntermediateExchange) exchange,
						params, config);
		}
	}

	private static void fetchFromExchange(Exchange exchange,
			List params, ImportConfig config) {
		if (!canCreate(exchange.variableName, params))
			return;
		Parameter olcaParam = new Parameter();
		olcaParam.name = exchange.variableName;
		olcaParam.scope = ParameterScope.PROCESS;
		olcaParam.value = exchange.amount;
		olcaParam.description = exchange.unit;
		String formula = exchange.mathematicalRelation;
		if (config.withParameterFormulas && isValid(formula, config)) {
			olcaParam.formula = formula.trim();
			olcaParam.isInputParameter = false;
		} else
			olcaParam.isInputParameter = true;
		params.add(olcaParam);
	}

	private static void fetchFromProductionVolume(
			IntermediateExchange exchange, List params,
			ImportConfig config) {
		String varName = exchange.productionVolumeVariableName;
		Double amount = exchange.productionVolumeAmount;
		String formula = exchange.productionVolumeMathematicalRelation;
		if (!canCreate(exchange.productionVolumeVariableName, params))
			return;
		Parameter param = new Parameter();
		param.name = varName;
		param.scope = ParameterScope.PROCESS;
		param.value = amount == null ? 0d : amount;
		if (config.withParameterFormulas && isValid(formula, config)) {
			param.formula = formula.trim();
			param.isInputParameter = false;
		} else
			param.isInputParameter = true;
		params.add(param);
	}

	private static void fetchFromProperties(List properties,
			List parameters, ImportConfig config) {
		for (Property property : properties) {
			if (!canCreate(property.variableName, parameters))
				continue;
			Parameter olcaParam = new Parameter();
			olcaParam.name = property.variableName;
			olcaParam.scope = ParameterScope.PROCESS;
			olcaParam.value = property.amount;
			olcaParam.description = property.unit;
			String formula = property.mathematicalRelation;
			if (config.withParameterFormulas && isValid(formula, config)) {
				olcaParam.formula = formula.trim();
				olcaParam.isInputParameter = false;
			} else
				olcaParam.isInputParameter = true;
			parameters.add(olcaParam);
		}
	}

	private static boolean canCreate(String name, List parameters) {
		if (Strings.nullOrEmpty(name))
			return false;
		if (contains(name, parameters))
			return false;
		return true;
	}

	static boolean isValid(String formula, ImportConfig config) {
		if (formula == null)
			return false;
		if (formula.trim().isEmpty())
			return false;
		if (!config.checkFormulas)
			return true;
		if (formula.startsWith("LiveLink"))
			return false;
		if (formula.contains(","))
			return false;
		if (formula.contains("UnitConversion"))
			return false;
		if (formula.contains("Ref("))
			return false;
		else
			return true;
	}

	static boolean contains(String parameterName, List parameters) {
		for (Parameter param : parameters) {
			if (Strings.nullOrEqual(parameterName, param.name))
				return true;
		}
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy