1 /*******************************************************************************
\r
2 * Copyright (c) 2010 Association for Decentralized Information Management in
\r
4 * All rights reserved. This program and the accompanying materials
\r
5 * are made available under the terms of the Eclipse Public License v1.0
\r
6 * which accompanies this distribution, and is available at
\r
7 * http://www.eclipse.org/legal/epl-v10.html
\r
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.sysdyn.representation.expressions;
\r
14 import java.util.ArrayList;
\r
15 import java.util.Iterator;
\r
17 import org.simantics.objmap.annotations.GraphType;
\r
18 import org.simantics.objmap.annotations.RelatedValue;
\r
19 import org.simantics.sysdyn.representation.ArrayIndexes;
\r
20 import org.simantics.sysdyn.representation.Enumeration;
\r
21 import org.simantics.sysdyn.representation.IndependentVariable;
\r
22 import org.simantics.sysdyn.representation.utils.FormatUtils;
\r
23 import org.simantics.sysdyn.representation.utils.IndexUtils;
\r
25 @GraphType("http://www.simantics.org/Sysdyn-1.1/NormalExpression")
\r
26 public class NormalExpression extends Expression {
\r
28 @RelatedValue("http://www.simantics.org/Sysdyn-1.1/HasEquation")
\r
29 private String equation;
\r
32 public String getDeclaration(IndependentVariable variable) {
\r
34 ArrayIndexes ai = variable.getArrayIndexes();
\r
35 ArrayList<Enumeration> enumerations = null;
\r
37 enumerations = ai.getEnumerations();
\r
40 if(enumerations != null && enumerations.size() > 0) {
\r
41 StringBuilder sb = new StringBuilder();
\r
43 Iterator<Enumeration> iterator = enumerations.iterator();
\r
44 while(iterator.hasNext()) {
\r
45 sb.append(iterator.next().getName() + ".size");
\r
46 if(iterator.hasNext()) {
\r
51 range = sb.toString();
\r
54 return " " + variable.getType() + " " + variable.getName() + range + ";\n";
\r
58 public String getEquation(IndependentVariable variable) {
\r
59 String equation = FormatUtils.formatExpressionForModelica(variable, this.equation);
\r
60 String range = IndexUtils.rangeToIndexes(variable, this.getArrayRange());
\r
61 return " " + variable.getName() + (range.equals("[:]") ? "" : range) + " = " + equation + ";\n";
\r