.OpenModelica.Scripting.getElementModifierValue

Returns the binding equation for an element.

Information

Returns the modifier value (only the binding excluding submodifiers) of an element (component or short class).

Example:

  model A
    B b1(a1(p1=5,p2=4));
    model X = Y(a1(p1=5,p2=4));
  end A;

  getElementModifierValue(A,b1.a1.p1) => 5
  getElementModifierValue(A,b1.a1.p2) => 4
  getElementModifierValue(A,X.a1.p1) => 5
  getElementModifierValue(A,X.a1.p2) => 4

See also getElementModifierValues().

Interface

function getElementModifierValue
  input TypeName className;
  input TypeName modifier;
  output String value;
end getElementModifierValue;

Generated at 2025-05-10T18:20:09Z by OpenModelicaOpenModelica 1.25.0 using GenerateDoc.mos