org.javafmi.modeldescription.v2.ModelDescription Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of fmu-wrapper Show documentation
                Show all versions of fmu-wrapper Show documentation
javaFMI is a Java Library for the functional mock-up interface (or FMI). FMI defines a standardized interface to be used in computer simulations. The FMI Standard has beed developed by a large number of software companies and research centers that have worked in a cooperation project under the name of MODELISAR. This library addresses the connection of a java application with a FMU (functional mock-up unit).
                
             The newest version!
        
        /*
 *  Copyright 2013-2018 - Monentia
 *
 * Daccosim is a collaborative development effort between EDF (France),
 *  CentraleSupélec (France), EIFER Institute (Germany), SIANI institute (Spain)
 *  and Monentia S.L. (Spain)
 *
 *  This File is part of JavaFMI Project
 *
 *  JavaFMI Project is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation, either version 3 of the License.
 *
 *  JavaFMI Project is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *  GNU Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public License
 *  along with JavaFMI. If not, see  .
 */
package org.javafmi.modeldescription.v2;
import org.javafmi.modeldescription.NoSuchVariableException;
import org.javafmi.modeldescription.v2.Capabilities.Capability;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.ElementList;
import org.simpleframework.xml.Root;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static java.util.Arrays.stream;
@Root(name = "fmiModelDescription")
public class ModelDescription implements org.javafmi.modeldescription.ModelDescription {
	@Attribute(required = true)
	private String fmiVersion;
	@Attribute(required = true)
	private String modelName;
	@Attribute(required = true)
	private String guid;
	@Attribute(required = false)
	private String description;
	@Attribute(required = false)
	private String author;
	@Attribute(required = false)
	private String version;
	@Attribute(required = false)
	private String copyright;
	@Attribute(required = false)
	private String license;
	@Attribute(required = false)
	private String generationTool = "";
	@Attribute(required = false)
	private String generationDateAndTime;
	@Attribute(required = false)
	private String variableNamingConvention;
	@Attribute(required = false)
	private int numberOfEventIndicators;
	@ElementList(name = "UnitDefinitions", required = false)
	private List unitDefinitions;
	@ElementList(name = "TypeDefinitions", required = false)
	private List typeDefinitions;
	@ElementList(name = "LogCategories", required = false)
	private List logCategories;
	@Element(name = "DefaultExperiment", required = false)
	private DefaultExperiment defaultExperiment = new DefaultExperiment();
	@ElementList(name = "VendorAnnotations", required = false)
	private List vendorAnnotations = new ArrayList<>();
	@ElementList(name = "ModelVariables", required = true)
	private List modelVariablesList = new ArrayList<>();
	@Element(name = "ModelStructure", required = true)
	private ModelStructure modelStructure;
	@Element(name = "ModelExchange", required = false)
	private ModelExchange modelExchange;
	@Element(name = "CoSimulation", required = false)
	private CoSimulation coSimulation;
	private Map modelVariables = new HashMap<>();
	private Map modelVariablesByRef = new HashMap<>();
	private String[] variablesNames;
	@Override
	public String getFmiVersion() {
		return fmiVersion;
	}
	public String getModelIdentifier() {
		return coSimulation.getModelIdentifier();
	}
	public String getDescription() {
		return description;
	}
	public String getAuthor() {
		return author;
	}
	public String getVersion() {
		return version;
	}
	public String getCopyright() {
		return copyright;
	}
	public String getLicense() {
		return license;
	}
	public String getGenerationTool() {
		return generationTool;
	}
	public String getGenerationDateAndTime() {
		return generationDateAndTime;
	}
	public String getVariableNamingConvention() {
		return variableNamingConvention;
	}
	public int getNumberOfEventIndicators() {
		return numberOfEventIndicators;
	}
	public List getUnitDefinitions() {
		return unitDefinitions;
	}
	public List getTypeDefinitions() {
		return typeDefinitions;
	}
	public List getLogCategories() {
		return logCategories;
	}
	public List getVendorAnnotations() {
		return vendorAnnotations;
	}
	public ModelStructure getModelStructure() {
		return modelStructure;
	}
	public ModelExchange getModelExchange() {
		return modelExchange;
	}
	public ScalarVariable[] getModelVariables() {
		return modelVariablesList.toArray(new ScalarVariable[modelVariablesList.size()]);
	}
	@Override
	public org.javafmi.modeldescription.ScalarVariable getModelVariable(int valueReference) {
		if (!modelVariablesByRef.containsKey(valueReference))
			modelVariablesByRef.put(valueReference, stream(getModelVariables()).filter(m -> m.getValueReference() == valueReference).findFirst().orElse(null));
		return modelVariablesByRef.get(valueReference);
	}
	public SimpleType getTypeFromTypeDefinition(String name) {
		for (SimpleType type : typeDefinitions)
			if (type.getName().equals(name)) return type.getType();
		return null;
	}
	@Override
	public ScalarVariable getModelVariable(String variableName) {
		ScalarVariable scalarVariable = modelVariables.get(variableName);
		if (scalarVariable == null) throw new NoSuchVariableException(variableName);
		else return scalarVariable;
	}
	public String getModelName() {
		return modelName;
	}
	@Override
	public int[] getValueReferences(String... variablesNames) {
		int variablesValueReferences[] = new int[variablesNames.length];
		for (int i = 0; i < variablesNames.length; i++) {
			variablesValueReferences[i] = modelVariables.get(variablesNames[i]).getValueReference();
		}
		return variablesValueReferences;
	}
	@Override
	public int getValueReference(String variableName) {
		return modelVariables.get(variableName).getValueReference();
	}
	@Override
	public String[] getModelVariablesNames() {
		if (variablesNames != null) return variablesNames;
		variablesNames = new String[modelVariablesList.size()];
		for (int i = 0; i < variablesNames.length; i++) {
			variablesNames[i] = modelVariablesList.get(i).getName();
		}
		return variablesNames;
	}
	public String getGuid() {
		return guid;
	}
	public CoSimulation getCoSimulation() {
		return coSimulation;
	}
	@Override
	public ModelDescription build() {
		for (ScalarVariable scalarVariable : modelVariablesList) {
			scalarVariable.buildAttributes();
			modelVariables.put(scalarVariable.getName(), scalarVariable);
		}
		return this;
	}
	public DefaultExperiment getDefaultExperiment() {
		return defaultExperiment;
	}
	public boolean check(Capability capability) {
		return coSimulation.capabilities().check(capability);
	}
}
               © 2015 - 2025 Weber Informatics LLC | Privacy Policy