Commit eea95f12 authored by Claes Sjofors's avatar Claes Sjofors

PwrXtt android application and trend hold dynamics

parent af121b4f
...@@ -242,4 +242,8 @@ public class FlowCmn implements PlowCmnIfc { ...@@ -242,4 +242,8 @@ public class FlowCmn implements PlowCmnIfc {
public int remove(Object e) { public int remove(Object e) {
return 0; return 0;
} }
public void setNodraw() {
}
public void resetNodraw() {
}
} }
...@@ -128,5 +128,10 @@ public class GraphCmn implements PlowCmnIfc { ...@@ -128,5 +128,10 @@ public class GraphCmn implements PlowCmnIfc {
public int remove(Object e) { public int remove(Object e) {
return 0; return 0;
} }
public void setNodraw() {
graph.ctx.cmn.setNodraw();
}
public void resetNodraw() {
graph.ctx.cmn.resetNodraw();
}
} }
...@@ -186,4 +186,8 @@ public class PlowCmn implements PlowCmnIfc { ...@@ -186,4 +186,8 @@ public class PlowCmn implements PlowCmnIfc {
a.a.clear(); a.a.clear();
selectClear(); selectClear();
} }
public void setNodraw() {
}
public void resetNodraw() {
}
} }
...@@ -12,6 +12,8 @@ public interface PlowCmnIfc { ...@@ -12,6 +12,8 @@ public interface PlowCmnIfc {
public Object getUserData(); public Object getUserData();
public void setUserData(Object userData); public void setUserData(Object userData);
public void draw(); public void draw();
public void setNodraw();
public void resetNodraw();
public void zoom(double factor); public void zoom(double factor);
public void scroll( int x, int y); public void scroll( int x, int y);
public void pageUp(); public void pageUp();
......
...@@ -321,6 +321,8 @@ public class GrowFrame implements GraphApplIfc { ...@@ -321,6 +321,8 @@ public class GrowFrame implements GraphApplIfc {
*/ */
} }
public void openValueInputDialog( Object dyn, String text, Object object) {
}
public String getObject() { public String getObject() {
return instance; return instance;
} }
......
...@@ -46,6 +46,7 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd ...@@ -46,6 +46,7 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd
float downTouchX; float downTouchX;
float downTouchY; float downTouchY;
private EditText editInput; private EditText editInput;
private EditText editValueInput;
PlowDraw gdraw; PlowDraw gdraw;
PlowCmnIfc currentCmn; PlowCmnIfc currentCmn;
...@@ -59,6 +60,14 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd ...@@ -59,6 +60,14 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd
Graph graph = null; Graph graph = null;
Vector<String> graphObject = new Vector<String>(); Vector<String> graphObject = new Vector<String>();
int inputType; int inputType;
AlertDialog valueInputDialog = null;
Object valueInputDyn;
Object valueInputObject;
AlertDialog confirmDialog = null;
Object confirmDyn;
Object confirmObject;
String confirmText;
String messageText;
AlertDialog inputDialog = null; AlertDialog inputDialog = null;
static private boolean initDone = false; static private boolean initDone = false;
String pwrHost = null; String pwrHost = null;
...@@ -86,6 +95,7 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd ...@@ -86,6 +95,7 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd
editInput = new EditText(this); editInput = new EditText(this);
editInput.setText("10.0.2.2"); editInput.setText("10.0.2.2");
editInput.setSingleLine();
new AlertDialog.Builder(this) new AlertDialog.Builder(this)
.setTitle(R.string.app_name) .setTitle(R.string.app_name)
.setMessage("Enter target node") .setMessage("Enter target node")
...@@ -97,20 +107,30 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd ...@@ -97,20 +107,30 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd
public void onClick(DialogInterface dialog, int position) { public void onClick(DialogInterface dialog, int position) {
if ( dialog == inputDialog) { if ( dialog == inputDialog) {
Editable value = editInput.getText(); Editable value = editInput.getText();
System.out.println( "Change Value: " + value.toString()); System.out.println( "Change Value: " + value.toString());
new GdhTask().execute(new GdhTaskArg(GdhTask.CHANGE_VALUE, value.toString())); new GdhTask().execute(new GdhTaskArg(GdhTask.CHANGE_VALUE, value.toString()));
}
else if ( dialog == valueInputDialog) {
Editable value = editValueInput.getText();
System.out.println( "Change Value: " + value.toString());
new GdhTask().execute(new GdhTaskArg(GdhTask.VALUEINPUT_ACTION, value.toString()));
}
else if ( dialog == confirmDialog) {
System.out.println( "Confirm");
new GdhTask().execute(new GdhTaskArg(GdhTask.CONFIRM_ACTION, null));
} }
else { else {
Editable value = editInput.getText(); Editable value = editInput.getText();
pwrHost = value.toString(); pwrHost = value.toString();
System.out.println( "Input: " + value.toString()); System.out.println( "Input: " + value.toString());
//MainActivity callingActivity = (MainActivity) this; //MainActivity callingActivity = (MainActivity) this;
//callingActivity.onUserSelectValue(value); //callingActivity.onUserSelectValue(value);
dialog.dismiss(); dialog.dismiss();
new GdhTask().execute(new GdhTaskArg(GdhTask.ROOTLIST,(AXttItemBase)null)); new GdhTask().execute(new GdhTaskArg(GdhTask.ROOTLIST,(AXttItemBase)null));
} }
} }
...@@ -408,6 +428,7 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd ...@@ -408,6 +428,7 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd
inputFullName = ((AXttItemAttr)baseItem).getFullName(); inputFullName = ((AXttItemAttr)baseItem).getFullName();
inputType = ((AXttItemAttr)baseItem).getType(); inputType = ((AXttItemAttr)baseItem).getType();
editInput = new EditText(this); editInput = new EditText(this);
editInput.setSingleLine();
inputDialog = new AlertDialog.Builder(this) inputDialog = new AlertDialog.Builder(this)
.setTitle(R.string.app_name) .setTitle(R.string.app_name)
.setMessage("Change Value") .setMessage("Change Value")
...@@ -600,6 +621,8 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd ...@@ -600,6 +621,8 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd
public static final int EVENTHANDLER = 16; public static final int EVENTHANDLER = 16;
public static final int OPEN_CLASSGRAPH = 17; public static final int OPEN_CLASSGRAPH = 17;
public static final int OPEN_CLASSGRAPH_NAME = 18; public static final int OPEN_CLASSGRAPH_NAME = 18;
public static final int VALUEINPUT_ACTION = 19;
public static final int CONFIRM_ACTION = 20;
@Override @Override
protected Void doInBackground(GdhTaskArg... arg) { protected Void doInBackground(GdhTaskArg... arg) {
...@@ -908,6 +931,32 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd ...@@ -908,6 +931,32 @@ public class MainActivity extends Activity implements PlowAppl, GraphApplIfc, Gd
currentCmn.eventHandler(event.action, event.x, event.y); currentCmn.eventHandler(event.action, event.x, event.y);
break; break;
} }
case VALUEINPUT_ACTION: {
String value = (String)arg[0].item;
int sts = ((Dyn)valueInputDyn).valueInputAction( valueInputObject, value);
switch ( sts) {
case Dyn.eValueInput_Success:
// valueInputDia.dispose();
break;
case Dyn.eValueInput_Error:
openMessageDialog("Unable to set value");
break;
case Dyn.eValueInput_SyntaxError:
openMessageDialog("Syntax error");
break;
case Dyn.eValueInput_MinValueExceeded:
openMessageDialog("Minimum value exceeded");
break;
case Dyn.eValueInput_MaxValueExceeded:
openMessageDialog("Maximum value exceeded");
break;
}
break;
}
case CONFIRM_ACTION: {
((Dyn)confirmDyn).confirmedAction( Glow.eEvent_MB1Click, confirmObject);
break;
}
} }
return null; return null;
} }
...@@ -1183,10 +1232,56 @@ System.out.println("MainActivity TimerTask " + currentCmn.type()); ...@@ -1183,10 +1232,56 @@ System.out.println("MainActivity TimerTask " + currentCmn.type());
// new GdhTask().execute(new GdhTaskArg(GdhTask.DYNAMIC_OPEN, null)); // new GdhTask().execute(new GdhTaskArg(GdhTask.DYNAMIC_OPEN, null));
} }
// GraphApplIfc interface
public void openMessageDialog(String text) {
messageText = text;
runOnUiThread( new Runnable() {
public void run() {
new AlertDialog.Builder(appl)
.setTitle(R.string.app_name)
.setMessage(messageText)
.setPositiveButton("Ok", null)
.show();
}});
}
// GraphApplIfc interface
public void openConfirmDialog( Object dyn, String text, Object object) { public void openConfirmDialog( Object dyn, String text, Object object) {
// TODO confirmDyn = dyn;
confirmObject = object;
confirmText = text;
runOnUiThread( new Runnable() {
public void run() {
confirmDialog = new AlertDialog.Builder(appl)
.setTitle(R.string.app_name)
.setMessage(confirmText)
.setPositiveButton("Yes", appl)
.setNegativeButton("No", null)
.show();
}});
}
public void openValueInputDialog( Object dyn, String text, Object object) {
valueInputDyn = dyn;
valueInputObject = object;
runOnUiThread( new Runnable() {
public void run() {
editValueInput = new EditText(appl);
editValueInput.setSingleLine();
valueInputDialog = new AlertDialog.Builder(appl)
.setTitle(R.string.app_name)
.setMessage("Change Value")
.setView(editValueInput)
.setPositiveButton("Ok", appl)
.setNegativeButton("Cancel", null)
.show();
}});
} }
public int getWidth() { public int getWidth() {
return 500; return 500;
} }
......
This diff is collapsed.
...@@ -410,6 +410,11 @@ public class Graph implements GraphIfc, GrowApplIfc { ...@@ -410,6 +410,11 @@ public class Graph implements GraphIfc, GrowApplIfc {
appl.openConfirmDialog(dyn, text, object); appl.openConfirmDialog(dyn, text, object);
} }
public void openValueInputDialog(Object dyn, String text, Object object) {
if ( appl != null)
appl.openValueInputDialog(dyn, text, object);
}
public String get_reference_name(String name) { public String get_reference_name(String name) {
// TODO // TODO
return null; return null;
......
...@@ -39,6 +39,7 @@ package jpwr.jopg; ...@@ -39,6 +39,7 @@ package jpwr.jopg;
public interface GraphApplIfc { public interface GraphApplIfc {
public int command(String cmd); public int command(String cmd);
public void openConfirmDialog( Object dyn, String text, Object object); public void openConfirmDialog( Object dyn, String text, Object object);
public void openValueInputDialog( Object dyn, String text, Object object);
public int getWidth(); public int getWidth();
public int getHeight(); public int getHeight();
public String getObject(); public String getObject();
......
...@@ -52,6 +52,7 @@ public interface GraphIfc { ...@@ -52,6 +52,7 @@ public interface GraphIfc {
public GrowCtx getCtx(); public GrowCtx getCtx();
public int command(String cmd); public int command(String cmd);
public void openConfirmDialog(Object dyn, String text, Object object); public void openConfirmDialog(Object dyn, String text, Object object);
public void openValueInputDialog(Object dyn, String text, Object object);
public String get_reference_name(String name); public String get_reference_name(String name);
public Object getCurrentSlider(); public Object getCurrentSlider();
public void setCurrentSlider(GrowSlider currentSlider); public void setCurrentSlider(GrowSlider currentSlider);
......
...@@ -362,10 +362,14 @@ public class GrowCtx implements GrowCtxIfc { ...@@ -362,10 +362,14 @@ public class GrowCtx implements GrowCtxIfc {
} }
public void draw() { public void draw() {
// Draw background color
// draw.fillRect(0, 0, cmn.mw.window_width, cmn.mw.window_height, background_color);
// Draw connections
for ( int i = 0; i < cmn.a.size(); i++) { for ( int i = 0; i < cmn.a.size(); i++) {
if ( ((GlowArrayElem)cmn.a.get(i)).type() == Glow.eObjectType_Con) if ( ((GlowArrayElem)cmn.a.get(i)).type() == Glow.eObjectType_Con)
((GlowArrayElem)cmn.a.get(i)).draw(); ((GlowArrayElem)cmn.a.get(i)).draw();
} }
// Draw nodes
for ( int i = 0; i < cmn.a.size(); i++) { for ( int i = 0; i < cmn.a.size(); i++) {
if ( ((GlowArrayElem)cmn.a.get(i)).type() != Glow.eObjectType_Con) if ( ((GlowArrayElem)cmn.a.get(i)).type() != Glow.eObjectType_Con)
((GlowArrayElem)cmn.a.get(i)).draw(); ((GlowArrayElem)cmn.a.get(i)).draw();
......
...@@ -63,13 +63,21 @@ public class GrowFrame extends JFrame implements GraphApplIfc, ActionListener { ...@@ -63,13 +63,21 @@ public class GrowFrame extends JFrame implements GraphApplIfc, ActionListener {
JLabel confirmLabel; JLabel confirmLabel;
Object confirmDyn; Object confirmDyn;
Object confirmObject; Object confirmObject;
JDialog valueInputDia = null;
JLabel valueInputLabel;
JLabel valueInputMessage;
Object valueInputDyn;
Object valueInputObject;
JTextField valueInputText;
String instance; String instance;
GrowFrameApplIfc appl; GrowFrameApplIfc appl;
GrowFrame frame;
public GrowFrame( String file, Gdh gdh, String instance, GrowFrameApplIfc appl, Object root) { public GrowFrame( String file, Gdh gdh, String instance, GrowFrameApplIfc appl, Object root) {
this.root = root; this.root = root;
this.instance = instance; this.instance = instance;
this.appl = appl; this.appl = appl;
this.frame = this;
init( file, gdh); init( file, gdh);
} }
...@@ -307,7 +315,7 @@ public class GrowFrame extends JFrame implements GraphApplIfc, ActionListener { ...@@ -307,7 +315,7 @@ public class GrowFrame extends JFrame implements GraphApplIfc, ActionListener {
confirmDyn = dyn; confirmDyn = dyn;
confirmObject = object; confirmObject = object;
if ( confirmDia == null) { if ( confirmDia == null) {
confirmDia = new JDialog(); confirmDia = new JDialog(frame);
confirmDia.setTitle("Confirm"); confirmDia.setTitle("Confirm");
confirmDia.setResizable(false); confirmDia.setResizable(false);
confirmDia.setDefaultCloseOperation( JDialog.DO_NOTHING_ON_CLOSE); confirmDia.setDefaultCloseOperation( JDialog.DO_NOTHING_ON_CLOSE);
...@@ -341,16 +349,126 @@ public class GrowFrame extends JFrame implements GraphApplIfc, ActionListener { ...@@ -341,16 +349,126 @@ public class GrowFrame extends JFrame implements GraphApplIfc, ActionListener {
panel.add( buttonNo); panel.add( buttonNo);
panel.add( buttonCancel); panel.add( buttonCancel);
confirmDia.getContentPane().add( panel, BorderLayout.SOUTH); confirmDia.getContentPane().add( panel, BorderLayout.SOUTH);
// confirmDia.setLocationRelativeTo( par); confirmDia.setLocationRelativeTo(frame);
confirmDia.setVisible( true); confirmDia.setVisible( true);
confirmDia.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
confirmDia.dispose();
}
});
} }
else { else {
// confirmDia.setLocationRelativeTo( par); // confirmDia.setLocationRelativeTo( par);
confirmLabel.setText( text); confirmLabel.setText( text);
confirmDia.setLocationRelativeTo(frame);
confirmDia.setVisible( true); confirmDia.setVisible( true);
} }
} }
public void valueInputCancel() {
valueInputDia.dispose();
}
public void valueInputOk() {
String value = valueInputText.getText();
int sts = ((Dyn)valueInputDyn).valueInputAction( valueInputObject, value);
switch ( sts) {
case Dyn.eValueInput_Success:
valueInputDia.dispose();
break;
case Dyn.eValueInput_Error:
valueInputMessage.setText("Unable to set value");
break;
case Dyn.eValueInput_SyntaxError:
valueInputMessage.setText("Syntax error");
break;
case Dyn.eValueInput_MinValueExceeded:
valueInputMessage.setText("Minimum value exceeded");
break;
case Dyn.eValueInput_MaxValueExceeded:
valueInputMessage.setText("Maximum value exceeded");
break;
}
}
public void openValueInputDialog( Object dyn, String text, Object object) {
JLabel label = null;
valueInputDyn = dyn;
valueInputObject = object;
if ( valueInputDia == null) {
valueInputDia = new JDialog(frame);
valueInputDia.setTitle("Value Input");
valueInputDia.setResizable(false);
valueInputDia.setDefaultCloseOperation( JDialog.DO_NOTHING_ON_CLOSE);
valueInputDia.setSize( 400, 150);
valueInputLabel = new JLabel( text, JLabel.CENTER);
valueInputText = new JTextField(5);
valueInputText.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyPressed(KeyEvent e) {
if ( e.getKeyCode() == KeyEvent.VK_ESCAPE ) {
// keyPressedEvent(e);
}
else if ( e.getKeyCode() == KeyEvent.VK_ENTER ) {
System.out.println("Enter key");
valueInputOk();
}
}
});
valueInputText.addActionListener( new ActionListener() {
public void actionPerformed( ActionEvent ev) {
valueInputOk();
}
});
JButton buttonOk = new JButton("Ok");
buttonOk.addActionListener( new ActionListener() {
public void actionPerformed( ActionEvent ev) {
valueInputOk();
}
});
JButton buttonCancel = new JButton("Cancel");
buttonCancel.addActionListener( new ActionListener() {
public void actionPerformed( ActionEvent ev) {
valueInputCancel();
}
});
valueInputDia.getContentPane().setLayout( new BoxLayout(valueInputDia.getContentPane(),
BoxLayout.Y_AXIS));
JPanel panel = new JPanel();
panel.add( valueInputLabel);
panel.add( valueInputText);
valueInputDia.getContentPane().add( panel);
valueInputMessage = new JLabel( "", JLabel.CENTER);
valueInputDia.getContentPane().add( valueInputMessage);
JPanel panel2 = new JPanel();
panel2.add( buttonOk);
panel2.add( buttonCancel);
valueInputDia.getContentPane().add( panel2);
valueInputDia.setLocationRelativeTo(frame);
valueInputDia.setVisible( true);
valueInputDia.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent e) {
valueInputDia.dispose();
}
});
}
else {
if ( valueInputDia.isVisible())
valueInputDia.dispose();
else {
valueInputLabel.setText(text);
valueInputText.setText("");
valueInputMessage.setText("");
valueInputDia.setLocationRelativeTo(frame);
valueInputDia.setVisible(true);
}
}
}
public String getObject() { public String getObject() {
return instance; return instance;
} }
......
...@@ -4,12 +4,12 @@ ...@@ -4,12 +4,12 @@
100 20 100 20
135 20 135 20
101 20 101 20
102 -33 102 14
103 -150 103 -150
104 3.7377 104 3.7377
136 3.7377 136 3.7377
105 100 105 100
106 -6 106 2
107 -28 107 -28
108 41.6019 108 41.6019
109 0.65 109 0.65
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
111 0.96412 111 0.96412
116 0 116 0
117 0 117 0
118 126 118 127
119 113 119 113
120 0 120 0
121 Claes context 121 Claes context
...@@ -55,7 +55,9 @@ pwrp_exe: ...@@ -55,7 +55,9 @@ pwrp_exe:
ssab_exe: ssab_exe:
pwr_exe: pwr_exe:
2215 0 2215 0
2246 0
2236 0 2236 0
2247 0
2216 0 2216 0
2221 0 2221 0
2237 0 2237 0
...@@ -83,6 +85,7 @@ pwr_exe: ...@@ -83,6 +85,7 @@ pwr_exe:
2234 1 2234 1
2235 1 2235 1
2243 0 2243 0
2248 0
2245 0 2245 0
2244 2244
99 99
...@@ -179,7 +182,9 @@ pwr_exe: ...@@ -179,7 +182,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -199,6 +204,7 @@ pwr_exe: ...@@ -199,6 +204,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 984 328 984
332 0
99 99
3 3
300 pwr_smallbutton 300 pwr_smallbutton
...@@ -291,7 +297,9 @@ pwr_exe: ...@@ -291,7 +297,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -311,6 +319,7 @@ pwr_exe: ...@@ -311,6 +319,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 139170568 328 139170568
332 0
99 99
3 3
300 pwr_mbopenobject 300 pwr_mbopenobject
...@@ -460,7 +469,9 @@ pwr_exe: ...@@ -460,7 +469,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -480,10 +491,13 @@ pwr_exe: ...@@ -480,10 +491,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -685,7 +699,9 @@ pwr_exe: ...@@ -685,7 +699,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -705,10 +721,13 @@ pwr_exe: ...@@ -705,10 +721,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -910,7 +929,9 @@ pwr_exe: ...@@ -910,7 +929,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -930,10 +951,13 @@ pwr_exe: ...@@ -930,10 +951,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1169,7 +1193,9 @@ pwr_exe: ...@@ -1169,7 +1193,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1189,10 +1215,13 @@ pwr_exe: ...@@ -1189,10 +1215,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1373,7 +1402,9 @@ pwr_exe: ...@@ -1373,7 +1402,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1393,10 +1424,13 @@ pwr_exe: ...@@ -1393,10 +1424,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1770,7 +1804,9 @@ pwr_exe: ...@@ -1770,7 +1804,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1790,10 +1826,13 @@ pwr_exe: ...@@ -1790,10 +1826,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1963,7 +2002,9 @@ pwr_exe: ...@@ -1963,7 +2002,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1983,10 +2024,13 @@ pwr_exe: ...@@ -1983,10 +2024,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2158,7 +2202,9 @@ pwr_exe: ...@@ -2158,7 +2202,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2178,10 +2224,13 @@ pwr_exe: ...@@ -2178,10 +2224,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2385,7 +2434,9 @@ pwr_exe: ...@@ -2385,7 +2434,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2405,10 +2456,13 @@ pwr_exe: ...@@ -2405,10 +2456,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2610,7 +2664,9 @@ pwr_exe: ...@@ -2610,7 +2664,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2630,10 +2686,13 @@ pwr_exe: ...@@ -2630,10 +2686,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2769,7 +2828,9 @@ pwr_exe: ...@@ -2769,7 +2828,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2789,10 +2850,13 @@ pwr_exe: ...@@ -2789,10 +2850,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2986,7 +3050,9 @@ pwr_exe: ...@@ -2986,7 +3050,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3006,10 +3072,13 @@ pwr_exe: ...@@ -3006,10 +3072,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3105,7 +3174,9 @@ pwr_exe: ...@@ -3105,7 +3174,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3125,6 +3196,7 @@ pwr_exe: ...@@ -3125,6 +3196,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_valueinputmedium 300 pwr_valueinputmedium
...@@ -3217,7 +3289,9 @@ pwr_exe: ...@@ -3217,7 +3289,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3237,6 +3311,7 @@ pwr_exe: ...@@ -3237,6 +3311,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_framethin 300 pwr_framethin
...@@ -3386,7 +3461,9 @@ pwr_exe: ...@@ -3386,7 +3461,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3406,6 +3483,7 @@ pwr_exe: ...@@ -3406,6 +3483,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_valuelong 300 pwr_valuelong
...@@ -3498,7 +3576,9 @@ pwr_exe: ...@@ -3498,7 +3576,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3518,6 +3598,7 @@ pwr_exe: ...@@ -3518,6 +3598,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_mbcrossreferences 300 pwr_mbcrossreferences
...@@ -3825,7 +3906,9 @@ pwr_exe: ...@@ -3825,7 +3906,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3845,10 +3928,13 @@ pwr_exe: ...@@ -3845,10 +3928,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -4172,7 +4258,9 @@ pwr_exe: ...@@ -4172,7 +4258,9 @@ pwr_exe:
306 306
307 307
308 524288 308 524288
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4192,10 +4280,13 @@ pwr_exe: ...@@ -4192,10 +4280,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -4558,7 +4649,9 @@ pwr_exe: ...@@ -4558,7 +4649,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 2048 321 2048
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4578,6 +4671,7 @@ pwr_exe: ...@@ -4578,6 +4671,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 143681912 328 143681912
332 0
99 99
3 3
300 pwr_smallbuttoncenter 300 pwr_smallbuttoncenter
...@@ -4670,7 +4764,9 @@ pwr_exe: ...@@ -4670,7 +4764,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4690,10 +4786,13 @@ pwr_exe: ...@@ -4690,10 +4786,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -4761,7 +4860,9 @@ pwr_exe: ...@@ -4761,7 +4860,9 @@ pwr_exe:
306 306
307 307
308 4 308 4
330 0
321 0 321 0
331 0
309 29 309 29
313 0 313 0
322 0 322 0
...@@ -4781,10 +4882,13 @@ pwr_exe: ...@@ -4781,10 +4882,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -5034,7 +5138,9 @@ pwr_exe: ...@@ -5034,7 +5138,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5200,7 +5306,9 @@ pwr_exe: ...@@ -5200,7 +5306,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5290,7 +5398,9 @@ pwr_exe: ...@@ -5290,7 +5398,9 @@ pwr_exe:
3123 3123
1 1
100 131072 100 131072
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
22 22
...@@ -5389,7 +5499,9 @@ pwr_exe: ...@@ -5389,7 +5499,9 @@ pwr_exe:
3230 3230
1 1
100 262144 100 262144
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
23 23
...@@ -5399,6 +5511,7 @@ pwr_exe: ...@@ -5399,6 +5511,7 @@ pwr_exe:
2303 $object.PresMaxLimit##Float32 2303 $object.PresMaxLimit##Float32
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -5556,7 +5669,9 @@ pwr_exe: ...@@ -5556,7 +5669,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5681,7 +5796,9 @@ pwr_exe: ...@@ -5681,7 +5796,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5840,7 +5957,9 @@ pwr_exe: ...@@ -5840,7 +5957,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5972,7 +6091,9 @@ pwr_exe: ...@@ -5972,7 +6091,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -6104,7 +6225,9 @@ pwr_exe: ...@@ -6104,7 +6225,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 6 102 6
103 0 103 0
60 60
...@@ -6236,7 +6359,9 @@ pwr_exe: ...@@ -6236,7 +6359,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6378,7 +6503,9 @@ pwr_exe: ...@@ -6378,7 +6503,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6520,7 +6647,9 @@ pwr_exe: ...@@ -6520,7 +6647,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6662,7 +6791,9 @@ pwr_exe: ...@@ -6662,7 +6791,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 6 102 6
103 0 103 0
12 12
...@@ -6804,7 +6935,9 @@ pwr_exe: ...@@ -6804,7 +6935,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6941,7 +7074,9 @@ pwr_exe: ...@@ -6941,7 +7074,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7078,7 +7213,9 @@ pwr_exe: ...@@ -7078,7 +7213,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7215,7 +7352,9 @@ pwr_exe: ...@@ -7215,7 +7352,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7352,7 +7491,9 @@ pwr_exe: ...@@ -7352,7 +7491,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7489,7 +7630,9 @@ pwr_exe: ...@@ -7489,7 +7630,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65535 102 65535
103 0 103 0
9 9
...@@ -7626,7 +7769,9 @@ pwr_exe: ...@@ -7626,7 +7769,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7763,7 +7908,9 @@ pwr_exe: ...@@ -7763,7 +7908,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7900,7 +8047,9 @@ pwr_exe: ...@@ -7900,7 +8047,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8037,7 +8186,9 @@ pwr_exe: ...@@ -8037,7 +8186,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8174,7 +8325,9 @@ pwr_exe: ...@@ -8174,7 +8325,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8311,7 +8464,9 @@ pwr_exe: ...@@ -8311,7 +8464,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8448,7 +8603,9 @@ pwr_exe: ...@@ -8448,7 +8603,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8586,7 +8743,9 @@ pwr_exe: ...@@ -8586,7 +8743,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 64 101 64
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8720,7 +8879,9 @@ pwr_exe: ...@@ -8720,7 +8879,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -8853,15 +9014,17 @@ pwr_exe: ...@@ -8853,15 +9014,17 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 65535 102 65535
103 0 103 0
2 2
200 !$local.TrendHold##Boolean 200 !$local.HoldTrend##Boolean
201 102 201 102
99 99
53 53
5300 $local.TrendHold##Boolean 5300 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -8986,7 +9149,9 @@ pwr_exe: ...@@ -8986,7 +9149,9 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 6 102 6
103 0 103 0
2 2
...@@ -9118,7 +9283,9 @@ pwr_exe: ...@@ -9118,7 +9283,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
9 9
...@@ -9251,7 +9418,9 @@ pwr_exe: ...@@ -9251,7 +9418,9 @@ pwr_exe:
2721 2721
1 1
100 129 100 129
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
9 9
...@@ -9311,7 +9480,9 @@ pwr_exe: ...@@ -9311,7 +9480,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -9331,6 +9502,7 @@ pwr_exe: ...@@ -9331,6 +9502,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 1072137701 328 1072137701
332 0
99 99
99 99
99 99
...@@ -9391,11 +9563,11 @@ pwr_exe: ...@@ -9391,11 +9563,11 @@ pwr_exe:
0 0
0 0
0 0
1006 6.2692 1006 6.26921
1007 1.29859 1007 1.29859
1008 12.37 1008 12.37
1009 11.35 1009 11.35
1013 6.2692 1013 6.26921
1014 1.29859 1014 1.29859
1015 12.37 1015 12.37
1016 11.35 1016 11.35
...@@ -9455,7 +9627,9 @@ pwr_exe: ...@@ -9455,7 +9627,9 @@ pwr_exe:
2721 2721
1 1
100 0 100 0
105 0
101 64 101 64
106 0
102 65535 102 65535
103 0 103 0
55 55
......
...@@ -4,20 +4,20 @@ ...@@ -4,20 +4,20 @@
100 20 100 20
135 20 135 20
101 20 101 20
102 -159 102 85
103 -148 103 -148
104 3.7377 104 3.7377
136 3.7377 136 3.7377
105 100 105 100
106 -29 106 2
107 -27 107 -27
108 41.652 108 41.652
109 0.75 109 0.75
110 12.6985 110 12.6985
111 0.96412 111 0.96412
116 0 116 13
117 0 117 0
118 126 118 140
119 113 119 113
120 1 120 1
121 Claes context 121 Claes context
...@@ -55,7 +55,9 @@ pwrp_exe: ...@@ -55,7 +55,9 @@ pwrp_exe:
ssab_exe: ssab_exe:
pwr_exe: pwr_exe:
2215 0 2215 0
2246 0
2236 0 2236 0
2247 0
2216 0 2216 0
2221 0 2221 0
2237 0 2237 0
...@@ -83,6 +85,7 @@ pwr_exe: ...@@ -83,6 +85,7 @@ pwr_exe:
2234 1 2234 1
2235 1 2235 1
2243 0 2243 0
2248 0
2245 0 2245 0
2244 2244
99 99
...@@ -179,7 +182,9 @@ pwr_exe: ...@@ -179,7 +182,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -199,6 +204,7 @@ pwr_exe: ...@@ -199,6 +204,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 984 328 984
332 0
99 99
3 3
300 pwr_valueinputmedium 300 pwr_valueinputmedium
...@@ -291,7 +297,9 @@ pwr_exe: ...@@ -291,7 +297,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -311,6 +319,7 @@ pwr_exe: ...@@ -311,6 +319,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_smallbuttoncenter 300 pwr_smallbuttoncenter
...@@ -403,7 +412,9 @@ pwr_exe: ...@@ -403,7 +412,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -423,10 +434,13 @@ pwr_exe: ...@@ -423,10 +434,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -494,7 +508,9 @@ pwr_exe: ...@@ -494,7 +508,9 @@ pwr_exe:
306 306
307 307
308 4 308 4
330 0
321 0 321 0
331 0
309 29 309 29
313 0 313 0
322 0 322 0
...@@ -514,10 +530,13 @@ pwr_exe: ...@@ -514,10 +530,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -613,7 +632,9 @@ pwr_exe: ...@@ -613,7 +632,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -633,6 +654,7 @@ pwr_exe: ...@@ -633,6 +654,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 139170568 328 139170568
332 0
99 99
3 3
300 pwr_mbopenobject 300 pwr_mbopenobject
...@@ -782,7 +804,9 @@ pwr_exe: ...@@ -782,7 +804,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -802,10 +826,13 @@ pwr_exe: ...@@ -802,10 +826,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1007,7 +1034,9 @@ pwr_exe: ...@@ -1007,7 +1034,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1027,10 +1056,13 @@ pwr_exe: ...@@ -1027,10 +1056,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1232,7 +1264,9 @@ pwr_exe: ...@@ -1232,7 +1264,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1252,10 +1286,13 @@ pwr_exe: ...@@ -1252,10 +1286,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1491,7 +1528,9 @@ pwr_exe: ...@@ -1491,7 +1528,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1511,10 +1550,13 @@ pwr_exe: ...@@ -1511,10 +1550,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1695,7 +1737,9 @@ pwr_exe: ...@@ -1695,7 +1737,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1715,10 +1759,13 @@ pwr_exe: ...@@ -1715,10 +1759,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2092,7 +2139,9 @@ pwr_exe: ...@@ -2092,7 +2139,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2112,10 +2161,13 @@ pwr_exe: ...@@ -2112,10 +2161,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2285,7 +2337,9 @@ pwr_exe: ...@@ -2285,7 +2337,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2305,10 +2359,13 @@ pwr_exe: ...@@ -2305,10 +2359,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2480,7 +2537,9 @@ pwr_exe: ...@@ -2480,7 +2537,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2500,10 +2559,13 @@ pwr_exe: ...@@ -2500,10 +2559,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2707,7 +2769,9 @@ pwr_exe: ...@@ -2707,7 +2769,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2727,10 +2791,13 @@ pwr_exe: ...@@ -2727,10 +2791,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2932,7 +2999,9 @@ pwr_exe: ...@@ -2932,7 +2999,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2952,10 +3021,13 @@ pwr_exe: ...@@ -2952,10 +3021,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3091,7 +3163,9 @@ pwr_exe: ...@@ -3091,7 +3163,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3111,10 +3185,13 @@ pwr_exe: ...@@ -3111,10 +3185,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3308,7 +3385,9 @@ pwr_exe: ...@@ -3308,7 +3385,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3328,10 +3407,13 @@ pwr_exe: ...@@ -3328,10 +3407,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3427,7 +3509,9 @@ pwr_exe: ...@@ -3427,7 +3509,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3447,6 +3531,7 @@ pwr_exe: ...@@ -3447,6 +3531,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_mbcrossreferences 300 pwr_mbcrossreferences
...@@ -3754,7 +3839,9 @@ pwr_exe: ...@@ -3754,7 +3839,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3774,10 +3861,13 @@ pwr_exe: ...@@ -3774,10 +3861,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3873,7 +3963,9 @@ pwr_exe: ...@@ -3873,7 +3963,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3893,6 +3985,7 @@ pwr_exe: ...@@ -3893,6 +3985,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_framethin 300 pwr_framethin
...@@ -4042,7 +4135,9 @@ pwr_exe: ...@@ -4042,7 +4135,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4062,6 +4157,7 @@ pwr_exe: ...@@ -4062,6 +4157,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 10000 328 10000
332 0
99 99
3 3
300 pwr_sliderbackground1 300 pwr_sliderbackground1
...@@ -4382,7 +4478,9 @@ pwr_exe: ...@@ -4382,7 +4478,9 @@ pwr_exe:
306 306
307 307
308 524288 308 524288
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4402,10 +4500,13 @@ pwr_exe: ...@@ -4402,10 +4500,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -4768,7 +4869,9 @@ pwr_exe: ...@@ -4768,7 +4869,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 2048 321 2048
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4788,6 +4891,7 @@ pwr_exe: ...@@ -4788,6 +4891,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 144230704 328 144230704
332 0
99 99
99 99
124 124
...@@ -4907,7 +5011,9 @@ pwr_exe: ...@@ -4907,7 +5011,9 @@ pwr_exe:
3123 3123
1 1
100 131072 100 131072
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
22 22
...@@ -5006,7 +5112,9 @@ pwr_exe: ...@@ -5006,7 +5112,9 @@ pwr_exe:
3230 3230
1 1
100 262144 100 262144
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
23 23
...@@ -5016,6 +5124,7 @@ pwr_exe: ...@@ -5016,6 +5124,7 @@ pwr_exe:
2303 $object.PresMaxLimit##Float32 2303 $object.PresMaxLimit##Float32
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -5139,7 +5248,9 @@ pwr_exe: ...@@ -5139,7 +5248,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5264,7 +5375,9 @@ pwr_exe: ...@@ -5264,7 +5375,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5423,7 +5536,9 @@ pwr_exe: ...@@ -5423,7 +5536,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5555,7 +5670,9 @@ pwr_exe: ...@@ -5555,7 +5670,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5687,7 +5804,9 @@ pwr_exe: ...@@ -5687,7 +5804,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 6 102 6
103 0 103 0
60 60
...@@ -5819,7 +5938,9 @@ pwr_exe: ...@@ -5819,7 +5938,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -5961,7 +6082,9 @@ pwr_exe: ...@@ -5961,7 +6082,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6103,7 +6226,9 @@ pwr_exe: ...@@ -6103,7 +6226,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6245,7 +6370,9 @@ pwr_exe: ...@@ -6245,7 +6370,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6382,7 +6509,9 @@ pwr_exe: ...@@ -6382,7 +6509,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6519,7 +6648,9 @@ pwr_exe: ...@@ -6519,7 +6648,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6656,7 +6787,9 @@ pwr_exe: ...@@ -6656,7 +6787,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6793,7 +6926,9 @@ pwr_exe: ...@@ -6793,7 +6926,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6930,7 +7065,9 @@ pwr_exe: ...@@ -6930,7 +7065,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65535 102 65535
103 0 103 0
9 9
...@@ -7067,7 +7204,9 @@ pwr_exe: ...@@ -7067,7 +7204,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7204,7 +7343,9 @@ pwr_exe: ...@@ -7204,7 +7343,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7341,7 +7482,9 @@ pwr_exe: ...@@ -7341,7 +7482,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7478,7 +7621,9 @@ pwr_exe: ...@@ -7478,7 +7621,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7615,7 +7760,9 @@ pwr_exe: ...@@ -7615,7 +7760,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7752,7 +7899,9 @@ pwr_exe: ...@@ -7752,7 +7899,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7889,7 +8038,9 @@ pwr_exe: ...@@ -7889,7 +8038,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8027,7 +8178,9 @@ pwr_exe: ...@@ -8027,7 +8178,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 64 101 64
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8161,7 +8314,9 @@ pwr_exe: ...@@ -8161,7 +8314,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -8294,15 +8449,17 @@ pwr_exe: ...@@ -8294,15 +8449,17 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 65535 102 65535
103 0 103 0
2 2
200 !$local.TrendHold##Boolean 200 !$local.HoldTrend##Boolean
201 102 201 102
99 99
53 53
5300 $local.TrendHold##Boolean 5300 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -8427,7 +8584,9 @@ pwr_exe: ...@@ -8427,7 +8584,9 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 6 102 6
103 0 103 0
2 2
...@@ -8644,7 +8803,9 @@ pwr_exe: ...@@ -8644,7 +8803,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -8810,7 +8971,9 @@ pwr_exe: ...@@ -8810,7 +8971,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -8976,7 +9139,9 @@ pwr_exe: ...@@ -8976,7 +9139,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 6 102 6
103 0 103 0
12 12
...@@ -9118,7 +9283,9 @@ pwr_exe: ...@@ -9118,7 +9283,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
9 9
...@@ -9250,7 +9417,9 @@ pwr_exe: ...@@ -9250,7 +9417,9 @@ pwr_exe:
2721 2721
1 1
100 0 100 0
105 0
101 64 101 64
106 0
102 65535 102 65535
103 0 103 0
55 55
...@@ -9380,7 +9549,9 @@ pwr_exe: ...@@ -9380,7 +9549,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 0 101 0
106 0
102 33619964 102 33619964
103 0 103 0
9 9
...@@ -9440,7 +9611,9 @@ pwr_exe: ...@@ -9440,7 +9611,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -9460,6 +9633,7 @@ pwr_exe: ...@@ -9460,6 +9633,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
99 99
99 99
......
...@@ -6,19 +6,19 @@ ...@@ -6,19 +6,19 @@
101 20 101 20
102 243 102 243
103 -130 103 -130
104 3.89525 104 3.7377
136 3.89525 136 3.7377
105 100 105 100
106 2 106 2
107 -25 107 -24
108 41.5896 108 41.5896
109 0.65 109 0.65
110 12.6985 110 12.6985
111 0.91412 111 0.91412
116 45 116 43
117 0 117 0
118 177 118 170
119 118 119 113
120 0 120 0
121 Claes context 121 Claes context
122 0 122 0
...@@ -55,7 +55,9 @@ pwrp_exe: ...@@ -55,7 +55,9 @@ pwrp_exe:
ssab_exe: ssab_exe:
pwr_exe: pwr_exe:
2215 0 2215 0
2246 0
2236 0 2236 0
2247 0
2216 0 2216 0
2221 0 2221 0
2237 0 2237 0
...@@ -83,6 +85,7 @@ pwr_exe: ...@@ -83,6 +85,7 @@ pwr_exe:
2234 1 2234 1
2235 1 2235 1
2243 0 2243 0
2248 0
2245 0 2245 0
2244 2244
99 99
...@@ -179,7 +182,9 @@ pwr_exe: ...@@ -179,7 +182,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -199,6 +204,7 @@ pwr_exe: ...@@ -199,6 +204,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 139170568 328 139170568
332 0
99 99
3 3
300 pwr_smallbuttoncenter 300 pwr_smallbuttoncenter
...@@ -291,7 +297,9 @@ pwr_exe: ...@@ -291,7 +297,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -311,10 +319,13 @@ pwr_exe: ...@@ -311,10 +319,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -467,7 +478,9 @@ pwr_exe: ...@@ -467,7 +478,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -487,10 +500,13 @@ pwr_exe: ...@@ -487,10 +500,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -692,7 +708,9 @@ pwr_exe: ...@@ -692,7 +708,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -712,10 +730,13 @@ pwr_exe: ...@@ -712,10 +730,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -917,7 +938,9 @@ pwr_exe: ...@@ -917,7 +938,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -937,10 +960,13 @@ pwr_exe: ...@@ -937,10 +960,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1070,6 +1096,7 @@ pwr_exe: ...@@ -1070,6 +1096,7 @@ pwr_exe:
2418 0 2418 0
2419 4 2419 4
2420 0 2420 0
2422 0
2407 0 2407 0
2406 2406
2405 2405
...@@ -1175,7 +1202,9 @@ pwr_exe: ...@@ -1175,7 +1202,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1195,10 +1224,13 @@ pwr_exe: ...@@ -1195,10 +1224,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1379,7 +1411,9 @@ pwr_exe: ...@@ -1379,7 +1411,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1399,10 +1433,13 @@ pwr_exe: ...@@ -1399,10 +1433,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1776,7 +1813,9 @@ pwr_exe: ...@@ -1776,7 +1813,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1796,10 +1835,13 @@ pwr_exe: ...@@ -1796,10 +1835,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1969,7 +2011,9 @@ pwr_exe: ...@@ -1969,7 +2011,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1989,10 +2033,13 @@ pwr_exe: ...@@ -1989,10 +2033,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2164,7 +2211,9 @@ pwr_exe: ...@@ -2164,7 +2211,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2184,10 +2233,13 @@ pwr_exe: ...@@ -2184,10 +2233,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2391,7 +2443,9 @@ pwr_exe: ...@@ -2391,7 +2443,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2411,10 +2465,13 @@ pwr_exe: ...@@ -2411,10 +2465,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2616,7 +2673,9 @@ pwr_exe: ...@@ -2616,7 +2673,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2636,10 +2695,13 @@ pwr_exe: ...@@ -2636,10 +2695,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2775,7 +2837,9 @@ pwr_exe: ...@@ -2775,7 +2837,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2795,10 +2859,13 @@ pwr_exe: ...@@ -2795,10 +2859,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2992,7 +3059,9 @@ pwr_exe: ...@@ -2992,7 +3059,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3012,10 +3081,13 @@ pwr_exe: ...@@ -3012,10 +3081,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3111,7 +3183,9 @@ pwr_exe: ...@@ -3111,7 +3183,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3131,6 +3205,7 @@ pwr_exe: ...@@ -3131,6 +3205,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_mbcrossreferences 300 pwr_mbcrossreferences
...@@ -3438,7 +3513,9 @@ pwr_exe: ...@@ -3438,7 +3513,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3458,10 +3535,13 @@ pwr_exe: ...@@ -3458,10 +3535,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3557,7 +3637,9 @@ pwr_exe: ...@@ -3557,7 +3637,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3577,6 +3659,7 @@ pwr_exe: ...@@ -3577,6 +3659,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_framethin 300 pwr_framethin
...@@ -3726,7 +3809,9 @@ pwr_exe: ...@@ -3726,7 +3809,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3746,6 +3831,7 @@ pwr_exe: ...@@ -3746,6 +3831,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_sliderbackground1 300 pwr_sliderbackground1
...@@ -4066,7 +4152,9 @@ pwr_exe: ...@@ -4066,7 +4152,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4086,6 +4174,7 @@ pwr_exe: ...@@ -4086,6 +4174,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_slider1 300 pwr_slider1
...@@ -4445,7 +4534,9 @@ pwr_exe: ...@@ -4445,7 +4534,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 2048 321 2048
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4465,6 +4556,7 @@ pwr_exe: ...@@ -4465,6 +4556,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_valueinputreliefup 300 pwr_valueinputreliefup
...@@ -4557,7 +4649,9 @@ pwr_exe: ...@@ -4557,7 +4649,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4577,6 +4671,7 @@ pwr_exe: ...@@ -4577,6 +4671,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_valueinputmedium 300 pwr_valueinputmedium
...@@ -4669,7 +4764,9 @@ pwr_exe: ...@@ -4669,7 +4764,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4689,6 +4786,7 @@ pwr_exe: ...@@ -4689,6 +4786,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
99 99
124 124
...@@ -4698,12 +4796,13 @@ pwr_exe: ...@@ -4698,12 +4796,13 @@ pwr_exe:
2 2
30 30
3004 O49 3004 O49
3000 5.6 3000 5.5
3001 1.1 3001 1.1
3002 3.08703 3002 3.08703
3003 2.23703 3003 2.23703
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
...@@ -4731,12 +4830,13 @@ pwr_exe: ...@@ -4731,12 +4830,13 @@ pwr_exe:
99 99
30 30
3004 O50 3004 O50
3000 5.95 3000 5.55
3001 1.1 3001 1.1
3002 6.91639 3002 6.91639
3003 6.06639 3003 6.06639
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
...@@ -4882,7 +4982,9 @@ pwr_exe: ...@@ -4882,7 +4982,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -4896,12 +4998,13 @@ pwr_exe: ...@@ -4896,12 +4998,13 @@ pwr_exe:
99 99
30 30
3004 O51 3004 O51
3000 5.7 3000 5.1
3001 1.1 3001 1.1
3002 8.21639 3002 8.21639
3003 7.36639 3003 7.36639
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
...@@ -5047,7 +5150,9 @@ pwr_exe: ...@@ -5047,7 +5150,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5137,7 +5242,9 @@ pwr_exe: ...@@ -5137,7 +5242,9 @@ pwr_exe:
3123 3123
1 1
100 131072 100 131072
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
22 22
...@@ -5236,7 +5343,9 @@ pwr_exe: ...@@ -5236,7 +5343,9 @@ pwr_exe:
3230 3230
1 1
100 262144 100 262144
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
23 23
...@@ -5246,17 +5355,19 @@ pwr_exe: ...@@ -5246,17 +5355,19 @@ pwr_exe:
2303 $object.PresMaxLimit##Float32 2303 $object.PresMaxLimit##Float32
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
30 30
3004 O52 3004 O52
3000 2.8 3000 2.65
3001 1.1 3001 1.1
3002 9.57159 3002 9.57159
3003 8.72159 3003 8.72159
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
...@@ -5402,7 +5513,9 @@ pwr_exe: ...@@ -5402,7 +5513,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5527,7 +5640,9 @@ pwr_exe: ...@@ -5527,7 +5640,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5652,19 +5767,22 @@ pwr_exe: ...@@ -5652,19 +5767,22 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
99 99
30 30
3004 O53 3004 O53
3000 39.7161 3000 39.6661
3001 39.3661 3001 39.3661
3002 12.1723 3002 12.1723
3003 11.6223 3003 11.6223
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
...@@ -5810,7 +5928,9 @@ pwr_exe: ...@@ -5810,7 +5928,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5942,7 +6062,9 @@ pwr_exe: ...@@ -5942,7 +6062,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -6074,7 +6196,9 @@ pwr_exe: ...@@ -6074,7 +6196,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 6 102 6
103 0 103 0
60 60
...@@ -6206,7 +6330,9 @@ pwr_exe: ...@@ -6206,7 +6330,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6348,7 +6474,9 @@ pwr_exe: ...@@ -6348,7 +6474,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6490,7 +6618,9 @@ pwr_exe: ...@@ -6490,7 +6618,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6632,7 +6762,9 @@ pwr_exe: ...@@ -6632,7 +6762,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 6 102 6
103 0 103 0
12 12
...@@ -6774,7 +6906,9 @@ pwr_exe: ...@@ -6774,7 +6906,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6911,7 +7045,9 @@ pwr_exe: ...@@ -6911,7 +7045,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7048,7 +7184,9 @@ pwr_exe: ...@@ -7048,7 +7184,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7185,7 +7323,9 @@ pwr_exe: ...@@ -7185,7 +7323,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7322,7 +7462,9 @@ pwr_exe: ...@@ -7322,7 +7462,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7459,7 +7601,9 @@ pwr_exe: ...@@ -7459,7 +7601,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65535 102 65535
103 0 103 0
9 9
...@@ -7596,7 +7740,9 @@ pwr_exe: ...@@ -7596,7 +7740,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7733,7 +7879,9 @@ pwr_exe: ...@@ -7733,7 +7879,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7870,7 +8018,9 @@ pwr_exe: ...@@ -7870,7 +8018,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8007,7 +8157,9 @@ pwr_exe: ...@@ -8007,7 +8157,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8144,7 +8296,9 @@ pwr_exe: ...@@ -8144,7 +8296,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8281,7 +8435,9 @@ pwr_exe: ...@@ -8281,7 +8435,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8418,7 +8574,9 @@ pwr_exe: ...@@ -8418,7 +8574,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8556,7 +8714,9 @@ pwr_exe: ...@@ -8556,7 +8714,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 64 101 64
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8690,7 +8850,9 @@ pwr_exe: ...@@ -8690,7 +8850,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -8823,15 +8985,17 @@ pwr_exe: ...@@ -8823,15 +8985,17 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 65535 102 65535
103 0 103 0
2 2
200 !$local.TrendHold##Boolean 200 !$local.HoldTrend##Boolean
201 102 201 102
99 99
53 53
5300 $local.TrendHold##Boolean 5300 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -8956,7 +9120,9 @@ pwr_exe: ...@@ -8956,7 +9120,9 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 6 102 6
103 0 103 0
2 2
......
...@@ -6,8 +6,8 @@ ...@@ -6,8 +6,8 @@
101 20 101 20
102 -34 102 -34
103 -92 103 -92
104 3.89525 104 3.7377
136 3.89525 136 3.7377
105 100 105 100
106 -6 106 -6
107 -17 107 -17
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
111 2.21412 111 2.21412
116 0 116 0
117 0 117 0
118 131 118 126
119 118 119 113
120 1 120 1
121 Claes context 121 Claes context
122 0 122 0
...@@ -55,7 +55,9 @@ pwrp_exe: ...@@ -55,7 +55,9 @@ pwrp_exe:
ssab_exe: ssab_exe:
pwr_exe: pwr_exe:
2215 0 2215 0
2246 0
2236 0 2236 0
2247 0
2216 0 2216 0
2221 0 2221 0
2237 0 2237 0
...@@ -83,6 +85,7 @@ pwr_exe: ...@@ -83,6 +85,7 @@ pwr_exe:
2234 1 2234 1
2235 1 2235 1
2243 0 2243 0
2248 0
2245 0 2245 0
2244 2244
99 99
...@@ -378,7 +381,9 @@ pwr_exe: ...@@ -378,7 +381,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 64 321 64
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -398,6 +403,7 @@ pwr_exe: ...@@ -398,6 +403,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 984 328 984
332 0
99 99
3 3
300 pwr_valuemedium 300 pwr_valuemedium
...@@ -490,7 +496,9 @@ pwr_exe: ...@@ -490,7 +496,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -510,6 +518,7 @@ pwr_exe: ...@@ -510,6 +518,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_valuelong 300 pwr_valuelong
...@@ -602,7 +611,9 @@ pwr_exe: ...@@ -602,7 +611,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -622,6 +633,7 @@ pwr_exe: ...@@ -622,6 +633,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 984 328 984
332 0
99 99
99 99
124 124
...@@ -749,7 +761,9 @@ pwr_exe: ...@@ -749,7 +761,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 0 101 0
106 0
102 62 102 62
103 0 103 0
12 12
...@@ -763,12 +777,13 @@ pwr_exe: ...@@ -763,12 +777,13 @@ pwr_exe:
99 99
30 30
3004 O42 3004 O42
3000 5.6 3000 5.5
3001 1.1 3001 1.1
3002 3.08703 3002 3.08703
3003 2.23703 3003 2.23703
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
...@@ -802,6 +817,7 @@ pwr_exe: ...@@ -802,6 +817,7 @@ pwr_exe:
3003 4.802 3003 4.802
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
...@@ -947,7 +963,9 @@ pwr_exe: ...@@ -947,7 +963,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -1080,11 +1098,13 @@ pwr_exe: ...@@ -1080,11 +1098,13 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65535 102 65535
103 0 103 0
55 55
5500 5500 open graph/classgraph/inst=&$object.SigChanCon
99 99
99 99
99 99
...@@ -1208,7 +1228,9 @@ pwr_exe: ...@@ -1208,7 +1228,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -1222,12 +1244,13 @@ pwr_exe: ...@@ -1222,12 +1244,13 @@ pwr_exe:
99 99
30 30
3004 O44 3004 O44
3000 4.3 3000 4.1
3001 1.2 3001 1.2
3002 4.25 3002 4.25
3003 3.4 3003 3.4
3008 103 3008 103
3010 4 3010 4
3011 2
3007 0 3007 0
3006 3006
3005 3005
......
...@@ -5119,6 +5119,7 @@ pwr_exe: ...@@ -5119,6 +5119,7 @@ pwr_exe:
2303 2303
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -8346,11 +8347,11 @@ pwr_exe: ...@@ -8346,11 +8347,11 @@ pwr_exe:
102 65535 102 65535
103 0 103 0
2 2
200 !$local.TrendHold##Boolean 200 !$local.HoldTrend##Boolean
201 102 201 102
99 99
53 53
5300 $local.TrendHold##Boolean 5300 $local.HoldTrend##Boolean
99 99
99 99
99 99
......
...@@ -5068,6 +5068,7 @@ pwr_exe: ...@@ -5068,6 +5068,7 @@ pwr_exe:
2303 2303
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -8422,11 +8423,11 @@ pwr_exe: ...@@ -8422,11 +8423,11 @@ pwr_exe:
102 65535 102 65535
103 0 103 0
2 2
200 !$local.TrendHold##Boolean 200 !$local.HoldTrend##Boolean
201 102 201 102
99 99
53 53
5300 $local.TrendHold##Boolean 5300 $local.HoldTrend##Boolean
99 99
99 99
99 99
......
...@@ -4805,10 +4805,10 @@ pwr_exe: ...@@ -4805,10 +4805,10 @@ pwr_exe:
2 2
30 30
3004 O43 3004 O43
3000 5.47042 3000 5.5
3001 1.1 3001 1.1
3002 3.26745 3002 3.25
3003 2.44695 3003 2.4
3008 103 3008 103
3010 4 3010 4
3011 2 3011 2
...@@ -4839,10 +4839,10 @@ pwr_exe: ...@@ -4839,10 +4839,10 @@ pwr_exe:
99 99
30 30
3004 O44 3004 O44
3000 5.58763 3000 5.55
3001 1.1 3001 1.1
3002 5.01674 3002 4.99929
3003 4.19624 3003 4.14929
3008 103 3008 103
3010 4 3010 4
3011 2 3011 2
...@@ -4972,6 +4972,7 @@ pwr_exe: ...@@ -4972,6 +4972,7 @@ pwr_exe:
2303 2303
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -5231,10 +5232,10 @@ pwr_exe: ...@@ -5231,10 +5232,10 @@ pwr_exe:
99 99
30 30
3004 O45 3004 O45
3000 39.4314 3000 39.43
3001 39.13 3001 39.13
3002 6.32966 3002 6.32919
3003 5.82731 3003 5.77919
3008 103 3008 103
3010 4 3010 4
3011 2 3011 2
...@@ -5533,10 +5534,10 @@ pwr_exe: ...@@ -5533,10 +5534,10 @@ pwr_exe:
99 99
30 30
3004 O46 3004 O46
3000 5.28646 3000 5.05
3001 1.05 3001 1.05
3002 6.27797 3002 6.26052
3003 5.45747 3003 5.41052
3008 103 3008 103
3010 4 3010 4
3011 2 3011 2
...@@ -8326,11 +8327,11 @@ pwr_exe: ...@@ -8326,11 +8327,11 @@ pwr_exe:
102 65535 102 65535
103 0 103 0
2 2
200 !$local.TrendHold##Boolean 200 !$local.HoldTrend##Boolean
201 102 201 102
99 99
53 53
5300 $local.TrendHold##Boolean 5300 $local.HoldTrend##Boolean
99 99
99 99
99 99
......
...@@ -55,7 +55,9 @@ pwrp_exe: ...@@ -55,7 +55,9 @@ pwrp_exe:
ssab_exe: ssab_exe:
pwr_exe: pwr_exe:
2215 0 2215 0
2246 0
2236 0 2236 0
2247 0
2216 0 2216 0
2221 0 2221 0
2237 0 2237 0
...@@ -83,6 +85,7 @@ pwr_exe: ...@@ -83,6 +85,7 @@ pwr_exe:
2234 1 2234 1
2235 1 2235 1
2243 0 2243 0
2248 0
2245 0 2245 0
2244 2244
99 99
...@@ -179,7 +182,9 @@ pwr_exe: ...@@ -179,7 +182,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -199,6 +204,7 @@ pwr_exe: ...@@ -199,6 +204,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 984 328 984
332 0
99 99
3 3
300 pwr_valueinputmedium 300 pwr_valueinputmedium
...@@ -291,7 +297,9 @@ pwr_exe: ...@@ -291,7 +297,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -311,6 +319,7 @@ pwr_exe: ...@@ -311,6 +319,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_smallbuttoncenter 300 pwr_smallbuttoncenter
...@@ -403,7 +412,9 @@ pwr_exe: ...@@ -403,7 +412,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -423,10 +434,13 @@ pwr_exe: ...@@ -423,10 +434,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -494,7 +508,9 @@ pwr_exe: ...@@ -494,7 +508,9 @@ pwr_exe:
306 306
307 307
308 4 308 4
330 0
321 0 321 0
331 0
309 29 309 29
313 0 313 0
322 0 322 0
...@@ -514,10 +530,13 @@ pwr_exe: ...@@ -514,10 +530,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -613,7 +632,9 @@ pwr_exe: ...@@ -613,7 +632,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 16 321 16
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -633,6 +654,7 @@ pwr_exe: ...@@ -633,6 +654,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 139170568 328 139170568
332 0
99 99
3 3
300 pwr_mbopenobject 300 pwr_mbopenobject
...@@ -782,7 +804,9 @@ pwr_exe: ...@@ -782,7 +804,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -802,10 +826,13 @@ pwr_exe: ...@@ -802,10 +826,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1007,7 +1034,9 @@ pwr_exe: ...@@ -1007,7 +1034,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1027,10 +1056,13 @@ pwr_exe: ...@@ -1027,10 +1056,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1232,7 +1264,9 @@ pwr_exe: ...@@ -1232,7 +1264,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1252,10 +1286,13 @@ pwr_exe: ...@@ -1252,10 +1286,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1491,7 +1528,9 @@ pwr_exe: ...@@ -1491,7 +1528,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1511,10 +1550,13 @@ pwr_exe: ...@@ -1511,10 +1550,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -1695,7 +1737,9 @@ pwr_exe: ...@@ -1695,7 +1737,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -1715,10 +1759,13 @@ pwr_exe: ...@@ -1715,10 +1759,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2092,7 +2139,9 @@ pwr_exe: ...@@ -2092,7 +2139,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2112,10 +2161,13 @@ pwr_exe: ...@@ -2112,10 +2161,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2285,7 +2337,9 @@ pwr_exe: ...@@ -2285,7 +2337,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2305,10 +2359,13 @@ pwr_exe: ...@@ -2305,10 +2359,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2480,7 +2537,9 @@ pwr_exe: ...@@ -2480,7 +2537,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2500,10 +2559,13 @@ pwr_exe: ...@@ -2500,10 +2559,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2707,7 +2769,9 @@ pwr_exe: ...@@ -2707,7 +2769,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2727,10 +2791,13 @@ pwr_exe: ...@@ -2727,10 +2791,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -2932,7 +2999,9 @@ pwr_exe: ...@@ -2932,7 +2999,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -2952,10 +3021,13 @@ pwr_exe: ...@@ -2952,10 +3021,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3091,7 +3163,9 @@ pwr_exe: ...@@ -3091,7 +3163,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3111,10 +3185,13 @@ pwr_exe: ...@@ -3111,10 +3185,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3308,7 +3385,9 @@ pwr_exe: ...@@ -3308,7 +3385,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3328,10 +3407,13 @@ pwr_exe: ...@@ -3328,10 +3407,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3427,7 +3509,9 @@ pwr_exe: ...@@ -3427,7 +3509,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3447,6 +3531,7 @@ pwr_exe: ...@@ -3447,6 +3531,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_mbcrossreferences 300 pwr_mbcrossreferences
...@@ -3754,7 +3839,9 @@ pwr_exe: ...@@ -3754,7 +3839,9 @@ pwr_exe:
306 306
307 307
308 128 308 128
330 0
321 8256 321 8256
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3774,10 +3861,13 @@ pwr_exe: ...@@ -3774,10 +3861,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -3873,7 +3963,9 @@ pwr_exe: ...@@ -3873,7 +3963,9 @@ pwr_exe:
306 306
307 307
308 1024 308 1024
330 0
321 4096 321 4096
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -3893,6 +3985,7 @@ pwr_exe: ...@@ -3893,6 +3985,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_framethin 300 pwr_framethin
...@@ -4042,7 +4135,9 @@ pwr_exe: ...@@ -4042,7 +4135,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4062,6 +4157,7 @@ pwr_exe: ...@@ -4062,6 +4157,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
3 3
300 pwr_sliderbackground1 300 pwr_sliderbackground1
...@@ -4382,7 +4478,9 @@ pwr_exe: ...@@ -4382,7 +4478,9 @@ pwr_exe:
306 306
307 307
308 524288 308 524288
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4402,10 +4500,13 @@ pwr_exe: ...@@ -4402,10 +4500,13 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
329 329
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
99 99
...@@ -4768,7 +4869,9 @@ pwr_exe: ...@@ -4768,7 +4869,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 2048 321 2048
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -4788,6 +4891,7 @@ pwr_exe: ...@@ -4788,6 +4891,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 0 328 0
332 0
99 99
99 99
124 124
...@@ -5034,7 +5138,9 @@ pwr_exe: ...@@ -5034,7 +5138,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5158,7 +5264,9 @@ pwr_exe: ...@@ -5158,7 +5264,9 @@ pwr_exe:
3123 3123
1 1
100 131072 100 131072
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
22 22
...@@ -5257,7 +5365,9 @@ pwr_exe: ...@@ -5257,7 +5365,9 @@ pwr_exe:
3230 3230
1 1
100 262144 100 262144
105 0
101 0 101 0
106 0
102 65532 102 65532
103 0 103 0
23 23
...@@ -5267,6 +5377,7 @@ pwr_exe: ...@@ -5267,6 +5377,7 @@ pwr_exe:
2303 $object.PresMaxLimit##Float32 2303 $object.PresMaxLimit##Float32
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -5390,7 +5501,9 @@ pwr_exe: ...@@ -5390,7 +5501,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5515,7 +5628,9 @@ pwr_exe: ...@@ -5515,7 +5628,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5674,7 +5789,9 @@ pwr_exe: ...@@ -5674,7 +5789,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -5806,7 +5923,9 @@ pwr_exe: ...@@ -5806,7 +5923,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
99 99
...@@ -5938,7 +6057,9 @@ pwr_exe: ...@@ -5938,7 +6057,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 6 102 6
103 0 103 0
60 60
...@@ -6070,7 +6191,9 @@ pwr_exe: ...@@ -6070,7 +6191,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 6 102 6
103 0 103 0
12 12
...@@ -6212,7 +6335,9 @@ pwr_exe: ...@@ -6212,7 +6335,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6354,7 +6479,9 @@ pwr_exe: ...@@ -6354,7 +6479,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6496,7 +6623,9 @@ pwr_exe: ...@@ -6496,7 +6623,9 @@ pwr_exe:
2721 2721
1 1
100 1024 100 1024
105 0
101 4096 101 4096
106 0
102 65535 102 65535
103 0 103 0
12 12
...@@ -6638,7 +6767,9 @@ pwr_exe: ...@@ -6638,7 +6767,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6775,7 +6906,9 @@ pwr_exe: ...@@ -6775,7 +6906,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -6912,7 +7045,9 @@ pwr_exe: ...@@ -6912,7 +7045,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7049,7 +7184,9 @@ pwr_exe: ...@@ -7049,7 +7184,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7186,7 +7323,9 @@ pwr_exe: ...@@ -7186,7 +7323,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7323,7 +7462,9 @@ pwr_exe: ...@@ -7323,7 +7462,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65535 102 65535
103 0 103 0
9 9
...@@ -7460,7 +7601,9 @@ pwr_exe: ...@@ -7460,7 +7601,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7597,7 +7740,9 @@ pwr_exe: ...@@ -7597,7 +7740,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7734,7 +7879,9 @@ pwr_exe: ...@@ -7734,7 +7879,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -7871,7 +8018,9 @@ pwr_exe: ...@@ -7871,7 +8018,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8008,7 +8157,9 @@ pwr_exe: ...@@ -8008,7 +8157,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8145,7 +8296,9 @@ pwr_exe: ...@@ -8145,7 +8296,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8282,7 +8435,9 @@ pwr_exe: ...@@ -8282,7 +8435,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 8256 101 8256
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8420,7 +8575,9 @@ pwr_exe: ...@@ -8420,7 +8575,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 64 101 64
106 0
102 65532 102 65532
103 0 103 0
9 9
...@@ -8554,7 +8711,9 @@ pwr_exe: ...@@ -8554,7 +8711,9 @@ pwr_exe:
2721 2721
1 1
100 1 100 1
105 0
101 1 101 1
106 0
102 65532 102 65532
103 0 103 0
12 12
...@@ -8687,15 +8846,17 @@ pwr_exe: ...@@ -8687,15 +8846,17 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 65535 102 65535
103 0 103 0
2 2
200 !$local.TrendHold##Boolean 200 !$local.HoldTrend##Boolean
201 102 201 102
99 99
53 53
5300 $local.TrendHold##Boolean 5300 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -8820,7 +8981,9 @@ pwr_exe: ...@@ -8820,7 +8981,9 @@ pwr_exe:
2721 2721
1 1
100 4 100 4
105 0
101 16 101 16
106 0
102 6 102 6
103 0 103 0
2 2
...@@ -8952,7 +9115,9 @@ pwr_exe: ...@@ -8952,7 +9115,9 @@ pwr_exe:
2721 2721
1 1
100 128 100 128
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
9 9
...@@ -9085,7 +9250,9 @@ pwr_exe: ...@@ -9085,7 +9250,9 @@ pwr_exe:
2721 2721
1 1
100 129 100 129
105 0
101 1 101 1
106 0
102 33619964 102 33619964
103 0 103 0
9 9
...@@ -9145,7 +9312,9 @@ pwr_exe: ...@@ -9145,7 +9312,9 @@ pwr_exe:
306 306
307 307
308 0 308 0
330 0
321 0 321 0
331 0
309 0 309 0
313 0 313 0
322 0 322 0
...@@ -9165,6 +9334,7 @@ pwr_exe: ...@@ -9165,6 +9334,7 @@ pwr_exe:
319 0 319 0
320 0 320 0
328 1072137701 328 1072137701
332 0
99 99
99 99
99 99
...@@ -9289,7 +9459,9 @@ pwr_exe: ...@@ -9289,7 +9459,9 @@ pwr_exe:
2721 2721
1 1
100 0 100 0
105 0
101 64 101 64
106 0
102 65535 102 65535
103 0 103 0
55 55
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -4,20 +4,20 @@ ...@@ -4,20 +4,20 @@
100 20 100 20
135 20 135 20
101 20 101 20
102 200 102 150
103 -225 103 -210
104 3.7377 104 3.7377
136 3.7377 136 3.7377
105 100 105 100
106 13 106 13
107 -42 107 -39
108 40.638 108 40.638
109 3.68978 109 3.68978
110 6.7996 110 6.7996
111 3.70758 111 3.70758
116 24 116 15
117 0 117 0
118 151 118 142
119 113 119 113
120 0 120 0
121 Claes context 121 Claes context
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
134 134
22 22
2200 0 2200 0
2201 28 2201 30
2202 pwr_t_boolean 2202 pwr_t_boolean
2203 51 2203 51
2205 0 2205 0
...@@ -92,11 +92,11 @@ pwr_exe: ...@@ -92,11 +92,11 @@ pwr_exe:
123 123
2 2
3 3
300 pwr_smallbutton 300 pwr_smallbuttoncenter
301 301
2 2
19 19
1904 1904 O0
1900 2.4 1900 2.4
1901 0.2 1901 0.2
1902 1.05 1902 1.05
...@@ -114,7 +114,7 @@ pwr_exe: ...@@ -114,7 +114,7 @@ pwr_exe:
1920 0 1920 0
1917 0 1917 0
1921 0 1921 0
1922 4 1922 2
1923 0 1923 0
1907 0 1907 0
1906 1906
...@@ -166,13 +166,13 @@ pwr_exe: ...@@ -166,13 +166,13 @@ pwr_exe:
28 28
2800 1 2800 1
2801 0 2801 0
2802 -0.1 2802 0.781156
2803 0 2803 0
2804 1 2804 1
2805 0.2 2805 0.2
2806 0 2806 0
99 99
2901 2 2901 0
99 99
99 99
302 0 302 0
...@@ -195,7 +195,7 @@ pwr_exe: ...@@ -195,7 +195,7 @@ pwr_exe:
327 0 327 0
310 0 310 0
311 0 311 0
312 JopSmallbutton 312
314 314
315 1 315 1
316 1 316 1
...@@ -203,8 +203,17 @@ pwr_exe: ...@@ -203,8 +203,17 @@ pwr_exe:
318 0 318 0
319 0 319 0
320 0 320 0
328 139170568 328 0
332 0 332 0
329
1
100 1
105 0
101 1
106 0
102 33619964
103 0
99
99 99
3 3
300 pwr_slider1 300 pwr_slider1
...@@ -1763,6 +1772,7 @@ pwr_exe: ...@@ -1763,6 +1772,7 @@ pwr_exe:
2303 2303
2304 2304
2305 2305
2306 $local.HoldTrend##Boolean
99 99
99 99
99 99
...@@ -2061,139 +2071,6 @@ pwr_exe: ...@@ -2061,139 +2071,6 @@ pwr_exe:
2705 10000 2705 10000
2723 10000 2723 10000
2706 10000 2706 10000
2708 1
2709 1
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_smallbutton
1002 TrendHold
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 26.7877
1007 23.9277
1008 6.62311
1009 5.77311
1013 26.7877
1014 23.9277
1015 6.62311
1016 5.77311
1003
0
8
0
0
0
0
0
0
0
0
1004
" Hold"
1001
7
700 19.4206
701 11.9411
99
1010 $local.TrendHold##Boolean
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 1000
1017 9999
1027 9999
1026 65535
1028 0
1029
99
2707
28
2800 1.3
2801 0
2802 23.6677
2803 0
2804 1
2805 5.57311
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 0
105 0
101 4
106 0
102 65535
103 0
51
5100 $local.TrendHold##Boolean
5101 1
5102 1
99
99
99
27
2703 10000
2704 10000
2722 10000
2705 10000
2723 10000
2706 10000
2708 0 2708 0
2709 0 2709 0
2710 0 2710 0
...@@ -2601,13 +2478,13 @@ pwr_exe: ...@@ -2601,13 +2478,13 @@ pwr_exe:
99 99
27 27
2703 10000 2703 10000
2704 10000 2704 32
2722 10000 2722 10000
2705 10000 2705 32
2723 10000 2723 10000
2706 10000 2706 10000
2708 1 2708 0
2709 1 2709 0
2710 0 2710 0
2711 0 2711 0
2712 0 2712 0
...@@ -2621,8 +2498,8 @@ pwr_exe: ...@@ -2621,8 +2498,8 @@ pwr_exe:
2701 2701
2700 2700
10 10
1000 pwr_smallbutton 1000 pwr_smallbuttoncenter
1002 O25 1002 O28
1005 1005
0 0
0 0
...@@ -2656,17 +2533,17 @@ pwr_exe: ...@@ -2656,17 +2533,17 @@ pwr_exe:
0 0
0 0
0 0
1006 37.1862 1006 26.7486
1007 34.1103 1007 23.8986
1008 6.6162 1008 6.6
1009 5.7662 1009 5.75
1013 37.1862 1013 26.7486
1014 34.1103 1014 23.8986
1015 6.6162 1015 6.6
1016 5.7662 1016 5.75
1003 1003
0 0
8 5
0 0
0 0
0 0
...@@ -2676,13 +2553,13 @@ pwr_exe: ...@@ -2676,13 +2553,13 @@ pwr_exe:
0 0
0 0
1004 1004
" Slider" "Hold"
1001 1001
7 7
700 19.4206 700 26.35
701 11.9411 701 13.85
99 99
1010 $local.SliderDisable##Boolean 1010
1011 1011
1018 1018
1019 1019
...@@ -2692,21 +2569,156 @@ pwr_exe: ...@@ -2692,21 +2569,156 @@ pwr_exe:
1023 1023
1024 1024
1025 1025
1012 1000 1012 0
1017 9999 1017 9999
1027 9999 1027 9999
1026 6 1026 33619964
1028 0
1029
99
2707
28
2800 1.29545
2801 0
2802 23.6395
2803 0
2804 1
2805 5.55
2806 0
99
2716 0
2718
2717
2719 0
2724 0
2727 0
2728 303
2729 4
2721
1
100 4
105 0
101 16
106 0
102 65535
103 0
2
200 !$local.HoldTrend##Boolean
201 102
99
53
5300 $local.HoldTrend##Boolean
99
99
99
27
2703 10000
2704 32
2722 10000
2705 32
2723 10000
2706 10000
2708 0
2709 0
2710 0
2711 0
2712 0
2713 0
2714 0
2715 0
2720 0
2725 0
2726 0
2702 0
2701
2700
10
1000 pwr_smallbuttoncenter
1002 O29
1005
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
1006 37.2095
1007 34.0486
1008 6.6
1009 5.75
1013 37.2095
1014 34.0486
1015 6.6
1016 5.75
1003
0
7
0
0
0
0
0
0
0
0
1004
"Slider"
1001
7
700 26.35
701 13.85
99
1010
1011
1018
1019
1020
1021
1022
1023
1024
1025
1012 0
1017 9999
1027 9999
1026 33619964
1028 0 1028 0
1029 1029
99 99
2707 2707
28 28
2800 1.39811 2800 1.43678
2801 0 2801 0
2802 33.8307 2802 33.7612
2803 0 2803 0
2804 1 2804 1
2805 5.5662 2805 5.55
2806 0 2806 0
99 99
2716 0 2716 0
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment