mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
remove garbage files from RTDS GTNET examples
This commit is contained in:
parent
08cab16c60
commit
02ee2cc54e
73 changed files with 0 additions and 109459 deletions
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,28 +0,0 @@
|
|||
This example demonstrates UDP socket communication. Data is sent from the RTDS to a standalone java program, and the java program can send information back to the RTDS.
|
||||
This is done using the SKT protocol on the GTNETx2 card.
|
||||
Note: You need to install the JDK to be able to compile java files http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html MAKE sure the path to the bin folder of the JDK
|
||||
is added to the windows path variable (google to figure this out)
|
||||
|
||||
Note: If you want some extra information printed in the DOS window set the boolean DEBUG=true
|
||||
|
||||
1. Open a windows command shell and go to the Tutorial|SAMPLES|GTSKT|ExampleGUI folder.
|
||||
2. Compile the .java code. Use the command below in the windows command shell
|
||||
javac GNET_SKT_UDP_GUI.java
|
||||
3. Run the code using the command below
|
||||
java GNET_SKT_UDP_GUI
|
||||
4. Upon running the program, two panels will appear. The GTNET-SKT UDP Server and the GTNET-SKT UDP Client.
|
||||
A file chooser box can be used to request the file name that defines the name and type of the received data or type of data to send.
|
||||
Browse to the file named received.txt in the Tutorial|SAMPLES|GTSKT folder. The table will be filled with data from the file or the user can add/delete items from the table
|
||||
5. Press the Start button in the GUI
|
||||
A message will be displayed in the Messages Text area
|
||||
Server socket created. Waiting for incoming data ...
|
||||
6. A file chooser box can be used to request the file name that defines the name and type of type of data to send. To manually add points press
|
||||
the Add button in the GTNET-SKT UDP Client panel and add 2 points, change the type of point 0 to "int"
|
||||
7. Press the Send button in the GUI and the UDP packet will be sent to the GTNET-SKT UDP Server panel.
|
||||
|
||||
TO use the GTNET-SKT the user must change the Remote Server Settings IP Address and Port in the GTNET-SKT UDP Client panel so the program will send the UDP packet to the GTNET
|
||||
8. Open the Draft case, edit the GTNET-SKT component, go to the Remote IP Configuration tab and change the Remote IP address to the IP address of your PC.
|
||||
9. Compile the Draft case, ensure to change the allocation of the component to the proper RTDS processor and GTIO port based on your hardware configuration.
|
||||
10. Run the simulation.
|
||||
11. Press the Send button in the simulation, the value on the Point slider is sent to the java program and will appear in the GTNET-SKT UDP server panel.
|
||||
12. Press the Send button in the GUI and the UDP packet will be sent to the simulation and is displayed in the meters POINTIn0 and POINTin1.
|
|
@ -1,107 +0,0 @@
|
|||
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Insets;
|
||||
|
||||
import javax.swing.border.Border;
|
||||
|
||||
class SoftEdgeBorder implements Border
|
||||
|
||||
{
|
||||
|
||||
protected int m_w=3;
|
||||
|
||||
protected int m_h=3;
|
||||
|
||||
protected Color m_topColor = Color.gray;//white;
|
||||
|
||||
protected Color m_bottomColor = Color.gray;
|
||||
|
||||
public SoftEdgeBorder()
|
||||
{
|
||||
|
||||
m_w=3;
|
||||
|
||||
m_h=3;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h) {
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h, Color col)
|
||||
{
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
m_topColor = col;
|
||||
|
||||
m_bottomColor = col;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h, Color topColor,
|
||||
|
||||
Color bottomColor)
|
||||
{
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
m_topColor = topColor;
|
||||
|
||||
m_bottomColor = bottomColor;
|
||||
|
||||
}
|
||||
|
||||
public Insets getBorderInsets(Component c)
|
||||
{
|
||||
|
||||
return new Insets(m_h, m_w, m_h, m_w);
|
||||
|
||||
}
|
||||
|
||||
public boolean isBorderOpaque() { return true; }
|
||||
|
||||
public void paintBorder(Component c, Graphics g,
|
||||
|
||||
int x, int y, int w, int h)
|
||||
{
|
||||
|
||||
w--;
|
||||
|
||||
h--;
|
||||
|
||||
g.setColor(m_topColor);
|
||||
|
||||
g.drawLine(x, y+h-m_h, x, y+m_h);
|
||||
|
||||
g.drawArc(x, y, 2*m_w, 2*m_h, 180, -90);
|
||||
|
||||
g.drawLine(x+m_w, y, x+w-m_w, y);
|
||||
|
||||
g.drawArc(x+w-2*m_w, y, 2*m_w, 2*m_h, 90, -90);
|
||||
|
||||
g.setColor(m_bottomColor);
|
||||
|
||||
g.drawLine(x+w, y+m_h, x+w, y+h-m_h);
|
||||
|
||||
g.drawArc(x+w-2*m_w, y+h-2*m_h, 2*m_w, 2*m_h, 0, -90);
|
||||
|
||||
g.drawLine(x+m_w, y+h, x+w-m_w, y+h);
|
||||
|
||||
g.drawArc(x, y+h-2*m_h, 2*m_w, 2*m_h, -90, -90);
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -1,102 +0,0 @@
|
|||
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.GradientPaint;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.RenderingHints;
|
||||
import java.awt.Shape;
|
||||
import java.awt.geom.RoundRectangle2D;
|
||||
|
||||
import javax.swing.Action;
|
||||
import javax.swing.DefaultButtonModel;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JButton;
|
||||
|
||||
class SoftEdgeButton extends JButton
|
||||
{
|
||||
private static final float arcwidth = 6.0f;
|
||||
private static final float archeight = 6.0f;
|
||||
protected static final int focusstroke = 2;
|
||||
protected final Color currFocusBorderCol = new Color(100,113,200, 200);//(110,123,139, 200);//(100,150,255,200); //rgba
|
||||
protected final Color pressedCol = new Color(197, 220, 250);//(230,230,230);
|
||||
protected final Color hoverBorderCol = new Color(140,211,251);//(135,206,250);//Color.ORANGE;
|
||||
protected final Color buttonCol = new Color(202, 225, 255);//(250, 250, 250);
|
||||
protected final Color buttonBorderCol = Color.gray;
|
||||
protected Shape shape;
|
||||
protected Shape border;
|
||||
protected Shape base;
|
||||
|
||||
public SoftEdgeButton() {
|
||||
this(null, null);
|
||||
}
|
||||
public SoftEdgeButton(Icon icon) {
|
||||
this(null, icon);
|
||||
}
|
||||
public SoftEdgeButton(String text) {
|
||||
this(text, null);
|
||||
}
|
||||
public SoftEdgeButton(Action a) {
|
||||
this();
|
||||
setAction(a);
|
||||
}
|
||||
public SoftEdgeButton(String text, Icon icon) {
|
||||
setModel(new DefaultButtonModel());
|
||||
init(text, icon);
|
||||
setContentAreaFilled(false);
|
||||
setBackground(buttonCol);
|
||||
initShape();
|
||||
}
|
||||
|
||||
protected void initShape() {
|
||||
if(!getBounds().equals(base)) {
|
||||
base = getBounds();
|
||||
shape = new RoundRectangle2D.Float(0, 0, getWidth()-1, getHeight()-1, arcwidth, archeight);
|
||||
border = new RoundRectangle2D.Float(focusstroke, focusstroke,
|
||||
getWidth()-1-focusstroke*2,
|
||||
getHeight()-1-focusstroke*2,
|
||||
arcwidth, archeight);
|
||||
}
|
||||
}
|
||||
private void paintFocusAndRollover(Graphics2D g2, Color color) {
|
||||
g2.setPaint(new GradientPaint(0, 0, color, getWidth()-1, getHeight()-1, color.brighter(), true));
|
||||
g2.fill(shape);
|
||||
g2.setPaint(new GradientPaint(0, 0, Color.WHITE, 0, (int)(getHeight()-1)/*-1*/, getBackground(), false));
|
||||
//g2.setColor(getBackground());
|
||||
g2.fill(border);
|
||||
}
|
||||
|
||||
@Override protected void paintComponent(Graphics g) {
|
||||
initShape();
|
||||
Graphics2D g2 = (Graphics2D)g;
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
||||
if(getModel().isArmed()) {
|
||||
g2.setColor(pressedCol);
|
||||
g2.fill(shape);
|
||||
}else if(isRolloverEnabled() && getModel().isRollover()) {
|
||||
paintFocusAndRollover(g2, hoverBorderCol);
|
||||
}else if(hasFocus()) {
|
||||
paintFocusAndRollover(g2, currFocusBorderCol);
|
||||
}else{
|
||||
|
||||
g2.setPaint(new GradientPaint(0, 0, Color.WHITE, 0, (int)(getHeight()-1)/*-1*/, getBackground(), false));
|
||||
//g2.setColor(getBackground());
|
||||
g2.fill(shape);
|
||||
}
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF);
|
||||
g2.setColor(getBackground());
|
||||
super.paintComponent(g2);
|
||||
}
|
||||
@Override protected void paintBorder(Graphics g) {
|
||||
initShape();
|
||||
Graphics2D g2 = (Graphics2D)g;
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
||||
g2.setColor(buttonBorderCol);
|
||||
g2.draw(shape);
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF);
|
||||
}
|
||||
@Override public boolean contains(int x, int y) {
|
||||
initShape();
|
||||
return shape.contains(x, y);
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,106 +0,0 @@
|
|||
RSCAD 4.003.1aa
|
||||
INFORMATION FILE: gtnet_skt_2point_tcp.inf
|
||||
FILE TO DOWNLOAD: gtnet_skt_2point_tcp
|
||||
FINISH TIME: 0.2 SECONDS
|
||||
PRE-TRIGGER: 20%
|
||||
PLOT DENSITY: EVERY POINT
|
||||
METER UPDATE FREQUENCY: 1000
|
||||
COMTRADE PLOT SAVE FREQUENCY: 50.0
|
||||
COMPONENT: SLIDER
|
||||
BOX AT (20,12), DIMENSIONS 170 x 150
|
||||
NAME: Point
|
||||
ICON: NONE
|
||||
ICON AT: (176,99)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Inputs
|
||||
DESC: Point0
|
||||
UNITS:
|
||||
MIN: -2.147E7
|
||||
MAX: 2.147E7
|
||||
VALUE: 1718000.0
|
||||
COMPONENT: BUTTON
|
||||
BOX AT (120,180), DIMENSIONS 50 x 70
|
||||
NAME:
|
||||
ICON: NONE
|
||||
ICON AT: (291,133)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Inputs
|
||||
DESC: Send
|
||||
COMPONENT: METER
|
||||
BOX AT (324,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: rxCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (440,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: txCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (556,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTIn0
|
||||
UNITS: units
|
||||
MIN: -100.0
|
||||
MAX: 100.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 4
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (192,16), DIMENSIONS 132 x 144
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (323,247)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: POINT0
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 6
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (664,12), DIMENSIONS 116 x 148
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTin1
|
||||
UNITS: units
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 9
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
|
@ -1 +0,0 @@
|
|||
"C:\RSCAD\BIN\rtdspc.exe" -PP -PSCAD_MASTER "C:\RSCAD" -PSCAD_USER "U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace" -PSCAD_PATH "C:\RSCAD\BIN" -CONFIG_FILE "C:\RSCAD\HDWR\config_file_02.txt" -case "U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback\gtnet_skt_2point_udp" -rack 7 -verbose -Options "C:\RSCAD\BIN\..\.\BIN\bat.options"
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,458 +0,0 @@
|
|||
Test Circuit
|
||||
C
|
||||
C Compiled by: DRAFT 4.006
|
||||
C Source File:U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback\gtnet_skt_2point_udp.dft
|
||||
C
|
||||
C==============================================================================================
|
||||
5.0E-5 0.2 5.0E-4 /Delta-T Finish-Time Print-Step
|
||||
1 /Number of subsystems
|
||||
C =====================================================================================
|
||||
C SUBSYSTEM #1:SS 1
|
||||
PRE_PROCESSOR:
|
||||
String Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
||||
END_PRE_PROCESSOR:
|
||||
C ------------------------------------------------------
|
||||
1 /# of nodes in subsystem
|
||||
0.0 /initial node voltages
|
||||
C
|
||||
C Node Voltage and Current Bases
|
||||
C
|
||||
C* Node: 1 Vbase: 1 kV Ibase: 0 kA NodeName: "CONTROLS"
|
||||
C
|
||||
C Network RLC branch data section
|
||||
C
|
||||
C
|
||||
999 /End of RLC Branch data
|
||||
C Source data section
|
||||
C
|
||||
999 /End of Source data
|
||||
C
|
||||
C Transformer data section
|
||||
C
|
||||
999 /End of Transformer data
|
||||
C
|
||||
C Transducer data section
|
||||
999 /End of CT,CVT & PT model data
|
||||
999 / End of Sequencer data
|
||||
C =====================================================================================
|
||||
C Transmission line section
|
||||
C
|
||||
C
|
||||
C
|
||||
999 /End of T-Line section
|
||||
C =====================================================================================
|
||||
C
|
||||
C ===================================================================================
|
||||
C
|
||||
C Valve group data
|
||||
C
|
||||
C CONTROLS COMPILER: RISC CONTROLS PROCESSOR MANUAL ASSIGNMENT
|
||||
RTDS.CTL.RISC_PROCASS
|
||||
COMP: RISC_PROCASS 1 0 0
|
||||
IDATA: 2 0 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: IT_1 INT
|
||||
IDATA: 0
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.CONSTANT
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT4 IEEE
|
||||
FDATA: 60.0
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT3 INT
|
||||
IDATA: 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: IT_5 INT
|
||||
IDATA: 0
|
||||
END
|
||||
C CONTROLS COMPILER: SHARC PUSH BUTTON COMPONENT
|
||||
RTDS.CTL.SH_PB
|
||||
COMP: Send 1 0 0
|
||||
OVARS: IT_6 INT
|
||||
IDATA: 0
|
||||
FDATA: 0 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT1 INT
|
||||
IDATA: -1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT2 INT
|
||||
IDATA: -1
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: edgedet_cb 1 1 2 0 2 0
|
||||
DATA_SIZES: INTDATA=2 FLOATDATA=0 CHARDATA=0 INVARS=1 OUTVARS=1
|
||||
INTDATA: 0 ED 1 OV
|
||||
INVARS: IT_6 INT Inp
|
||||
OUTVARS: SendData INT Out
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: UPDOWNC 1 1 3 0 2 0
|
||||
DATA_SIZES: INTDATA=9 FLOATDATA=0 CHARDATA=0 INVARS=5 OUTVARS=1
|
||||
INTDATA: 0 Tran 0 RST 0 LIM 10 UL -10 LL
|
||||
INTDATA: 0 INIT 0 A 0 B 0 C
|
||||
INVARS: SendData INT UP IT_1 INT DOWN _dud_ INT RSTSIG _dud_ INT LLINP _dud_ INT ULINP
|
||||
OUTVARS: txCnt INT COUNT
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: TIMERC 1 1 4 0 2 0
|
||||
DATA_SIZES: INTDATA=4 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Tran 0 SRST 0 RST 0 A
|
||||
INVARS: IT_6 INT START SendData INT STOP _dud_ INT RSTSIG
|
||||
OUTVARS: POINT5 IEEE TIME
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: UPDOWNC 1 1 5 0 2 0
|
||||
DATA_SIZES: INTDATA=9 FLOATDATA=0 CHARDATA=0 INVARS=5 OUTVARS=1
|
||||
INTDATA: 0 Tran 0 RST 0 LIM 10 UL -10 LL
|
||||
INTDATA: 0 INIT 0 A 0 B 0 C
|
||||
INVARS: SendData INT UP IT_5 INT DOWN _dud_ INT RSTSIG _dud_ INT LLINP _dud_ INT ULINP
|
||||
OUTVARS: POINT0 INT COUNT
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
DATA_SIZES: INTDATA=616 FLOATDATA=0 CHARDATA=601 INVARS=1 OUTVARS=5
|
||||
INTDATA: 1 Card 2 Port 5 numVarsToGTNETSKT 5 numVarsFromGTNETSKT 0 TypeToGTNETSKT0
|
||||
INTDATA: 0 TypeToGTNETSKT1 0 TypeToGTNETSKT2 0 TypeToGTNETSKT3 1 TypeToGTNETSKT4 0 TypeToGTNETSKT5
|
||||
INTDATA: 0 TypeToGTNETSKT6 0 TypeToGTNETSKT7 0 TypeToGTNETSKT8 0 TypeToGTNETSKT9 0 TypeToGTNETSKT10
|
||||
INTDATA: 0 TypeToGTNETSKT11 0 TypeToGTNETSKT12 0 TypeToGTNETSKT13 0 TypeToGTNETSKT14 0 TypeToGTNETSKT15
|
||||
INTDATA: 0 TypeToGTNETSKT16 0 TypeToGTNETSKT17 0 TypeToGTNETSKT18 0 TypeToGTNETSKT19 0 TypeToGTNETSKT20
|
||||
INTDATA: 0 TypeToGTNETSKT21 0 TypeToGTNETSKT22 0 TypeToGTNETSKT23 0 TypeToGTNETSKT24 0 TypeToGTNETSKT25
|
||||
INTDATA: 0 TypeToGTNETSKT26 0 TypeToGTNETSKT27 0 TypeToGTNETSKT28 0 TypeToGTNETSKT29 0 TypeToGTNETSKT30
|
||||
INTDATA: 0 TypeToGTNETSKT31 0 TypeToGTNETSKT32 0 TypeToGTNETSKT33 0 TypeToGTNETSKT34 0 TypeToGTNETSKT35
|
||||
INTDATA: 0 TypeToGTNETSKT36 0 TypeToGTNETSKT37 0 TypeToGTNETSKT38 0 TypeToGTNETSKT39 0 TypeToGTNETSKT40
|
||||
INTDATA: 0 TypeToGTNETSKT41 0 TypeToGTNETSKT42 0 TypeToGTNETSKT43 0 TypeToGTNETSKT44 0 TypeToGTNETSKT45
|
||||
INTDATA: 0 TypeToGTNETSKT46 0 TypeToGTNETSKT47 0 TypeToGTNETSKT48 0 TypeToGTNETSKT49 0 TypeToGTNETSKT50
|
||||
INTDATA: 0 TypeToGTNETSKT51 0 TypeToGTNETSKT52 0 TypeToGTNETSKT53 0 TypeToGTNETSKT54 0 TypeToGTNETSKT55
|
||||
CHARDATA: POINT0 out0x POINT1 out1x POINT2 out2x POINT3 out3x POINT4 out4x
|
||||
CHARDATA: POINT5 out5x POINT6 out6x POINT7 out7x POINT8 out8x POINT9 out9x
|
||||
CHARDATA: POINT10 out10x POINT11 out11x POINT12 out12x POINT13 out13x POINT14 out14x
|
||||
CHARDATA: POINT15 out15x POINT16 out16x POINT17 out17x POINT18 out18x POINT19 out19x
|
||||
CHARDATA: POINT20 out20x POINT21 out21x POINT22 out22x POINT23 out23x POINT24 out24x
|
||||
INVARS: SendData INT SendDataFlag
|
||||
OUTVARS: IT_4 INT socketOverflow IT_3 INT gtnetInvMsg rxCnt INT gtnetSktNewDataSeq IT_2 INT gtnetSktNewDataFlag readyToSen INT gtnetSktReadyToSend
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT56 0 TypeToGTNETSKT57 0 TypeToGTNETSKT58 0 TypeToGTNETSKT59 0 TypeToGTNETSKT60
|
||||
INTDATA: 0 TypeToGTNETSKT61 0 TypeToGTNETSKT62 0 TypeToGTNETSKT63 0 TypeToGTNETSKT64 0 TypeToGTNETSKT65
|
||||
INTDATA: 0 TypeToGTNETSKT66 0 TypeToGTNETSKT67 0 TypeToGTNETSKT68 0 TypeToGTNETSKT69 0 TypeToGTNETSKT70
|
||||
INTDATA: 0 TypeToGTNETSKT71 0 TypeToGTNETSKT72 0 TypeToGTNETSKT73 0 TypeToGTNETSKT74 0 TypeToGTNETSKT75
|
||||
INTDATA: 0 TypeToGTNETSKT76 0 TypeToGTNETSKT77 0 TypeToGTNETSKT78 0 TypeToGTNETSKT79 0 TypeToGTNETSKT80
|
||||
INTDATA: 0 TypeToGTNETSKT81 0 TypeToGTNETSKT82 0 TypeToGTNETSKT83 0 TypeToGTNETSKT84 0 TypeToGTNETSKT85
|
||||
INTDATA: 0 TypeToGTNETSKT86 0 TypeToGTNETSKT87 0 TypeToGTNETSKT88 0 TypeToGTNETSKT89 0 TypeToGTNETSKT90
|
||||
INTDATA: 0 TypeToGTNETSKT91 0 TypeToGTNETSKT92 0 TypeToGTNETSKT93 0 TypeToGTNETSKT94 0 TypeToGTNETSKT95
|
||||
INTDATA: 0 TypeToGTNETSKT96 0 TypeToGTNETSKT97 0 TypeToGTNETSKT98 0 TypeToGTNETSKT99 0 TypeToGTNETSKT100
|
||||
INTDATA: 0 TypeToGTNETSKT101 0 TypeToGTNETSKT102 0 TypeToGTNETSKT103 0 TypeToGTNETSKT104 0 TypeToGTNETSKT105
|
||||
INTDATA: 0 TypeToGTNETSKT106 0 TypeToGTNETSKT107 0 TypeToGTNETSKT108 0 TypeToGTNETSKT109 0 TypeToGTNETSKT110
|
||||
INTDATA: 0 TypeToGTNETSKT111 0 TypeToGTNETSKT112 0 TypeToGTNETSKT113 0 TypeToGTNETSKT114 0 TypeToGTNETSKT115
|
||||
CHARDATA: POINT25 out25x POINT26 out26x POINT27 out27x POINT28 out28x POINT29 out29x
|
||||
CHARDATA: POINT30 out30x POINT31 out31x POINT32 out32x POINT33 out33x POINT34 out34x
|
||||
CHARDATA: POINT35 out35x POINT36 out36x POINT37 out37x POINT38 out38x POINT39 out39x
|
||||
CHARDATA: POINT40 out40x POINT41 out41x POINT42 out42x POINT43 out43x POINT44 out44x
|
||||
CHARDATA: POINT45 out45x POINT46 out46x POINT47 out47x POINT48 out48x POINT49 out49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT116 0 TypeToGTNETSKT117 0 TypeToGTNETSKT118 0 TypeToGTNETSKT119 0 TypeToGTNETSKT120
|
||||
INTDATA: 0 TypeToGTNETSKT121 0 TypeToGTNETSKT122 0 TypeToGTNETSKT123 0 TypeToGTNETSKT124 0 TypeToGTNETSKT125
|
||||
INTDATA: 0 TypeToGTNETSKT126 0 TypeToGTNETSKT127 0 TypeToGTNETSKT128 0 TypeToGTNETSKT129 0 TypeToGTNETSKT130
|
||||
INTDATA: 0 TypeToGTNETSKT131 0 TypeToGTNETSKT132 0 TypeToGTNETSKT133 0 TypeToGTNETSKT134 0 TypeToGTNETSKT135
|
||||
INTDATA: 0 TypeToGTNETSKT136 0 TypeToGTNETSKT137 0 TypeToGTNETSKT138 0 TypeToGTNETSKT139 0 TypeToGTNETSKT140
|
||||
INTDATA: 0 TypeToGTNETSKT141 0 TypeToGTNETSKT142 0 TypeToGTNETSKT143 0 TypeToGTNETSKT144 0 TypeToGTNETSKT145
|
||||
INTDATA: 0 TypeToGTNETSKT146 0 TypeToGTNETSKT147 0 TypeToGTNETSKT148 0 TypeToGTNETSKT149 0 TypeToGTNETSKT150
|
||||
INTDATA: 0 TypeToGTNETSKT151 0 TypeToGTNETSKT152 0 TypeToGTNETSKT153 0 TypeToGTNETSKT154 0 TypeToGTNETSKT155
|
||||
INTDATA: 0 TypeToGTNETSKT156 0 TypeToGTNETSKT157 0 TypeToGTNETSKT158 0 TypeToGTNETSKT159 0 TypeToGTNETSKT160
|
||||
INTDATA: 0 TypeToGTNETSKT161 0 TypeToGTNETSKT162 0 TypeToGTNETSKT163 0 TypeToGTNETSKT164 0 TypeToGTNETSKT165
|
||||
INTDATA: 0 TypeToGTNETSKT166 0 TypeToGTNETSKT167 0 TypeToGTNETSKT168 0 TypeToGTNETSKT169 0 TypeToGTNETSKT170
|
||||
INTDATA: 0 TypeToGTNETSKT171 0 TypeToGTNETSKT172 0 TypeToGTNETSKT173 0 TypeToGTNETSKT174 0 TypeToGTNETSKT175
|
||||
CHARDATA: POINT50 out50x POINT51 out51x POINT52 out52x POINT53 out53x POINT54 out54x
|
||||
CHARDATA: POINT55 out55x POINT56 out56x POINT57 out57x POINT58 out58x POINT59 out59x
|
||||
CHARDATA: POINT60 out60x POINT61 out61x POINT62 out62x POINT63 out63x POINT64 out64x
|
||||
CHARDATA: POINT65 out65x POINT66 out66x POINT67 out67x POINT68 out68x POINT69 out69x
|
||||
CHARDATA: POINT70 out70x POINT71 out71x POINT72 out72x POINT73 out73x POINT74 out74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT176 0 TypeToGTNETSKT177 0 TypeToGTNETSKT178 0 TypeToGTNETSKT179 0 TypeToGTNETSKT180
|
||||
INTDATA: 0 TypeToGTNETSKT181 0 TypeToGTNETSKT182 0 TypeToGTNETSKT183 0 TypeToGTNETSKT184 0 TypeToGTNETSKT185
|
||||
INTDATA: 0 TypeToGTNETSKT186 0 TypeToGTNETSKT187 0 TypeToGTNETSKT188 0 TypeToGTNETSKT189 0 TypeToGTNETSKT190
|
||||
INTDATA: 0 TypeToGTNETSKT191 0 TypeToGTNETSKT192 0 TypeToGTNETSKT193 0 TypeToGTNETSKT194 0 TypeToGTNETSKT195
|
||||
INTDATA: 0 TypeToGTNETSKT196 0 TypeToGTNETSKT197 0 TypeToGTNETSKT198 0 TypeToGTNETSKT199 0 TypeToGTNETSKT200
|
||||
INTDATA: 0 TypeToGTNETSKT201 0 TypeToGTNETSKT202 0 TypeToGTNETSKT203 0 TypeToGTNETSKT204 0 TypeToGTNETSKT205
|
||||
INTDATA: 0 TypeToGTNETSKT206 0 TypeToGTNETSKT207 0 TypeToGTNETSKT208 0 TypeToGTNETSKT209 0 TypeToGTNETSKT210
|
||||
INTDATA: 0 TypeToGTNETSKT211 0 TypeToGTNETSKT212 0 TypeToGTNETSKT213 0 TypeToGTNETSKT214 0 TypeToGTNETSKT215
|
||||
INTDATA: 0 TypeToGTNETSKT216 0 TypeToGTNETSKT217 0 TypeToGTNETSKT218 0 TypeToGTNETSKT219 0 TypeToGTNETSKT220
|
||||
INTDATA: 0 TypeToGTNETSKT221 0 TypeToGTNETSKT222 0 TypeToGTNETSKT223 0 TypeToGTNETSKT224 0 TypeToGTNETSKT225
|
||||
INTDATA: 0 TypeToGTNETSKT226 0 TypeToGTNETSKT227 0 TypeToGTNETSKT228 0 TypeToGTNETSKT229 0 TypeToGTNETSKT230
|
||||
INTDATA: 0 TypeToGTNETSKT231 0 TypeToGTNETSKT232 0 TypeToGTNETSKT233 0 TypeToGTNETSKT234 0 TypeToGTNETSKT235
|
||||
CHARDATA: POINT75 out75x POINT76 out76x POINT77 out77x POINT78 out78x POINT79 out79x
|
||||
CHARDATA: POINT80 out80x POINT81 out81x POINT82 out82x POINT83 out83x POINT84 out84x
|
||||
CHARDATA: POINT85 out85x POINT86 out86x POINT87 out87x POINT88 out88x POINT89 out89x
|
||||
CHARDATA: POINT90 out90x POINT91 out91x POINT92 out92x POINT93 out93x POINT94 out94x
|
||||
CHARDATA: POINT95 out95x POINT96 out96x POINT97 out97x POINT98 out98x POINT99 out99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT236 0 TypeToGTNETSKT237 0 TypeToGTNETSKT238 0 TypeToGTNETSKT239 0 TypeToGTNETSKT240
|
||||
INTDATA: 0 TypeToGTNETSKT241 0 TypeToGTNETSKT242 0 TypeToGTNETSKT243 0 TypeToGTNETSKT244 0 TypeToGTNETSKT245
|
||||
INTDATA: 0 TypeToGTNETSKT246 0 TypeToGTNETSKT247 0 TypeToGTNETSKT248 0 TypeToGTNETSKT249 0 TypeToGTNETSKT250
|
||||
INTDATA: 0 TypeToGTNETSKT251 0 TypeToGTNETSKT252 0 TypeToGTNETSKT253 0 TypeToGTNETSKT254 0 TypeToGTNETSKT255
|
||||
INTDATA: 0 TypeToGTNETSKT256 0 TypeToGTNETSKT257 0 TypeToGTNETSKT258 0 TypeToGTNETSKT259 0 TypeToGTNETSKT260
|
||||
INTDATA: 0 TypeToGTNETSKT261 0 TypeToGTNETSKT262 0 TypeToGTNETSKT263 0 TypeToGTNETSKT264 0 TypeToGTNETSKT265
|
||||
INTDATA: 0 TypeToGTNETSKT266 0 TypeToGTNETSKT267 0 TypeToGTNETSKT268 0 TypeToGTNETSKT269 0 TypeToGTNETSKT270
|
||||
INTDATA: 0 TypeToGTNETSKT271 0 TypeToGTNETSKT272 0 TypeToGTNETSKT273 0 TypeToGTNETSKT274 0 TypeToGTNETSKT275
|
||||
INTDATA: 0 TypeToGTNETSKT276 0 TypeToGTNETSKT277 0 TypeToGTNETSKT278 0 TypeToGTNETSKT279 0 TypeToGTNETSKT280
|
||||
INTDATA: 0 TypeToGTNETSKT281 0 TypeToGTNETSKT282 0 TypeToGTNETSKT283 0 TypeToGTNETSKT284 0 TypeToGTNETSKT285
|
||||
INTDATA: 0 TypeToGTNETSKT286 0 TypeToGTNETSKT287 0 TypeToGTNETSKT288 0 TypeToGTNETSKT289 0 TypeToGTNETSKT290
|
||||
INTDATA: 0 TypeToGTNETSKT291 0 TypeToGTNETSKT292 0 TypeToGTNETSKT293 0 TypeToGTNETSKT294 0 TypeToGTNETSKT295
|
||||
CHARDATA: POINT100 out100x POINT101 out101x POINT102 out102x POINT103 out103x POINT104 out104x
|
||||
CHARDATA: POINT105 out105x POINT106 out106x POINT107 out107x POINT108 out108x POINT109 out109x
|
||||
CHARDATA: POINT110 out110x POINT111 out111x POINT112 out112x POINT113 out113x POINT114 out114x
|
||||
CHARDATA: POINT115 out115x POINT116 out116x POINT117 out117x POINT118 out118x POINT119 out119x
|
||||
CHARDATA: POINT120 out120x POINT121 out121x POINT122 out122x POINT123 out123x POINT124 out124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT296 0 TypeToGTNETSKT297 0 TypeToGTNETSKT298 0 TypeToGTNETSKT299 0 TypeFrGTNETSKT0
|
||||
INTDATA: 0 TypeFrGTNETSKT1 0 TypeFrGTNETSKT2 0 TypeFrGTNETSKT3 1 TypeFrGTNETSKT4 0 TypeFrGTNETSKT5
|
||||
INTDATA: 0 TypeFrGTNETSKT6 0 TypeFrGTNETSKT7 0 TypeFrGTNETSKT8 0 TypeFrGTNETSKT9 0 TypeFrGTNETSKT10
|
||||
INTDATA: 0 TypeFrGTNETSKT11 0 TypeFrGTNETSKT12 0 TypeFrGTNETSKT13 0 TypeFrGTNETSKT14 0 TypeFrGTNETSKT15
|
||||
INTDATA: 0 TypeFrGTNETSKT16 0 TypeFrGTNETSKT17 0 TypeFrGTNETSKT18 0 TypeFrGTNETSKT19 0 TypeFrGTNETSKT20
|
||||
INTDATA: 0 TypeFrGTNETSKT21 0 TypeFrGTNETSKT22 0 TypeFrGTNETSKT23 0 TypeFrGTNETSKT24 0 TypeFrGTNETSKT25
|
||||
INTDATA: 0 TypeFrGTNETSKT26 0 TypeFrGTNETSKT27 0 TypeFrGTNETSKT28 0 TypeFrGTNETSKT29 0 TypeFrGTNETSKT30
|
||||
INTDATA: 0 TypeFrGTNETSKT31 0 TypeFrGTNETSKT32 0 TypeFrGTNETSKT33 0 TypeFrGTNETSKT34 0 TypeFrGTNETSKT35
|
||||
INTDATA: 0 TypeFrGTNETSKT36 0 TypeFrGTNETSKT37 0 TypeFrGTNETSKT38 0 TypeFrGTNETSKT39 0 TypeFrGTNETSKT40
|
||||
INTDATA: 0 TypeFrGTNETSKT41 0 TypeFrGTNETSKT42 0 TypeFrGTNETSKT43 0 TypeFrGTNETSKT44 0 TypeFrGTNETSKT45
|
||||
INTDATA: 0 TypeFrGTNETSKT46 0 TypeFrGTNETSKT47 0 TypeFrGTNETSKT48 0 TypeFrGTNETSKT49 0 TypeFrGTNETSKT50
|
||||
INTDATA: 0 TypeFrGTNETSKT51 0 TypeFrGTNETSKT52 0 TypeFrGTNETSKT53 0 TypeFrGTNETSKT54 0 TypeFrGTNETSKT55
|
||||
CHARDATA: POINT125 out125x POINT126 out126x POINT127 out127x POINT128 out128x POINT129 out129x
|
||||
CHARDATA: POINT130 out130x POINT131 out131x POINT132 out132x POINT133 out133x POINT134 out134x
|
||||
CHARDATA: POINT135 out135x POINT136 out136x POINT137 out137x POINT138 out138x POINT139 out139x
|
||||
CHARDATA: POINT140 out140x POINT141 out141x POINT142 out142x POINT143 out143x POINT144 out144x
|
||||
CHARDATA: POINT145 out145x POINT146 out146x POINT147 out147x POINT148 out148x POINT149 out149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT56 0 TypeFrGTNETSKT57 0 TypeFrGTNETSKT58 0 TypeFrGTNETSKT59 0 TypeFrGTNETSKT60
|
||||
INTDATA: 0 TypeFrGTNETSKT61 0 TypeFrGTNETSKT62 0 TypeFrGTNETSKT63 0 TypeFrGTNETSKT64 0 TypeFrGTNETSKT65
|
||||
INTDATA: 0 TypeFrGTNETSKT66 0 TypeFrGTNETSKT67 0 TypeFrGTNETSKT68 0 TypeFrGTNETSKT69 0 TypeFrGTNETSKT70
|
||||
INTDATA: 0 TypeFrGTNETSKT71 0 TypeFrGTNETSKT72 0 TypeFrGTNETSKT73 0 TypeFrGTNETSKT74 0 TypeFrGTNETSKT75
|
||||
INTDATA: 0 TypeFrGTNETSKT76 0 TypeFrGTNETSKT77 0 TypeFrGTNETSKT78 0 TypeFrGTNETSKT79 0 TypeFrGTNETSKT80
|
||||
INTDATA: 0 TypeFrGTNETSKT81 0 TypeFrGTNETSKT82 0 TypeFrGTNETSKT83 0 TypeFrGTNETSKT84 0 TypeFrGTNETSKT85
|
||||
INTDATA: 0 TypeFrGTNETSKT86 0 TypeFrGTNETSKT87 0 TypeFrGTNETSKT88 0 TypeFrGTNETSKT89 0 TypeFrGTNETSKT90
|
||||
INTDATA: 0 TypeFrGTNETSKT91 0 TypeFrGTNETSKT92 0 TypeFrGTNETSKT93 0 TypeFrGTNETSKT94 0 TypeFrGTNETSKT95
|
||||
INTDATA: 0 TypeFrGTNETSKT96 0 TypeFrGTNETSKT97 0 TypeFrGTNETSKT98 0 TypeFrGTNETSKT99 0 TypeFrGTNETSKT100
|
||||
INTDATA: 0 TypeFrGTNETSKT101 0 TypeFrGTNETSKT102 0 TypeFrGTNETSKT103 0 TypeFrGTNETSKT104 0 TypeFrGTNETSKT105
|
||||
INTDATA: 0 TypeFrGTNETSKT106 0 TypeFrGTNETSKT107 0 TypeFrGTNETSKT108 0 TypeFrGTNETSKT109 0 TypeFrGTNETSKT110
|
||||
INTDATA: 0 TypeFrGTNETSKT111 0 TypeFrGTNETSKT112 0 TypeFrGTNETSKT113 0 TypeFrGTNETSKT114 0 TypeFrGTNETSKT115
|
||||
CHARDATA: POINT150 out150x POINT151 out151x POINT152 out152x POINT153 out153x POINT154 out154x
|
||||
CHARDATA: POINT155 out155x POINT156 out156x POINT157 out157x POINT158 out158x POINT159 out159x
|
||||
CHARDATA: POINT160 out160x POINT161 out161x POINT162 out162x POINT163 out163x POINT164 out164x
|
||||
CHARDATA: POINT165 out165x POINT166 out166x POINT167 out167x POINT168 out168x POINT169 out169x
|
||||
CHARDATA: POINT170 out170x POINT171 out171x POINT172 out172x POINT173 out173x POINT174 out174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT116 0 TypeFrGTNETSKT117 0 TypeFrGTNETSKT118 0 TypeFrGTNETSKT119 0 TypeFrGTNETSKT120
|
||||
INTDATA: 0 TypeFrGTNETSKT121 0 TypeFrGTNETSKT122 0 TypeFrGTNETSKT123 0 TypeFrGTNETSKT124 0 TypeFrGTNETSKT125
|
||||
INTDATA: 0 TypeFrGTNETSKT126 0 TypeFrGTNETSKT127 0 TypeFrGTNETSKT128 0 TypeFrGTNETSKT129 0 TypeFrGTNETSKT130
|
||||
INTDATA: 0 TypeFrGTNETSKT131 0 TypeFrGTNETSKT132 0 TypeFrGTNETSKT133 0 TypeFrGTNETSKT134 0 TypeFrGTNETSKT135
|
||||
INTDATA: 0 TypeFrGTNETSKT136 0 TypeFrGTNETSKT137 0 TypeFrGTNETSKT138 0 TypeFrGTNETSKT139 0 TypeFrGTNETSKT140
|
||||
INTDATA: 0 TypeFrGTNETSKT141 0 TypeFrGTNETSKT142 0 TypeFrGTNETSKT143 0 TypeFrGTNETSKT144 0 TypeFrGTNETSKT145
|
||||
INTDATA: 0 TypeFrGTNETSKT146 0 TypeFrGTNETSKT147 0 TypeFrGTNETSKT148 0 TypeFrGTNETSKT149 0 TypeFrGTNETSKT150
|
||||
INTDATA: 0 TypeFrGTNETSKT151 0 TypeFrGTNETSKT152 0 TypeFrGTNETSKT153 0 TypeFrGTNETSKT154 0 TypeFrGTNETSKT155
|
||||
INTDATA: 0 TypeFrGTNETSKT156 0 TypeFrGTNETSKT157 0 TypeFrGTNETSKT158 0 TypeFrGTNETSKT159 0 TypeFrGTNETSKT160
|
||||
INTDATA: 0 TypeFrGTNETSKT161 0 TypeFrGTNETSKT162 0 TypeFrGTNETSKT163 0 TypeFrGTNETSKT164 0 TypeFrGTNETSKT165
|
||||
INTDATA: 0 TypeFrGTNETSKT166 0 TypeFrGTNETSKT167 0 TypeFrGTNETSKT168 0 TypeFrGTNETSKT169 0 TypeFrGTNETSKT170
|
||||
INTDATA: 0 TypeFrGTNETSKT171 0 TypeFrGTNETSKT172 0 TypeFrGTNETSKT173 0 TypeFrGTNETSKT174 0 TypeFrGTNETSKT175
|
||||
CHARDATA: POINT175 out175x POINT176 out176x POINT177 out177x POINT178 out178x POINT179 out179x
|
||||
CHARDATA: POINT180 out180x POINT181 out181x POINT182 out182x POINT183 out183x POINT184 out184x
|
||||
CHARDATA: POINT185 out185x POINT186 out186x POINT187 out187x POINT188 out188x POINT189 out189x
|
||||
CHARDATA: POINT190 out190x POINT191 out191x POINT192 out192x POINT193 out193x POINT194 out194x
|
||||
CHARDATA: POINT195 out195x POINT196 out196x POINT197 out197x POINT198 out198x POINT199 out199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT176 0 TypeFrGTNETSKT177 0 TypeFrGTNETSKT178 0 TypeFrGTNETSKT179 0 TypeFrGTNETSKT180
|
||||
INTDATA: 0 TypeFrGTNETSKT181 0 TypeFrGTNETSKT182 0 TypeFrGTNETSKT183 0 TypeFrGTNETSKT184 0 TypeFrGTNETSKT185
|
||||
INTDATA: 0 TypeFrGTNETSKT186 0 TypeFrGTNETSKT187 0 TypeFrGTNETSKT188 0 TypeFrGTNETSKT189 0 TypeFrGTNETSKT190
|
||||
INTDATA: 0 TypeFrGTNETSKT191 0 TypeFrGTNETSKT192 0 TypeFrGTNETSKT193 0 TypeFrGTNETSKT194 0 TypeFrGTNETSKT195
|
||||
INTDATA: 0 TypeFrGTNETSKT196 0 TypeFrGTNETSKT197 0 TypeFrGTNETSKT198 0 TypeFrGTNETSKT199 0 TypeFrGTNETSKT200
|
||||
INTDATA: 0 TypeFrGTNETSKT201 0 TypeFrGTNETSKT202 0 TypeFrGTNETSKT203 0 TypeFrGTNETSKT204 0 TypeFrGTNETSKT205
|
||||
INTDATA: 0 TypeFrGTNETSKT206 0 TypeFrGTNETSKT207 0 TypeFrGTNETSKT208 0 TypeFrGTNETSKT209 0 TypeFrGTNETSKT210
|
||||
INTDATA: 0 TypeFrGTNETSKT211 0 TypeFrGTNETSKT212 0 TypeFrGTNETSKT213 0 TypeFrGTNETSKT214 0 TypeFrGTNETSKT215
|
||||
INTDATA: 0 TypeFrGTNETSKT216 0 TypeFrGTNETSKT217 0 TypeFrGTNETSKT218 0 TypeFrGTNETSKT219 0 TypeFrGTNETSKT220
|
||||
INTDATA: 0 TypeFrGTNETSKT221 0 TypeFrGTNETSKT222 0 TypeFrGTNETSKT223 0 TypeFrGTNETSKT224 0 TypeFrGTNETSKT225
|
||||
INTDATA: 0 TypeFrGTNETSKT226 0 TypeFrGTNETSKT227 0 TypeFrGTNETSKT228 0 TypeFrGTNETSKT229 0 TypeFrGTNETSKT230
|
||||
INTDATA: 0 TypeFrGTNETSKT231 0 TypeFrGTNETSKT232 0 TypeFrGTNETSKT233 0 TypeFrGTNETSKT234 0 TypeFrGTNETSKT235
|
||||
CHARDATA: POINT200 out200x POINT201 out201x POINT202 out202x POINT203 out203x POINT204 out204x
|
||||
CHARDATA: POINT205 out205x POINT206 out206x POINT207 out207x POINT208 out208x POINT209 out209x
|
||||
CHARDATA: POINT210 out210x POINT211 out211x POINT212 out212x POINT213 out213x POINT214 out214x
|
||||
CHARDATA: POINT215 out215x POINT216 out216x POINT217 out217x POINT218 out218x POINT219 out219x
|
||||
CHARDATA: POINT220 out220x POINT221 out221x POINT222 out222x POINT223 out223x POINT224 out224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT236 0 TypeFrGTNETSKT237 0 TypeFrGTNETSKT238 0 TypeFrGTNETSKT239 0 TypeFrGTNETSKT240
|
||||
INTDATA: 0 TypeFrGTNETSKT241 0 TypeFrGTNETSKT242 0 TypeFrGTNETSKT243 0 TypeFrGTNETSKT244 0 TypeFrGTNETSKT245
|
||||
INTDATA: 0 TypeFrGTNETSKT246 0 TypeFrGTNETSKT247 0 TypeFrGTNETSKT248 0 TypeFrGTNETSKT249 0 TypeFrGTNETSKT250
|
||||
INTDATA: 0 TypeFrGTNETSKT251 0 TypeFrGTNETSKT252 0 TypeFrGTNETSKT253 0 TypeFrGTNETSKT254 0 TypeFrGTNETSKT255
|
||||
INTDATA: 0 TypeFrGTNETSKT256 0 TypeFrGTNETSKT257 0 TypeFrGTNETSKT258 0 TypeFrGTNETSKT259 0 TypeFrGTNETSKT260
|
||||
INTDATA: 0 TypeFrGTNETSKT261 0 TypeFrGTNETSKT262 0 TypeFrGTNETSKT263 0 TypeFrGTNETSKT264 0 TypeFrGTNETSKT265
|
||||
INTDATA: 0 TypeFrGTNETSKT266 0 TypeFrGTNETSKT267 0 TypeFrGTNETSKT268 0 TypeFrGTNETSKT269 0 TypeFrGTNETSKT270
|
||||
INTDATA: 0 TypeFrGTNETSKT271 0 TypeFrGTNETSKT272 0 TypeFrGTNETSKT273 0 TypeFrGTNETSKT274 0 TypeFrGTNETSKT275
|
||||
INTDATA: 0 TypeFrGTNETSKT276 0 TypeFrGTNETSKT277 0 TypeFrGTNETSKT278 0 TypeFrGTNETSKT279 0 TypeFrGTNETSKT280
|
||||
INTDATA: 0 TypeFrGTNETSKT281 0 TypeFrGTNETSKT282 0 TypeFrGTNETSKT283 0 TypeFrGTNETSKT284 0 TypeFrGTNETSKT285
|
||||
INTDATA: 0 TypeFrGTNETSKT286 0 TypeFrGTNETSKT287 0 TypeFrGTNETSKT288 0 TypeFrGTNETSKT289 0 TypeFrGTNETSKT290
|
||||
INTDATA: 0 TypeFrGTNETSKT291 0 TypeFrGTNETSKT292 0 TypeFrGTNETSKT293 0 TypeFrGTNETSKT294 0 TypeFrGTNETSKT295
|
||||
CHARDATA: POINT225 out225x POINT226 out226x POINT227 out227x POINT228 out228x POINT229 out229x
|
||||
CHARDATA: POINT230 out230x POINT231 out231x POINT232 out232x POINT233 out233x POINT234 out234x
|
||||
CHARDATA: POINT235 out235x POINT236 out236x POINT237 out237x POINT238 out238x POINT239 out239x
|
||||
CHARDATA: POINT240 out240x POINT241 out241x POINT242 out242x POINT243 out243x POINT244 out244x
|
||||
CHARDATA: POINT245 out245x POINT246 out246x POINT247 out247x POINT248 out248x POINT249 out249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT296 0 TypeFrGTNETSKT297 0 TypeFrGTNETSKT298 0 TypeFrGTNETSKT299 3 useVersion
|
||||
INTDATA: 134 rem_ip_byte_0 130 rem_ip_byte_1 169 rem_ip_byte_2 31 rem_ip_byte_3 12001 local_udp_tcp_port
|
||||
INTDATA: 12002 remote_udp_tcp_port 0 port_mode 2 DataDirection 0 gtnetSktToFile 0 gtnetSktFromFile
|
||||
INTDATA: 1 gtnetSktType
|
||||
CHARDATA: POINT250 out250x POINT251 out251x POINT252 out252x POINT253 out253x POINT254 out254x
|
||||
CHARDATA: POINT255 out255x POINT256 out256x POINT257 out257x POINT258 out258x POINT259 out259x
|
||||
CHARDATA: POINT260 out260x POINT261 out261x POINT262 out262x POINT263 out263x POINT264 out264x
|
||||
CHARDATA: POINT265 out265x POINT266 out266x POINT267 out267x POINT268 out268x POINT269 out269x
|
||||
CHARDATA: POINT270 out270x POINT271 out271x POINT272 out272x POINT273 out273x POINT274 out274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT275 out275x POINT276 out276x POINT277 out277x POINT278 out278x POINT279 out279x
|
||||
CHARDATA: POINT280 out280x POINT281 out281x POINT282 out282x POINT283 out283x POINT284 out284x
|
||||
CHARDATA: POINT285 out285x POINT286 out286x POINT287 out287x POINT288 out288x POINT289 out289x
|
||||
CHARDATA: POINT290 out290x POINT291 out291x POINT292 out292x POINT293 out293x POINT294 out294x
|
||||
CHARDATA: POINT295 out295x POINT296 out296x POINT297 out297x POINT298 out298x POINT299 out299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINTIn0 in0x POINTin1 in1x POINTin2 in2x POINTin3 in3x POINTin4 in4x
|
||||
CHARDATA: POINT5 in5x POINT6 in6x POINT7 in7x POINT8 in8x POINT9 in9x
|
||||
CHARDATA: POINT10 in10x POINT11 in11x POINT12 in12x POINT13 in13x POINT14 in14x
|
||||
CHARDATA: POINT15 in15x POINT16 in16x POINT17 in17x POINT18 in18x POINT19 in19x
|
||||
CHARDATA: POINT20 in20x POINT21 in21x POINT22 in22x POINT23 in23x POINT24 in24x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT25 in25x POINT26 in26x POINT27 in27x POINT28 in28x POINT29 in29x
|
||||
CHARDATA: POINT30 in30x POINT31 in31x POINT32 in32x POINT33 in33x POINT34 in34x
|
||||
CHARDATA: POINT35 in35x POINT36 in36x POINT37 in37x POINT38 in38x POINT39 in39x
|
||||
CHARDATA: POINT40 in40x POINT41 in41x POINT42 in42x POINT43 in43x POINT44 in44x
|
||||
CHARDATA: POINT45 in45x POINT46 in46x POINT47 in47x POINT48 in48x POINT49 in49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT50 in50x POINT51 in51x POINT52 in52x POINT53 in53x POINT54 in54x
|
||||
CHARDATA: POINT55 in55x POINT56 in56x POINT57 in57x POINT58 in58x POINT59 in59x
|
||||
CHARDATA: POINT60 in60x POINT61 in61x POINT62 in62x POINT63 in63x POINT64 in64x
|
||||
CHARDATA: POINT65 in65x POINT66 in66x POINT67 in67x POINT68 in68x POINT69 in69x
|
||||
CHARDATA: POINT70 in70x POINT71 in71x POINT72 in72x POINT73 in73x POINT74 in74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT75 in75x POINT76 in76x POINT77 in77x POINT78 in78x POINT79 in79x
|
||||
CHARDATA: POINT80 in80x POINT81 in81x POINT82 in82x POINT83 in83x POINT84 in84x
|
||||
CHARDATA: POINT85 in85x POINT86 in86x POINT87 in87x POINT88 in88x POINT89 in89x
|
||||
CHARDATA: POINT90 in90x POINT91 in91x POINT92 in92x POINT93 in93x POINT94 in94x
|
||||
CHARDATA: POINT95 in95x POINT96 in96x POINT97 in97x POINT98 in98x POINT99 in99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT100 in100x POINT101 in101x POINT102 in102x POINT103 in103x POINT104 in104x
|
||||
CHARDATA: POINT105 in105x POINT106 in106x POINT107 in107x POINT108 in108x POINT109 in109x
|
||||
CHARDATA: POINT110 in110x POINT111 in111x POINT112 in112x POINT113 in113x POINT114 in114x
|
||||
CHARDATA: POINT115 in115x POINT116 in116x POINT117 in117x POINT118 in118x POINT119 in119x
|
||||
CHARDATA: POINT120 in120x POINT121 in121x POINT122 in122x POINT123 in123x POINT124 in124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT125 in125x POINT126 in126x POINT127 in127x POINT128 in128x POINT129 in129x
|
||||
CHARDATA: POINT130 in130x POINT131 in131x POINT132 in132x POINT133 in133x POINT134 in134x
|
||||
CHARDATA: POINT135 in135x POINT136 in136x POINT137 in137x POINT138 in138x POINT139 in139x
|
||||
CHARDATA: POINT140 in140x POINT141 in141x POINT142 in142x POINT143 in143x POINT144 in144x
|
||||
CHARDATA: POINT145 in145x POINT146 in146x POINT147 in147x POINT148 in148x POINT149 in149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT150 in150x POINT151 in151x POINT152 in152x POINT153 in153x POINT154 in154x
|
||||
CHARDATA: POINT155 in155x POINT156 in156x POINT157 in157x POINT158 in158x POINT159 in159x
|
||||
CHARDATA: POINT160 in160x POINT161 in161x POINT162 in162x POINT163 in163x POINT164 in164x
|
||||
CHARDATA: POINT165 in165x POINT166 in166x POINT167 in167x POINT168 in168x POINT169 in169x
|
||||
CHARDATA: POINT170 in170x POINT171 in171x POINT172 in172x POINT173 in173x POINT174 in174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT175 in175x POINT176 in176x POINT177 in177x POINT178 in178x POINT179 in179x
|
||||
CHARDATA: POINT180 in180x POINT181 in181x POINT182 in182x POINT183 in183x POINT184 in184x
|
||||
CHARDATA: POINT185 in185x POINT186 in186x POINT187 in187x POINT188 in188x POINT189 in189x
|
||||
CHARDATA: POINT190 in190x POINT191 in191x POINT192 in192x POINT193 in193x POINT194 in194x
|
||||
CHARDATA: POINT195 in195x POINT196 in196x POINT197 in197x POINT198 in198x POINT199 in199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT200 in200x POINT201 in201x POINT202 in202x POINT203 in203x POINT204 in204x
|
||||
CHARDATA: POINT205 in205x POINT206 in206x POINT207 in207x POINT208 in208x POINT209 in209x
|
||||
CHARDATA: POINT210 in210x POINT211 in211x POINT212 in212x POINT213 in213x POINT214 in214x
|
||||
CHARDATA: POINT215 in215x POINT216 in216x POINT217 in217x POINT218 in218x POINT219 in219x
|
||||
CHARDATA: POINT220 in220x POINT221 in221x POINT222 in222x POINT223 in223x POINT224 in224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT225 in225x POINT226 in226x POINT227 in227x POINT228 in228x POINT229 in229x
|
||||
CHARDATA: POINT230 in230x POINT231 in231x POINT232 in232x POINT233 in233x POINT234 in234x
|
||||
CHARDATA: POINT235 in235x POINT236 in236x POINT237 in237x POINT238 in238x POINT239 in239x
|
||||
CHARDATA: POINT240 in240x POINT241 in241x POINT242 in242x POINT243 in243x POINT244 in244x
|
||||
CHARDATA: POINT245 in245x POINT246 in246x POINT247 in247x POINT248 in248x POINT249 in249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT250 in250x POINT251 in251x POINT252 in252x POINT253 in253x POINT254 in254x
|
||||
CHARDATA: POINT255 in255x POINT256 in256x POINT257 in257x POINT258 in258x POINT259 in259x
|
||||
CHARDATA: POINT260 in260x POINT261 in261x POINT262 in262x POINT263 in263x POINT264 in264x
|
||||
CHARDATA: POINT265 in265x POINT266 in266x POINT267 in267x POINT268 in268x POINT269 in269x
|
||||
CHARDATA: POINT270 in270x POINT271 in271x POINT272 in272x POINT273 in273x POINT274 in274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT275 in275x POINT276 in276x POINT277 in277x POINT278 in278x POINT279 in279x
|
||||
CHARDATA: POINT280 in280x POINT281 in281x POINT282 in282x POINT283 in283x POINT284 in284x
|
||||
CHARDATA: POINT285 in285x POINT286 in286x POINT287 in287x POINT288 in288x POINT289 in289x
|
||||
CHARDATA: POINT290 in290x POINT291 in291x POINT292 in292x POINT293 in293x POINT294 in294x
|
||||
CHARDATA: POINT295 in295x POINT296 in296x POINT297 in297x POINT298 in298x POINT299 in299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: GTNETSKT1 Name
|
||||
END
|
||||
999 /End of Valve-group section
|
||||
C ===================================================================================
|
||||
C
|
||||
C =====================================================================================
|
||||
C
|
||||
C Model data
|
||||
C
|
||||
C =====================================================================================
|
||||
CRtdspcpp Variable VarType="StringVar" Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
|
@ -1,40 +0,0 @@
|
|||
CASE: Test Circuit
|
||||
Delt: 50.000000 us
|
||||
Rack: 7 NoRealTime: 0
|
||||
|
||||
Output Desc="SendData" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200410
|
||||
Output Desc="txCnt" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200414
|
||||
Output Desc="POINT5" Group="Subsystem #1|CTLs|Vars" Units=" " Type=IEEE Min=0.0000 Max=1.0000 Rack=7 Adr=200418
|
||||
Output Desc="POINT0" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=20041C
|
||||
Output Desc="rxCnt" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200420
|
||||
Output Desc="readyToSen" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200424
|
||||
Output Desc="POINTIn0" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200428
|
||||
Output Desc="POINTin1" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=20042C
|
||||
Output Desc="POINTin2" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200430
|
||||
Output Desc="POINTin3" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200434
|
||||
Output Desc="POINTin4" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=IEEE Min=0.0000 Max=1.0000 Rack=7 Adr=200438
|
||||
Pushbutton Desc="Send" Group="Subsystem #1|CTLs|Inputs" Type=INT P0=0 P1=1 Rack=7 Adr=784010
|
||||
String Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
||||
String Desc="Draft file" Group="Annotation" InitValue="Draft file: U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback\gtnet_skt_2point_udp.dft"
|
||||
String Desc="Draft file modification date" Group="Time tags" InitValue="2016/12/22 19:14:48"
|
||||
String Desc="Compile date" Group="Time tags" InitValue="2016/12/22 19:14:52"
|
||||
|
||||
|
||||
COMPONENT_TIMING_INFORMATION:
|
||||
timing_record: subsystem=1 processor=0 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=1 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=2 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=3 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=4 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=5 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=6 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=7 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=8 processor_type=PB5
|
||||
timing_record: subsystem=1 processor=9 processor_type=PB5
|
||||
timing_record: subsystem=1 processor_type=3PC processor_count=0
|
||||
timing_record: timing_name=Send component_type=RISC_PB subsystem=1 processor=2 processor_type=GPC clock_index=3 enabled=false use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=edgedet_cb component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=4 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=UPDOWNC component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=5 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=TIMERC component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=6 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=UPDOWNC component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=7 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=gtnetskt component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=8 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
|
@ -1,56 +0,0 @@
|
|||
MESSAGES:
|
||||
|
||||
Compiling U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback\gtnet_skt_2point_udp.dft for RTDS rack 7...
|
||||
Nodes and Wires...
|
||||
|
||||
Compiling subsystem ''
|
||||
Electrical nodes found: 0
|
||||
|
||||
|
||||
Running In Pre-Processor Mode (RTDSPCPP Inclusion)
|
||||
|
||||
|
||||
|
||||
|
||||
REAL-TIME DIGITAL SIMULATOR POWER SYSTEM COMPILER
|
||||
(c) Copyright 1994-2008 RTDS Technologies Inc.
|
||||
|
||||
Version C10.04
|
||||
Compilation Time: 11:09:29 May 26 2015
|
||||
|
||||
|
||||
Data file name: gtnet_skt_2point_udp.dtp
|
||||
Inf file name: tmp.gtnet_skt_2point_udp.inf
|
||||
Map file name: gtnet_skt_2point_udp.map
|
||||
Output file name: gtnet_skt_2point_udp_r#
|
||||
|
||||
Configuration file directory: .
|
||||
Configuration file name: C:\RSCAD\HDWR\config_file_02.txt
|
||||
|
||||
Title from data file: "Test Circuit"
|
||||
|
||||
|
||||
Library file directory: C:\RSCAD/RTDS
|
||||
Library file name: rt_sim.lib
|
||||
Library file version: 62.57
|
||||
|
||||
Library file directory: C:\RSCAD/RTDS
|
||||
Library file name: rpc.lib
|
||||
Library file version: 24.53
|
||||
|
||||
Time-step used = 50.000000 us
|
||||
|
||||
|
||||
Network Conductance Matrix Overlay Statistics:
|
||||
Subsystem 1 contains 0 matrix overlays.
|
||||
|
||||
|
||||
Control Component Statistics:
|
||||
Subsystem 1 contains 32 control components.
|
||||
|
||||
|
||||
End of process. Peak memory usage = 327438336 bytes
|
||||
|
||||
|
||||
rtc terminated successfully.
|
||||
|
|
@ -1,54 +0,0 @@
|
|||
CASE: Test Circuit
|
||||
Delt: 50.000000 us
|
||||
Backplane operation set to IEEE mode
|
||||
|
||||
+----------------------------------------------------------+
|
||||
| |
|
||||
| S U B S Y S T E M #01 |
|
||||
| |
|
||||
| mapped to |
|
||||
| |
|
||||
| R T D S R A C K #07 |
|
||||
| |
|
||||
+----------------------------------------------------------+
|
||||
|
||||
|
||||
C O M P O N E N T P R O C E S S O R S
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
RISC CONTROLS COMPONENTS(proc 1) --> RPC-GPC Card #2 Processor A
|
||||
RISC edgedet_cb function
|
||||
RISC UPDOWNC function
|
||||
RISC TIMERC function
|
||||
RISC UPDOWNC function
|
||||
RISC gtnetskt function
|
||||
|
||||
Hidden T2 Transfer List
|
||||
--------------------------------
|
||||
BP_Address Signal_Type Signal_name
|
||||
0x104 named_signal_prc SendData
|
||||
0x105 named_signal_prc txCnt
|
||||
0x106 named_signal_prc POINT5
|
||||
0x107 named_signal_prc POINT0
|
||||
0x108 named_signal_prc rxCnt
|
||||
0x109 named_signal_prc readyToSen
|
||||
0x10A named_signal_prc POINTIn0
|
||||
0x10B named_signal_prc POINTin1
|
||||
0x10C named_signal_prc POINTin2
|
||||
0x10D named_signal_prc POINTin3
|
||||
0x10E named_signal_prc POINTin4
|
||||
|
||||
|
||||
T I M E - S T E P I N F O R M A T I O N
|
||||
S U B S Y S T E M 1
|
||||
==========================================================
|
||||
|
||||
|
||||
Backplane Communication Speed = 60.000000 ns
|
||||
T2 communication time 1.1400 us
|
||||
|
||||
|
||||
Minimum time-step 3.1400 us
|
||||
|
||||
Common Current Injections: 0(local) + 0(xrack)
|
|
@ -1,6 +0,0 @@
|
|||
STARTING RACK NUMBER 7
|
||||
# Proc ComponentType:Name Load
|
||||
#----------------------------------------------------------------------------------------
|
||||
SUBSYSTEM 1
|
||||
#----------------------
|
||||
2 ControlsProcessor1 100
|
File diff suppressed because it is too large
Load diff
|
@ -1,31 +0,0 @@
|
|||
|
||||
Subsystem Number 1
|
||||
********************
|
||||
********************
|
||||
|
||||
Flag T3
|
||||
*******
|
||||
|
||||
Flag T0
|
||||
*******
|
||||
|
||||
Flag T1
|
||||
*******
|
||||
|
||||
Flag T2
|
||||
*******
|
||||
0 100 local_used SS1 named_signal_wif 0 "POINT4" from wif 0 xrack_src_idx = -1
|
||||
1 101 local_used SS1 named_signal_wif 1 "POINT3" from wif 0 xrack_src_idx = -1
|
||||
2 102 local_used SS1 named_signal_wif 2 "POINT1" from wif 0 xrack_src_idx = -1
|
||||
3 103 local_used SS1 named_signal_wif 3 "POINT2" from wif 0 xrack_src_idx = -1
|
||||
4 104 local_unused SS1 named_signal_prc 0 "SendData" from ppc_main 2 xrack_src_idx = -1
|
||||
5 105 local_unused SS1 named_signal_prc 1 "txCnt" from ppc_main 2 xrack_src_idx = -1
|
||||
6 106 local_unused SS1 named_signal_prc 2 "POINT5" from ppc_main 2 xrack_src_idx = -1
|
||||
7 107 local_unused SS1 named_signal_prc 3 "POINT0" from ppc_main 2 xrack_src_idx = -1
|
||||
8 108 local_unused SS1 named_signal_prc 4 "rxCnt" from ppc_main 2 xrack_src_idx = -1
|
||||
9 109 local_unused SS1 named_signal_prc 5 "readyToSen" from ppc_main 2 xrack_src_idx = -1
|
||||
10 10A local_unused SS1 named_signal_prc 6 "POINTIn0" from ppc_main 2 xrack_src_idx = -1
|
||||
11 10B local_unused SS1 named_signal_prc 7 "POINTin1" from ppc_main 2 xrack_src_idx = -1
|
||||
12 10C local_unused SS1 named_signal_prc 8 "POINTin2" from ppc_main 2 xrack_src_idx = -1
|
||||
13 10D local_unused SS1 named_signal_prc 9 "POINTin3" from ppc_main 2 xrack_src_idx = -1
|
||||
14 10E local_unused SS1 named_signal_prc 10 "POINTin4" from ppc_main 2 xrack_src_idx = -1
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,28 +0,0 @@
|
|||
This example demonstrates UDP socket communication. Data is sent from the RTDS to a standalone java program, and the java program can send information back to the RTDS.
|
||||
This is done using the SKT protocol on the GTNETx2 card.
|
||||
Note: You need to install the JDK to be able to compile java files http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html MAKE sure the path to the bin folder of the JDK
|
||||
is added to the windows path variable (google to figure this out)
|
||||
|
||||
Note: If you want some extra information printed in the DOS window set the boolean DEBUG=true
|
||||
|
||||
1. Open a windows command shell and go to the Tutorial|SAMPLES|GTSKT|ExampleGUI folder.
|
||||
2. Compile the .java code. Use the command below in the windows command shell
|
||||
javac GNET_SKT_UDP_GUI.java
|
||||
3. Run the code using the command below
|
||||
java GNET_SKT_UDP_GUI
|
||||
4. Upon running the program, two panels will appear. The GTNET-SKT UDP Server and the GTNET-SKT UDP Client.
|
||||
A file chooser box can be used to request the file name that defines the name and type of the received data or type of data to send.
|
||||
Browse to the file named received.txt in the Tutorial|SAMPLES|GTSKT folder. The table will be filled with data from the file or the user can add/delete items from the table
|
||||
5. Press the Start button in the GUI
|
||||
A message will be displayed in the Messages Text area
|
||||
Server socket created. Waiting for incoming data ...
|
||||
6. A file chooser box can be used to request the file name that defines the name and type of type of data to send. To manually add points press
|
||||
the Add button in the GTNET-SKT UDP Client panel and add 2 points, change the type of point 0 to "int"
|
||||
7. Press the Send button in the GUI and the UDP packet will be sent to the GTNET-SKT UDP Server panel.
|
||||
|
||||
TO use the GTNET-SKT the user must change the Remote Server Settings IP Address and Port in the GTNET-SKT UDP Client panel so the program will send the UDP packet to the GTNET
|
||||
8. Open the Draft case, edit the GTNET-SKT component, go to the Remote IP Configuration tab and change the Remote IP address to the IP address of your PC.
|
||||
9. Compile the Draft case, ensure to change the allocation of the component to the proper RTDS processor and GTIO port based on your hardware configuration.
|
||||
10. Run the simulation.
|
||||
11. Press the Send button in the simulation, the value on the Point slider is sent to the java program and will appear in the GTNET-SKT UDP server panel.
|
||||
12. Press the Send button in the GUI and the UDP packet will be sent to the simulation and is displayed in the meters POINTIn0 and POINTin1.
|
|
@ -1,107 +0,0 @@
|
|||
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Insets;
|
||||
|
||||
import javax.swing.border.Border;
|
||||
|
||||
class SoftEdgeBorder implements Border
|
||||
|
||||
{
|
||||
|
||||
protected int m_w=3;
|
||||
|
||||
protected int m_h=3;
|
||||
|
||||
protected Color m_topColor = Color.gray;//white;
|
||||
|
||||
protected Color m_bottomColor = Color.gray;
|
||||
|
||||
public SoftEdgeBorder()
|
||||
{
|
||||
|
||||
m_w=3;
|
||||
|
||||
m_h=3;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h) {
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h, Color col)
|
||||
{
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
m_topColor = col;
|
||||
|
||||
m_bottomColor = col;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h, Color topColor,
|
||||
|
||||
Color bottomColor)
|
||||
{
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
m_topColor = topColor;
|
||||
|
||||
m_bottomColor = bottomColor;
|
||||
|
||||
}
|
||||
|
||||
public Insets getBorderInsets(Component c)
|
||||
{
|
||||
|
||||
return new Insets(m_h, m_w, m_h, m_w);
|
||||
|
||||
}
|
||||
|
||||
public boolean isBorderOpaque() { return true; }
|
||||
|
||||
public void paintBorder(Component c, Graphics g,
|
||||
|
||||
int x, int y, int w, int h)
|
||||
{
|
||||
|
||||
w--;
|
||||
|
||||
h--;
|
||||
|
||||
g.setColor(m_topColor);
|
||||
|
||||
g.drawLine(x, y+h-m_h, x, y+m_h);
|
||||
|
||||
g.drawArc(x, y, 2*m_w, 2*m_h, 180, -90);
|
||||
|
||||
g.drawLine(x+m_w, y, x+w-m_w, y);
|
||||
|
||||
g.drawArc(x+w-2*m_w, y, 2*m_w, 2*m_h, 90, -90);
|
||||
|
||||
g.setColor(m_bottomColor);
|
||||
|
||||
g.drawLine(x+w, y+m_h, x+w, y+h-m_h);
|
||||
|
||||
g.drawArc(x+w-2*m_w, y+h-2*m_h, 2*m_w, 2*m_h, 0, -90);
|
||||
|
||||
g.drawLine(x+m_w, y+h, x+w-m_w, y+h);
|
||||
|
||||
g.drawArc(x, y+h-2*m_h, 2*m_w, 2*m_h, -90, -90);
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -1,102 +0,0 @@
|
|||
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.GradientPaint;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.RenderingHints;
|
||||
import java.awt.Shape;
|
||||
import java.awt.geom.RoundRectangle2D;
|
||||
|
||||
import javax.swing.Action;
|
||||
import javax.swing.DefaultButtonModel;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JButton;
|
||||
|
||||
class SoftEdgeButton extends JButton
|
||||
{
|
||||
private static final float arcwidth = 6.0f;
|
||||
private static final float archeight = 6.0f;
|
||||
protected static final int focusstroke = 2;
|
||||
protected final Color currFocusBorderCol = new Color(100,113,200, 200);//(110,123,139, 200);//(100,150,255,200); //rgba
|
||||
protected final Color pressedCol = new Color(197, 220, 250);//(230,230,230);
|
||||
protected final Color hoverBorderCol = new Color(140,211,251);//(135,206,250);//Color.ORANGE;
|
||||
protected final Color buttonCol = new Color(202, 225, 255);//(250, 250, 250);
|
||||
protected final Color buttonBorderCol = Color.gray;
|
||||
protected Shape shape;
|
||||
protected Shape border;
|
||||
protected Shape base;
|
||||
|
||||
public SoftEdgeButton() {
|
||||
this(null, null);
|
||||
}
|
||||
public SoftEdgeButton(Icon icon) {
|
||||
this(null, icon);
|
||||
}
|
||||
public SoftEdgeButton(String text) {
|
||||
this(text, null);
|
||||
}
|
||||
public SoftEdgeButton(Action a) {
|
||||
this();
|
||||
setAction(a);
|
||||
}
|
||||
public SoftEdgeButton(String text, Icon icon) {
|
||||
setModel(new DefaultButtonModel());
|
||||
init(text, icon);
|
||||
setContentAreaFilled(false);
|
||||
setBackground(buttonCol);
|
||||
initShape();
|
||||
}
|
||||
|
||||
protected void initShape() {
|
||||
if(!getBounds().equals(base)) {
|
||||
base = getBounds();
|
||||
shape = new RoundRectangle2D.Float(0, 0, getWidth()-1, getHeight()-1, arcwidth, archeight);
|
||||
border = new RoundRectangle2D.Float(focusstroke, focusstroke,
|
||||
getWidth()-1-focusstroke*2,
|
||||
getHeight()-1-focusstroke*2,
|
||||
arcwidth, archeight);
|
||||
}
|
||||
}
|
||||
private void paintFocusAndRollover(Graphics2D g2, Color color) {
|
||||
g2.setPaint(new GradientPaint(0, 0, color, getWidth()-1, getHeight()-1, color.brighter(), true));
|
||||
g2.fill(shape);
|
||||
g2.setPaint(new GradientPaint(0, 0, Color.WHITE, 0, (int)(getHeight()-1)/*-1*/, getBackground(), false));
|
||||
//g2.setColor(getBackground());
|
||||
g2.fill(border);
|
||||
}
|
||||
|
||||
@Override protected void paintComponent(Graphics g) {
|
||||
initShape();
|
||||
Graphics2D g2 = (Graphics2D)g;
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
||||
if(getModel().isArmed()) {
|
||||
g2.setColor(pressedCol);
|
||||
g2.fill(shape);
|
||||
}else if(isRolloverEnabled() && getModel().isRollover()) {
|
||||
paintFocusAndRollover(g2, hoverBorderCol);
|
||||
}else if(hasFocus()) {
|
||||
paintFocusAndRollover(g2, currFocusBorderCol);
|
||||
}else{
|
||||
|
||||
g2.setPaint(new GradientPaint(0, 0, Color.WHITE, 0, (int)(getHeight()-1)/*-1*/, getBackground(), false));
|
||||
//g2.setColor(getBackground());
|
||||
g2.fill(shape);
|
||||
}
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF);
|
||||
g2.setColor(getBackground());
|
||||
super.paintComponent(g2);
|
||||
}
|
||||
@Override protected void paintBorder(Graphics g) {
|
||||
initShape();
|
||||
Graphics2D g2 = (Graphics2D)g;
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
||||
g2.setColor(buttonBorderCol);
|
||||
g2.draw(shape);
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF);
|
||||
}
|
||||
@Override public boolean contains(int x, int y) {
|
||||
initShape();
|
||||
return shape.contains(x, y);
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,106 +0,0 @@
|
|||
RSCAD 4.003.1aa
|
||||
INFORMATION FILE: gtnet_skt_2point_tcp.inf
|
||||
FILE TO DOWNLOAD: gtnet_skt_2point_tcp
|
||||
FINISH TIME: 0.2 SECONDS
|
||||
PRE-TRIGGER: 20%
|
||||
PLOT DENSITY: EVERY POINT
|
||||
METER UPDATE FREQUENCY: 1000
|
||||
COMTRADE PLOT SAVE FREQUENCY: 50.0
|
||||
COMPONENT: SLIDER
|
||||
BOX AT (20,12), DIMENSIONS 170 x 150
|
||||
NAME: Point
|
||||
ICON: NONE
|
||||
ICON AT: (176,99)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Inputs
|
||||
DESC: Point0
|
||||
UNITS:
|
||||
MIN: -2.147E7
|
||||
MAX: 2.147E7
|
||||
VALUE: 1718000.0
|
||||
COMPONENT: BUTTON
|
||||
BOX AT (120,180), DIMENSIONS 50 x 70
|
||||
NAME:
|
||||
ICON: NONE
|
||||
ICON AT: (291,133)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Inputs
|
||||
DESC: Send
|
||||
COMPONENT: METER
|
||||
BOX AT (324,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: rxCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (440,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: txCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (556,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTIn0
|
||||
UNITS: units
|
||||
MIN: -100.0
|
||||
MAX: 100.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 4
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (192,16), DIMENSIONS 132 x 144
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (323,247)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: POINT0
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 6
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (664,12), DIMENSIONS 116 x 148
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTin1
|
||||
UNITS: units
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 9
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
|
@ -1 +0,0 @@
|
|||
"C:\RSCAD\BIN\rtdspc.exe" -PP -PSCAD_MASTER "C:\RSCAD" -PSCAD_USER "U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace" -PSCAD_PATH "C:\RSCAD\BIN" -CONFIG_FILE "C:\RSCAD\HDWR\config_file_02.txt" -case "U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync\gtnet_skt_2point_udp" -rack 7 -verbose -Options "C:\RSCAD\BIN\..\.\BIN\bat.options"
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,451 +0,0 @@
|
|||
Test Circuit
|
||||
C
|
||||
C Compiled by: DRAFT 4.006
|
||||
C Source File:U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync\gtnet_skt_2point_udp.dft
|
||||
C
|
||||
C==============================================================================================
|
||||
5.0E-5 0.2 5.0E-4 /Delta-T Finish-Time Print-Step
|
||||
1 /Number of subsystems
|
||||
C =====================================================================================
|
||||
C SUBSYSTEM #1:SS 1
|
||||
PRE_PROCESSOR:
|
||||
String Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
||||
END_PRE_PROCESSOR:
|
||||
C ------------------------------------------------------
|
||||
1 /# of nodes in subsystem
|
||||
0.0 /initial node voltages
|
||||
C
|
||||
C Node Voltage and Current Bases
|
||||
C
|
||||
C* Node: 1 Vbase: 1 kV Ibase: 0 kA NodeName: "CONTROLS"
|
||||
C
|
||||
C Network RLC branch data section
|
||||
C
|
||||
C
|
||||
999 /End of RLC Branch data
|
||||
C Source data section
|
||||
C
|
||||
999 /End of Source data
|
||||
C
|
||||
C Transformer data section
|
||||
C
|
||||
999 /End of Transformer data
|
||||
C
|
||||
C Transducer data section
|
||||
999 /End of CT,CVT & PT model data
|
||||
999 / End of Sequencer data
|
||||
C =====================================================================================
|
||||
C Transmission line section
|
||||
C
|
||||
C
|
||||
C
|
||||
999 /End of T-Line section
|
||||
C =====================================================================================
|
||||
C
|
||||
C ===================================================================================
|
||||
C
|
||||
C Valve group data
|
||||
C
|
||||
C CONTROLS COMPILER: RISC CONTROLS PROCESSOR MANUAL ASSIGNMENT
|
||||
RTDS.CTL.RISC_PROCASS
|
||||
COMP: RISC_PROCASS 1 0 0
|
||||
IDATA: 2 0 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: IT_1 INT
|
||||
IDATA: 0
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.CONSTANT
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT4 IEEE
|
||||
FDATA: 60.0
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT3 INT
|
||||
IDATA: 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: IT_5 INT
|
||||
IDATA: 0
|
||||
END
|
||||
C CONTROLS COMPILER: SHARC PUSH BUTTON COMPONENT
|
||||
RTDS.CTL.SH_PB
|
||||
COMP: Send 1 0 0
|
||||
OVARS: IT_6 INT
|
||||
IDATA: 0
|
||||
FDATA: 0 1
|
||||
END
|
||||
RTDS.RISC.
|
||||
COMP: risc_gtsync Rsync 0 0 1
|
||||
IDATA: 1 1 7
|
||||
CDATA: ADVSECD ADVSTAT CRTSECD CRTNSEC CRTSTAT
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: edgedet_cb 1 1 2 0 2 0
|
||||
DATA_SIZES: INTDATA=2 FLOATDATA=0 CHARDATA=0 INVARS=1 OUTVARS=1
|
||||
INTDATA: 0 ED 1 OV
|
||||
INVARS: IT_6 INT Inp
|
||||
OUTVARS: SendData INT Out
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: UPDOWNC 1 1 3 0 2 0
|
||||
DATA_SIZES: INTDATA=9 FLOATDATA=0 CHARDATA=0 INVARS=5 OUTVARS=1
|
||||
INTDATA: 0 Tran 0 RST 0 LIM 10 UL -10 LL
|
||||
INTDATA: 0 INIT 0 A 0 B 0 C
|
||||
INVARS: SendData INT UP IT_1 INT DOWN _dud_ INT RSTSIG _dud_ INT LLINP _dud_ INT ULINP
|
||||
OUTVARS: txCnt INT COUNT
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: TIMERC 1 1 4 0 2 0
|
||||
DATA_SIZES: INTDATA=4 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Tran 0 SRST 0 RST 0 A
|
||||
INVARS: IT_6 INT START SendData INT STOP _dud_ INT RSTSIG
|
||||
OUTVARS: POINT5 IEEE TIME
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: UPDOWNC 1 1 5 0 2 0
|
||||
DATA_SIZES: INTDATA=9 FLOATDATA=0 CHARDATA=0 INVARS=5 OUTVARS=1
|
||||
INTDATA: 0 Tran 0 RST 0 LIM 10 UL -10 LL
|
||||
INTDATA: 0 INIT 0 A 0 B 0 C
|
||||
INVARS: SendData INT UP IT_5 INT DOWN _dud_ INT RSTSIG _dud_ INT LLINP _dud_ INT ULINP
|
||||
OUTVARS: POINT0 INT COUNT
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
DATA_SIZES: INTDATA=616 FLOATDATA=0 CHARDATA=601 INVARS=1 OUTVARS=5
|
||||
INTDATA: 1 Card 2 Port 5 numVarsToGTNETSKT 5 numVarsFromGTNETSKT 0 TypeToGTNETSKT0
|
||||
INTDATA: 0 TypeToGTNETSKT1 0 TypeToGTNETSKT2 0 TypeToGTNETSKT3 1 TypeToGTNETSKT4 0 TypeToGTNETSKT5
|
||||
INTDATA: 0 TypeToGTNETSKT6 0 TypeToGTNETSKT7 0 TypeToGTNETSKT8 0 TypeToGTNETSKT9 0 TypeToGTNETSKT10
|
||||
INTDATA: 0 TypeToGTNETSKT11 0 TypeToGTNETSKT12 0 TypeToGTNETSKT13 0 TypeToGTNETSKT14 0 TypeToGTNETSKT15
|
||||
INTDATA: 0 TypeToGTNETSKT16 0 TypeToGTNETSKT17 0 TypeToGTNETSKT18 0 TypeToGTNETSKT19 0 TypeToGTNETSKT20
|
||||
INTDATA: 0 TypeToGTNETSKT21 0 TypeToGTNETSKT22 0 TypeToGTNETSKT23 0 TypeToGTNETSKT24 0 TypeToGTNETSKT25
|
||||
INTDATA: 0 TypeToGTNETSKT26 0 TypeToGTNETSKT27 0 TypeToGTNETSKT28 0 TypeToGTNETSKT29 0 TypeToGTNETSKT30
|
||||
INTDATA: 0 TypeToGTNETSKT31 0 TypeToGTNETSKT32 0 TypeToGTNETSKT33 0 TypeToGTNETSKT34 0 TypeToGTNETSKT35
|
||||
INTDATA: 0 TypeToGTNETSKT36 0 TypeToGTNETSKT37 0 TypeToGTNETSKT38 0 TypeToGTNETSKT39 0 TypeToGTNETSKT40
|
||||
INTDATA: 0 TypeToGTNETSKT41 0 TypeToGTNETSKT42 0 TypeToGTNETSKT43 0 TypeToGTNETSKT44 0 TypeToGTNETSKT45
|
||||
INTDATA: 0 TypeToGTNETSKT46 0 TypeToGTNETSKT47 0 TypeToGTNETSKT48 0 TypeToGTNETSKT49 0 TypeToGTNETSKT50
|
||||
INTDATA: 0 TypeToGTNETSKT51 0 TypeToGTNETSKT52 0 TypeToGTNETSKT53 0 TypeToGTNETSKT54 0 TypeToGTNETSKT55
|
||||
CHARDATA: POINT0 out0x CRTSECD out1x CRTNSEC out2x POINT3 out3x POINT4 out4x
|
||||
CHARDATA: POINT5 out5x POINT6 out6x POINT7 out7x POINT8 out8x POINT9 out9x
|
||||
CHARDATA: POINT10 out10x POINT11 out11x POINT12 out12x POINT13 out13x POINT14 out14x
|
||||
CHARDATA: POINT15 out15x POINT16 out16x POINT17 out17x POINT18 out18x POINT19 out19x
|
||||
CHARDATA: POINT20 out20x POINT21 out21x POINT22 out22x POINT23 out23x POINT24 out24x
|
||||
INVARS: SendData INT SendDataFlag
|
||||
OUTVARS: IT_4 INT socketOverflow IT_3 INT gtnetInvMsg rxCnt INT gtnetSktNewDataSeq IT_2 INT gtnetSktNewDataFlag readyToSen INT gtnetSktReadyToSend
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT56 0 TypeToGTNETSKT57 0 TypeToGTNETSKT58 0 TypeToGTNETSKT59 0 TypeToGTNETSKT60
|
||||
INTDATA: 0 TypeToGTNETSKT61 0 TypeToGTNETSKT62 0 TypeToGTNETSKT63 0 TypeToGTNETSKT64 0 TypeToGTNETSKT65
|
||||
INTDATA: 0 TypeToGTNETSKT66 0 TypeToGTNETSKT67 0 TypeToGTNETSKT68 0 TypeToGTNETSKT69 0 TypeToGTNETSKT70
|
||||
INTDATA: 0 TypeToGTNETSKT71 0 TypeToGTNETSKT72 0 TypeToGTNETSKT73 0 TypeToGTNETSKT74 0 TypeToGTNETSKT75
|
||||
INTDATA: 0 TypeToGTNETSKT76 0 TypeToGTNETSKT77 0 TypeToGTNETSKT78 0 TypeToGTNETSKT79 0 TypeToGTNETSKT80
|
||||
INTDATA: 0 TypeToGTNETSKT81 0 TypeToGTNETSKT82 0 TypeToGTNETSKT83 0 TypeToGTNETSKT84 0 TypeToGTNETSKT85
|
||||
INTDATA: 0 TypeToGTNETSKT86 0 TypeToGTNETSKT87 0 TypeToGTNETSKT88 0 TypeToGTNETSKT89 0 TypeToGTNETSKT90
|
||||
INTDATA: 0 TypeToGTNETSKT91 0 TypeToGTNETSKT92 0 TypeToGTNETSKT93 0 TypeToGTNETSKT94 0 TypeToGTNETSKT95
|
||||
INTDATA: 0 TypeToGTNETSKT96 0 TypeToGTNETSKT97 0 TypeToGTNETSKT98 0 TypeToGTNETSKT99 0 TypeToGTNETSKT100
|
||||
INTDATA: 0 TypeToGTNETSKT101 0 TypeToGTNETSKT102 0 TypeToGTNETSKT103 0 TypeToGTNETSKT104 0 TypeToGTNETSKT105
|
||||
INTDATA: 0 TypeToGTNETSKT106 0 TypeToGTNETSKT107 0 TypeToGTNETSKT108 0 TypeToGTNETSKT109 0 TypeToGTNETSKT110
|
||||
INTDATA: 0 TypeToGTNETSKT111 0 TypeToGTNETSKT112 0 TypeToGTNETSKT113 0 TypeToGTNETSKT114 0 TypeToGTNETSKT115
|
||||
CHARDATA: POINT25 out25x POINT26 out26x POINT27 out27x POINT28 out28x POINT29 out29x
|
||||
CHARDATA: POINT30 out30x POINT31 out31x POINT32 out32x POINT33 out33x POINT34 out34x
|
||||
CHARDATA: POINT35 out35x POINT36 out36x POINT37 out37x POINT38 out38x POINT39 out39x
|
||||
CHARDATA: POINT40 out40x POINT41 out41x POINT42 out42x POINT43 out43x POINT44 out44x
|
||||
CHARDATA: POINT45 out45x POINT46 out46x POINT47 out47x POINT48 out48x POINT49 out49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT116 0 TypeToGTNETSKT117 0 TypeToGTNETSKT118 0 TypeToGTNETSKT119 0 TypeToGTNETSKT120
|
||||
INTDATA: 0 TypeToGTNETSKT121 0 TypeToGTNETSKT122 0 TypeToGTNETSKT123 0 TypeToGTNETSKT124 0 TypeToGTNETSKT125
|
||||
INTDATA: 0 TypeToGTNETSKT126 0 TypeToGTNETSKT127 0 TypeToGTNETSKT128 0 TypeToGTNETSKT129 0 TypeToGTNETSKT130
|
||||
INTDATA: 0 TypeToGTNETSKT131 0 TypeToGTNETSKT132 0 TypeToGTNETSKT133 0 TypeToGTNETSKT134 0 TypeToGTNETSKT135
|
||||
INTDATA: 0 TypeToGTNETSKT136 0 TypeToGTNETSKT137 0 TypeToGTNETSKT138 0 TypeToGTNETSKT139 0 TypeToGTNETSKT140
|
||||
INTDATA: 0 TypeToGTNETSKT141 0 TypeToGTNETSKT142 0 TypeToGTNETSKT143 0 TypeToGTNETSKT144 0 TypeToGTNETSKT145
|
||||
INTDATA: 0 TypeToGTNETSKT146 0 TypeToGTNETSKT147 0 TypeToGTNETSKT148 0 TypeToGTNETSKT149 0 TypeToGTNETSKT150
|
||||
INTDATA: 0 TypeToGTNETSKT151 0 TypeToGTNETSKT152 0 TypeToGTNETSKT153 0 TypeToGTNETSKT154 0 TypeToGTNETSKT155
|
||||
INTDATA: 0 TypeToGTNETSKT156 0 TypeToGTNETSKT157 0 TypeToGTNETSKT158 0 TypeToGTNETSKT159 0 TypeToGTNETSKT160
|
||||
INTDATA: 0 TypeToGTNETSKT161 0 TypeToGTNETSKT162 0 TypeToGTNETSKT163 0 TypeToGTNETSKT164 0 TypeToGTNETSKT165
|
||||
INTDATA: 0 TypeToGTNETSKT166 0 TypeToGTNETSKT167 0 TypeToGTNETSKT168 0 TypeToGTNETSKT169 0 TypeToGTNETSKT170
|
||||
INTDATA: 0 TypeToGTNETSKT171 0 TypeToGTNETSKT172 0 TypeToGTNETSKT173 0 TypeToGTNETSKT174 0 TypeToGTNETSKT175
|
||||
CHARDATA: POINT50 out50x POINT51 out51x POINT52 out52x POINT53 out53x POINT54 out54x
|
||||
CHARDATA: POINT55 out55x POINT56 out56x POINT57 out57x POINT58 out58x POINT59 out59x
|
||||
CHARDATA: POINT60 out60x POINT61 out61x POINT62 out62x POINT63 out63x POINT64 out64x
|
||||
CHARDATA: POINT65 out65x POINT66 out66x POINT67 out67x POINT68 out68x POINT69 out69x
|
||||
CHARDATA: POINT70 out70x POINT71 out71x POINT72 out72x POINT73 out73x POINT74 out74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT176 0 TypeToGTNETSKT177 0 TypeToGTNETSKT178 0 TypeToGTNETSKT179 0 TypeToGTNETSKT180
|
||||
INTDATA: 0 TypeToGTNETSKT181 0 TypeToGTNETSKT182 0 TypeToGTNETSKT183 0 TypeToGTNETSKT184 0 TypeToGTNETSKT185
|
||||
INTDATA: 0 TypeToGTNETSKT186 0 TypeToGTNETSKT187 0 TypeToGTNETSKT188 0 TypeToGTNETSKT189 0 TypeToGTNETSKT190
|
||||
INTDATA: 0 TypeToGTNETSKT191 0 TypeToGTNETSKT192 0 TypeToGTNETSKT193 0 TypeToGTNETSKT194 0 TypeToGTNETSKT195
|
||||
INTDATA: 0 TypeToGTNETSKT196 0 TypeToGTNETSKT197 0 TypeToGTNETSKT198 0 TypeToGTNETSKT199 0 TypeToGTNETSKT200
|
||||
INTDATA: 0 TypeToGTNETSKT201 0 TypeToGTNETSKT202 0 TypeToGTNETSKT203 0 TypeToGTNETSKT204 0 TypeToGTNETSKT205
|
||||
INTDATA: 0 TypeToGTNETSKT206 0 TypeToGTNETSKT207 0 TypeToGTNETSKT208 0 TypeToGTNETSKT209 0 TypeToGTNETSKT210
|
||||
INTDATA: 0 TypeToGTNETSKT211 0 TypeToGTNETSKT212 0 TypeToGTNETSKT213 0 TypeToGTNETSKT214 0 TypeToGTNETSKT215
|
||||
INTDATA: 0 TypeToGTNETSKT216 0 TypeToGTNETSKT217 0 TypeToGTNETSKT218 0 TypeToGTNETSKT219 0 TypeToGTNETSKT220
|
||||
INTDATA: 0 TypeToGTNETSKT221 0 TypeToGTNETSKT222 0 TypeToGTNETSKT223 0 TypeToGTNETSKT224 0 TypeToGTNETSKT225
|
||||
INTDATA: 0 TypeToGTNETSKT226 0 TypeToGTNETSKT227 0 TypeToGTNETSKT228 0 TypeToGTNETSKT229 0 TypeToGTNETSKT230
|
||||
INTDATA: 0 TypeToGTNETSKT231 0 TypeToGTNETSKT232 0 TypeToGTNETSKT233 0 TypeToGTNETSKT234 0 TypeToGTNETSKT235
|
||||
CHARDATA: POINT75 out75x POINT76 out76x POINT77 out77x POINT78 out78x POINT79 out79x
|
||||
CHARDATA: POINT80 out80x POINT81 out81x POINT82 out82x POINT83 out83x POINT84 out84x
|
||||
CHARDATA: POINT85 out85x POINT86 out86x POINT87 out87x POINT88 out88x POINT89 out89x
|
||||
CHARDATA: POINT90 out90x POINT91 out91x POINT92 out92x POINT93 out93x POINT94 out94x
|
||||
CHARDATA: POINT95 out95x POINT96 out96x POINT97 out97x POINT98 out98x POINT99 out99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT236 0 TypeToGTNETSKT237 0 TypeToGTNETSKT238 0 TypeToGTNETSKT239 0 TypeToGTNETSKT240
|
||||
INTDATA: 0 TypeToGTNETSKT241 0 TypeToGTNETSKT242 0 TypeToGTNETSKT243 0 TypeToGTNETSKT244 0 TypeToGTNETSKT245
|
||||
INTDATA: 0 TypeToGTNETSKT246 0 TypeToGTNETSKT247 0 TypeToGTNETSKT248 0 TypeToGTNETSKT249 0 TypeToGTNETSKT250
|
||||
INTDATA: 0 TypeToGTNETSKT251 0 TypeToGTNETSKT252 0 TypeToGTNETSKT253 0 TypeToGTNETSKT254 0 TypeToGTNETSKT255
|
||||
INTDATA: 0 TypeToGTNETSKT256 0 TypeToGTNETSKT257 0 TypeToGTNETSKT258 0 TypeToGTNETSKT259 0 TypeToGTNETSKT260
|
||||
INTDATA: 0 TypeToGTNETSKT261 0 TypeToGTNETSKT262 0 TypeToGTNETSKT263 0 TypeToGTNETSKT264 0 TypeToGTNETSKT265
|
||||
INTDATA: 0 TypeToGTNETSKT266 0 TypeToGTNETSKT267 0 TypeToGTNETSKT268 0 TypeToGTNETSKT269 0 TypeToGTNETSKT270
|
||||
INTDATA: 0 TypeToGTNETSKT271 0 TypeToGTNETSKT272 0 TypeToGTNETSKT273 0 TypeToGTNETSKT274 0 TypeToGTNETSKT275
|
||||
INTDATA: 0 TypeToGTNETSKT276 0 TypeToGTNETSKT277 0 TypeToGTNETSKT278 0 TypeToGTNETSKT279 0 TypeToGTNETSKT280
|
||||
INTDATA: 0 TypeToGTNETSKT281 0 TypeToGTNETSKT282 0 TypeToGTNETSKT283 0 TypeToGTNETSKT284 0 TypeToGTNETSKT285
|
||||
INTDATA: 0 TypeToGTNETSKT286 0 TypeToGTNETSKT287 0 TypeToGTNETSKT288 0 TypeToGTNETSKT289 0 TypeToGTNETSKT290
|
||||
INTDATA: 0 TypeToGTNETSKT291 0 TypeToGTNETSKT292 0 TypeToGTNETSKT293 0 TypeToGTNETSKT294 0 TypeToGTNETSKT295
|
||||
CHARDATA: POINT100 out100x POINT101 out101x POINT102 out102x POINT103 out103x POINT104 out104x
|
||||
CHARDATA: POINT105 out105x POINT106 out106x POINT107 out107x POINT108 out108x POINT109 out109x
|
||||
CHARDATA: POINT110 out110x POINT111 out111x POINT112 out112x POINT113 out113x POINT114 out114x
|
||||
CHARDATA: POINT115 out115x POINT116 out116x POINT117 out117x POINT118 out118x POINT119 out119x
|
||||
CHARDATA: POINT120 out120x POINT121 out121x POINT122 out122x POINT123 out123x POINT124 out124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT296 0 TypeToGTNETSKT297 0 TypeToGTNETSKT298 0 TypeToGTNETSKT299 0 TypeFrGTNETSKT0
|
||||
INTDATA: 0 TypeFrGTNETSKT1 0 TypeFrGTNETSKT2 0 TypeFrGTNETSKT3 1 TypeFrGTNETSKT4 0 TypeFrGTNETSKT5
|
||||
INTDATA: 0 TypeFrGTNETSKT6 0 TypeFrGTNETSKT7 0 TypeFrGTNETSKT8 0 TypeFrGTNETSKT9 0 TypeFrGTNETSKT10
|
||||
INTDATA: 0 TypeFrGTNETSKT11 0 TypeFrGTNETSKT12 0 TypeFrGTNETSKT13 0 TypeFrGTNETSKT14 0 TypeFrGTNETSKT15
|
||||
INTDATA: 0 TypeFrGTNETSKT16 0 TypeFrGTNETSKT17 0 TypeFrGTNETSKT18 0 TypeFrGTNETSKT19 0 TypeFrGTNETSKT20
|
||||
INTDATA: 0 TypeFrGTNETSKT21 0 TypeFrGTNETSKT22 0 TypeFrGTNETSKT23 0 TypeFrGTNETSKT24 0 TypeFrGTNETSKT25
|
||||
INTDATA: 0 TypeFrGTNETSKT26 0 TypeFrGTNETSKT27 0 TypeFrGTNETSKT28 0 TypeFrGTNETSKT29 0 TypeFrGTNETSKT30
|
||||
INTDATA: 0 TypeFrGTNETSKT31 0 TypeFrGTNETSKT32 0 TypeFrGTNETSKT33 0 TypeFrGTNETSKT34 0 TypeFrGTNETSKT35
|
||||
INTDATA: 0 TypeFrGTNETSKT36 0 TypeFrGTNETSKT37 0 TypeFrGTNETSKT38 0 TypeFrGTNETSKT39 0 TypeFrGTNETSKT40
|
||||
INTDATA: 0 TypeFrGTNETSKT41 0 TypeFrGTNETSKT42 0 TypeFrGTNETSKT43 0 TypeFrGTNETSKT44 0 TypeFrGTNETSKT45
|
||||
INTDATA: 0 TypeFrGTNETSKT46 0 TypeFrGTNETSKT47 0 TypeFrGTNETSKT48 0 TypeFrGTNETSKT49 0 TypeFrGTNETSKT50
|
||||
INTDATA: 0 TypeFrGTNETSKT51 0 TypeFrGTNETSKT52 0 TypeFrGTNETSKT53 0 TypeFrGTNETSKT54 0 TypeFrGTNETSKT55
|
||||
CHARDATA: POINT125 out125x POINT126 out126x POINT127 out127x POINT128 out128x POINT129 out129x
|
||||
CHARDATA: POINT130 out130x POINT131 out131x POINT132 out132x POINT133 out133x POINT134 out134x
|
||||
CHARDATA: POINT135 out135x POINT136 out136x POINT137 out137x POINT138 out138x POINT139 out139x
|
||||
CHARDATA: POINT140 out140x POINT141 out141x POINT142 out142x POINT143 out143x POINT144 out144x
|
||||
CHARDATA: POINT145 out145x POINT146 out146x POINT147 out147x POINT148 out148x POINT149 out149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT56 0 TypeFrGTNETSKT57 0 TypeFrGTNETSKT58 0 TypeFrGTNETSKT59 0 TypeFrGTNETSKT60
|
||||
INTDATA: 0 TypeFrGTNETSKT61 0 TypeFrGTNETSKT62 0 TypeFrGTNETSKT63 0 TypeFrGTNETSKT64 0 TypeFrGTNETSKT65
|
||||
INTDATA: 0 TypeFrGTNETSKT66 0 TypeFrGTNETSKT67 0 TypeFrGTNETSKT68 0 TypeFrGTNETSKT69 0 TypeFrGTNETSKT70
|
||||
INTDATA: 0 TypeFrGTNETSKT71 0 TypeFrGTNETSKT72 0 TypeFrGTNETSKT73 0 TypeFrGTNETSKT74 0 TypeFrGTNETSKT75
|
||||
INTDATA: 0 TypeFrGTNETSKT76 0 TypeFrGTNETSKT77 0 TypeFrGTNETSKT78 0 TypeFrGTNETSKT79 0 TypeFrGTNETSKT80
|
||||
INTDATA: 0 TypeFrGTNETSKT81 0 TypeFrGTNETSKT82 0 TypeFrGTNETSKT83 0 TypeFrGTNETSKT84 0 TypeFrGTNETSKT85
|
||||
INTDATA: 0 TypeFrGTNETSKT86 0 TypeFrGTNETSKT87 0 TypeFrGTNETSKT88 0 TypeFrGTNETSKT89 0 TypeFrGTNETSKT90
|
||||
INTDATA: 0 TypeFrGTNETSKT91 0 TypeFrGTNETSKT92 0 TypeFrGTNETSKT93 0 TypeFrGTNETSKT94 0 TypeFrGTNETSKT95
|
||||
INTDATA: 0 TypeFrGTNETSKT96 0 TypeFrGTNETSKT97 0 TypeFrGTNETSKT98 0 TypeFrGTNETSKT99 0 TypeFrGTNETSKT100
|
||||
INTDATA: 0 TypeFrGTNETSKT101 0 TypeFrGTNETSKT102 0 TypeFrGTNETSKT103 0 TypeFrGTNETSKT104 0 TypeFrGTNETSKT105
|
||||
INTDATA: 0 TypeFrGTNETSKT106 0 TypeFrGTNETSKT107 0 TypeFrGTNETSKT108 0 TypeFrGTNETSKT109 0 TypeFrGTNETSKT110
|
||||
INTDATA: 0 TypeFrGTNETSKT111 0 TypeFrGTNETSKT112 0 TypeFrGTNETSKT113 0 TypeFrGTNETSKT114 0 TypeFrGTNETSKT115
|
||||
CHARDATA: POINT150 out150x POINT151 out151x POINT152 out152x POINT153 out153x POINT154 out154x
|
||||
CHARDATA: POINT155 out155x POINT156 out156x POINT157 out157x POINT158 out158x POINT159 out159x
|
||||
CHARDATA: POINT160 out160x POINT161 out161x POINT162 out162x POINT163 out163x POINT164 out164x
|
||||
CHARDATA: POINT165 out165x POINT166 out166x POINT167 out167x POINT168 out168x POINT169 out169x
|
||||
CHARDATA: POINT170 out170x POINT171 out171x POINT172 out172x POINT173 out173x POINT174 out174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT116 0 TypeFrGTNETSKT117 0 TypeFrGTNETSKT118 0 TypeFrGTNETSKT119 0 TypeFrGTNETSKT120
|
||||
INTDATA: 0 TypeFrGTNETSKT121 0 TypeFrGTNETSKT122 0 TypeFrGTNETSKT123 0 TypeFrGTNETSKT124 0 TypeFrGTNETSKT125
|
||||
INTDATA: 0 TypeFrGTNETSKT126 0 TypeFrGTNETSKT127 0 TypeFrGTNETSKT128 0 TypeFrGTNETSKT129 0 TypeFrGTNETSKT130
|
||||
INTDATA: 0 TypeFrGTNETSKT131 0 TypeFrGTNETSKT132 0 TypeFrGTNETSKT133 0 TypeFrGTNETSKT134 0 TypeFrGTNETSKT135
|
||||
INTDATA: 0 TypeFrGTNETSKT136 0 TypeFrGTNETSKT137 0 TypeFrGTNETSKT138 0 TypeFrGTNETSKT139 0 TypeFrGTNETSKT140
|
||||
INTDATA: 0 TypeFrGTNETSKT141 0 TypeFrGTNETSKT142 0 TypeFrGTNETSKT143 0 TypeFrGTNETSKT144 0 TypeFrGTNETSKT145
|
||||
INTDATA: 0 TypeFrGTNETSKT146 0 TypeFrGTNETSKT147 0 TypeFrGTNETSKT148 0 TypeFrGTNETSKT149 0 TypeFrGTNETSKT150
|
||||
INTDATA: 0 TypeFrGTNETSKT151 0 TypeFrGTNETSKT152 0 TypeFrGTNETSKT153 0 TypeFrGTNETSKT154 0 TypeFrGTNETSKT155
|
||||
INTDATA: 0 TypeFrGTNETSKT156 0 TypeFrGTNETSKT157 0 TypeFrGTNETSKT158 0 TypeFrGTNETSKT159 0 TypeFrGTNETSKT160
|
||||
INTDATA: 0 TypeFrGTNETSKT161 0 TypeFrGTNETSKT162 0 TypeFrGTNETSKT163 0 TypeFrGTNETSKT164 0 TypeFrGTNETSKT165
|
||||
INTDATA: 0 TypeFrGTNETSKT166 0 TypeFrGTNETSKT167 0 TypeFrGTNETSKT168 0 TypeFrGTNETSKT169 0 TypeFrGTNETSKT170
|
||||
INTDATA: 0 TypeFrGTNETSKT171 0 TypeFrGTNETSKT172 0 TypeFrGTNETSKT173 0 TypeFrGTNETSKT174 0 TypeFrGTNETSKT175
|
||||
CHARDATA: POINT175 out175x POINT176 out176x POINT177 out177x POINT178 out178x POINT179 out179x
|
||||
CHARDATA: POINT180 out180x POINT181 out181x POINT182 out182x POINT183 out183x POINT184 out184x
|
||||
CHARDATA: POINT185 out185x POINT186 out186x POINT187 out187x POINT188 out188x POINT189 out189x
|
||||
CHARDATA: POINT190 out190x POINT191 out191x POINT192 out192x POINT193 out193x POINT194 out194x
|
||||
CHARDATA: POINT195 out195x POINT196 out196x POINT197 out197x POINT198 out198x POINT199 out199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT176 0 TypeFrGTNETSKT177 0 TypeFrGTNETSKT178 0 TypeFrGTNETSKT179 0 TypeFrGTNETSKT180
|
||||
INTDATA: 0 TypeFrGTNETSKT181 0 TypeFrGTNETSKT182 0 TypeFrGTNETSKT183 0 TypeFrGTNETSKT184 0 TypeFrGTNETSKT185
|
||||
INTDATA: 0 TypeFrGTNETSKT186 0 TypeFrGTNETSKT187 0 TypeFrGTNETSKT188 0 TypeFrGTNETSKT189 0 TypeFrGTNETSKT190
|
||||
INTDATA: 0 TypeFrGTNETSKT191 0 TypeFrGTNETSKT192 0 TypeFrGTNETSKT193 0 TypeFrGTNETSKT194 0 TypeFrGTNETSKT195
|
||||
INTDATA: 0 TypeFrGTNETSKT196 0 TypeFrGTNETSKT197 0 TypeFrGTNETSKT198 0 TypeFrGTNETSKT199 0 TypeFrGTNETSKT200
|
||||
INTDATA: 0 TypeFrGTNETSKT201 0 TypeFrGTNETSKT202 0 TypeFrGTNETSKT203 0 TypeFrGTNETSKT204 0 TypeFrGTNETSKT205
|
||||
INTDATA: 0 TypeFrGTNETSKT206 0 TypeFrGTNETSKT207 0 TypeFrGTNETSKT208 0 TypeFrGTNETSKT209 0 TypeFrGTNETSKT210
|
||||
INTDATA: 0 TypeFrGTNETSKT211 0 TypeFrGTNETSKT212 0 TypeFrGTNETSKT213 0 TypeFrGTNETSKT214 0 TypeFrGTNETSKT215
|
||||
INTDATA: 0 TypeFrGTNETSKT216 0 TypeFrGTNETSKT217 0 TypeFrGTNETSKT218 0 TypeFrGTNETSKT219 0 TypeFrGTNETSKT220
|
||||
INTDATA: 0 TypeFrGTNETSKT221 0 TypeFrGTNETSKT222 0 TypeFrGTNETSKT223 0 TypeFrGTNETSKT224 0 TypeFrGTNETSKT225
|
||||
INTDATA: 0 TypeFrGTNETSKT226 0 TypeFrGTNETSKT227 0 TypeFrGTNETSKT228 0 TypeFrGTNETSKT229 0 TypeFrGTNETSKT230
|
||||
INTDATA: 0 TypeFrGTNETSKT231 0 TypeFrGTNETSKT232 0 TypeFrGTNETSKT233 0 TypeFrGTNETSKT234 0 TypeFrGTNETSKT235
|
||||
CHARDATA: POINT200 out200x POINT201 out201x POINT202 out202x POINT203 out203x POINT204 out204x
|
||||
CHARDATA: POINT205 out205x POINT206 out206x POINT207 out207x POINT208 out208x POINT209 out209x
|
||||
CHARDATA: POINT210 out210x POINT211 out211x POINT212 out212x POINT213 out213x POINT214 out214x
|
||||
CHARDATA: POINT215 out215x POINT216 out216x POINT217 out217x POINT218 out218x POINT219 out219x
|
||||
CHARDATA: POINT220 out220x POINT221 out221x POINT222 out222x POINT223 out223x POINT224 out224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT236 0 TypeFrGTNETSKT237 0 TypeFrGTNETSKT238 0 TypeFrGTNETSKT239 0 TypeFrGTNETSKT240
|
||||
INTDATA: 0 TypeFrGTNETSKT241 0 TypeFrGTNETSKT242 0 TypeFrGTNETSKT243 0 TypeFrGTNETSKT244 0 TypeFrGTNETSKT245
|
||||
INTDATA: 0 TypeFrGTNETSKT246 0 TypeFrGTNETSKT247 0 TypeFrGTNETSKT248 0 TypeFrGTNETSKT249 0 TypeFrGTNETSKT250
|
||||
INTDATA: 0 TypeFrGTNETSKT251 0 TypeFrGTNETSKT252 0 TypeFrGTNETSKT253 0 TypeFrGTNETSKT254 0 TypeFrGTNETSKT255
|
||||
INTDATA: 0 TypeFrGTNETSKT256 0 TypeFrGTNETSKT257 0 TypeFrGTNETSKT258 0 TypeFrGTNETSKT259 0 TypeFrGTNETSKT260
|
||||
INTDATA: 0 TypeFrGTNETSKT261 0 TypeFrGTNETSKT262 0 TypeFrGTNETSKT263 0 TypeFrGTNETSKT264 0 TypeFrGTNETSKT265
|
||||
INTDATA: 0 TypeFrGTNETSKT266 0 TypeFrGTNETSKT267 0 TypeFrGTNETSKT268 0 TypeFrGTNETSKT269 0 TypeFrGTNETSKT270
|
||||
INTDATA: 0 TypeFrGTNETSKT271 0 TypeFrGTNETSKT272 0 TypeFrGTNETSKT273 0 TypeFrGTNETSKT274 0 TypeFrGTNETSKT275
|
||||
INTDATA: 0 TypeFrGTNETSKT276 0 TypeFrGTNETSKT277 0 TypeFrGTNETSKT278 0 TypeFrGTNETSKT279 0 TypeFrGTNETSKT280
|
||||
INTDATA: 0 TypeFrGTNETSKT281 0 TypeFrGTNETSKT282 0 TypeFrGTNETSKT283 0 TypeFrGTNETSKT284 0 TypeFrGTNETSKT285
|
||||
INTDATA: 0 TypeFrGTNETSKT286 0 TypeFrGTNETSKT287 0 TypeFrGTNETSKT288 0 TypeFrGTNETSKT289 0 TypeFrGTNETSKT290
|
||||
INTDATA: 0 TypeFrGTNETSKT291 0 TypeFrGTNETSKT292 0 TypeFrGTNETSKT293 0 TypeFrGTNETSKT294 0 TypeFrGTNETSKT295
|
||||
CHARDATA: POINT225 out225x POINT226 out226x POINT227 out227x POINT228 out228x POINT229 out229x
|
||||
CHARDATA: POINT230 out230x POINT231 out231x POINT232 out232x POINT233 out233x POINT234 out234x
|
||||
CHARDATA: POINT235 out235x POINT236 out236x POINT237 out237x POINT238 out238x POINT239 out239x
|
||||
CHARDATA: POINT240 out240x POINT241 out241x POINT242 out242x POINT243 out243x POINT244 out244x
|
||||
CHARDATA: POINT245 out245x POINT246 out246x POINT247 out247x POINT248 out248x POINT249 out249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT296 0 TypeFrGTNETSKT297 0 TypeFrGTNETSKT298 0 TypeFrGTNETSKT299 3 useVersion
|
||||
INTDATA: 134 rem_ip_byte_0 130 rem_ip_byte_1 169 rem_ip_byte_2 31 rem_ip_byte_3 12001 local_udp_tcp_port
|
||||
INTDATA: 12002 remote_udp_tcp_port 0 port_mode 2 DataDirection 0 gtnetSktToFile 0 gtnetSktFromFile
|
||||
INTDATA: 1 gtnetSktType
|
||||
CHARDATA: POINT250 out250x POINT251 out251x POINT252 out252x POINT253 out253x POINT254 out254x
|
||||
CHARDATA: POINT255 out255x POINT256 out256x POINT257 out257x POINT258 out258x POINT259 out259x
|
||||
CHARDATA: POINT260 out260x POINT261 out261x POINT262 out262x POINT263 out263x POINT264 out264x
|
||||
CHARDATA: POINT265 out265x POINT266 out266x POINT267 out267x POINT268 out268x POINT269 out269x
|
||||
CHARDATA: POINT270 out270x POINT271 out271x POINT272 out272x POINT273 out273x POINT274 out274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT275 out275x POINT276 out276x POINT277 out277x POINT278 out278x POINT279 out279x
|
||||
CHARDATA: POINT280 out280x POINT281 out281x POINT282 out282x POINT283 out283x POINT284 out284x
|
||||
CHARDATA: POINT285 out285x POINT286 out286x POINT287 out287x POINT288 out288x POINT289 out289x
|
||||
CHARDATA: POINT290 out290x POINT291 out291x POINT292 out292x POINT293 out293x POINT294 out294x
|
||||
CHARDATA: POINT295 out295x POINT296 out296x POINT297 out297x POINT298 out298x POINT299 out299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINTIn0 in0x POINTin1 in1x POINTin2 in2x POINTin3 in3x POINTin4 in4x
|
||||
CHARDATA: POINT5 in5x POINT6 in6x POINT7 in7x POINT8 in8x POINT9 in9x
|
||||
CHARDATA: POINT10 in10x POINT11 in11x POINT12 in12x POINT13 in13x POINT14 in14x
|
||||
CHARDATA: POINT15 in15x POINT16 in16x POINT17 in17x POINT18 in18x POINT19 in19x
|
||||
CHARDATA: POINT20 in20x POINT21 in21x POINT22 in22x POINT23 in23x POINT24 in24x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT25 in25x POINT26 in26x POINT27 in27x POINT28 in28x POINT29 in29x
|
||||
CHARDATA: POINT30 in30x POINT31 in31x POINT32 in32x POINT33 in33x POINT34 in34x
|
||||
CHARDATA: POINT35 in35x POINT36 in36x POINT37 in37x POINT38 in38x POINT39 in39x
|
||||
CHARDATA: POINT40 in40x POINT41 in41x POINT42 in42x POINT43 in43x POINT44 in44x
|
||||
CHARDATA: POINT45 in45x POINT46 in46x POINT47 in47x POINT48 in48x POINT49 in49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT50 in50x POINT51 in51x POINT52 in52x POINT53 in53x POINT54 in54x
|
||||
CHARDATA: POINT55 in55x POINT56 in56x POINT57 in57x POINT58 in58x POINT59 in59x
|
||||
CHARDATA: POINT60 in60x POINT61 in61x POINT62 in62x POINT63 in63x POINT64 in64x
|
||||
CHARDATA: POINT65 in65x POINT66 in66x POINT67 in67x POINT68 in68x POINT69 in69x
|
||||
CHARDATA: POINT70 in70x POINT71 in71x POINT72 in72x POINT73 in73x POINT74 in74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT75 in75x POINT76 in76x POINT77 in77x POINT78 in78x POINT79 in79x
|
||||
CHARDATA: POINT80 in80x POINT81 in81x POINT82 in82x POINT83 in83x POINT84 in84x
|
||||
CHARDATA: POINT85 in85x POINT86 in86x POINT87 in87x POINT88 in88x POINT89 in89x
|
||||
CHARDATA: POINT90 in90x POINT91 in91x POINT92 in92x POINT93 in93x POINT94 in94x
|
||||
CHARDATA: POINT95 in95x POINT96 in96x POINT97 in97x POINT98 in98x POINT99 in99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT100 in100x POINT101 in101x POINT102 in102x POINT103 in103x POINT104 in104x
|
||||
CHARDATA: POINT105 in105x POINT106 in106x POINT107 in107x POINT108 in108x POINT109 in109x
|
||||
CHARDATA: POINT110 in110x POINT111 in111x POINT112 in112x POINT113 in113x POINT114 in114x
|
||||
CHARDATA: POINT115 in115x POINT116 in116x POINT117 in117x POINT118 in118x POINT119 in119x
|
||||
CHARDATA: POINT120 in120x POINT121 in121x POINT122 in122x POINT123 in123x POINT124 in124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT125 in125x POINT126 in126x POINT127 in127x POINT128 in128x POINT129 in129x
|
||||
CHARDATA: POINT130 in130x POINT131 in131x POINT132 in132x POINT133 in133x POINT134 in134x
|
||||
CHARDATA: POINT135 in135x POINT136 in136x POINT137 in137x POINT138 in138x POINT139 in139x
|
||||
CHARDATA: POINT140 in140x POINT141 in141x POINT142 in142x POINT143 in143x POINT144 in144x
|
||||
CHARDATA: POINT145 in145x POINT146 in146x POINT147 in147x POINT148 in148x POINT149 in149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT150 in150x POINT151 in151x POINT152 in152x POINT153 in153x POINT154 in154x
|
||||
CHARDATA: POINT155 in155x POINT156 in156x POINT157 in157x POINT158 in158x POINT159 in159x
|
||||
CHARDATA: POINT160 in160x POINT161 in161x POINT162 in162x POINT163 in163x POINT164 in164x
|
||||
CHARDATA: POINT165 in165x POINT166 in166x POINT167 in167x POINT168 in168x POINT169 in169x
|
||||
CHARDATA: POINT170 in170x POINT171 in171x POINT172 in172x POINT173 in173x POINT174 in174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT175 in175x POINT176 in176x POINT177 in177x POINT178 in178x POINT179 in179x
|
||||
CHARDATA: POINT180 in180x POINT181 in181x POINT182 in182x POINT183 in183x POINT184 in184x
|
||||
CHARDATA: POINT185 in185x POINT186 in186x POINT187 in187x POINT188 in188x POINT189 in189x
|
||||
CHARDATA: POINT190 in190x POINT191 in191x POINT192 in192x POINT193 in193x POINT194 in194x
|
||||
CHARDATA: POINT195 in195x POINT196 in196x POINT197 in197x POINT198 in198x POINT199 in199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT200 in200x POINT201 in201x POINT202 in202x POINT203 in203x POINT204 in204x
|
||||
CHARDATA: POINT205 in205x POINT206 in206x POINT207 in207x POINT208 in208x POINT209 in209x
|
||||
CHARDATA: POINT210 in210x POINT211 in211x POINT212 in212x POINT213 in213x POINT214 in214x
|
||||
CHARDATA: POINT215 in215x POINT216 in216x POINT217 in217x POINT218 in218x POINT219 in219x
|
||||
CHARDATA: POINT220 in220x POINT221 in221x POINT222 in222x POINT223 in223x POINT224 in224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT225 in225x POINT226 in226x POINT227 in227x POINT228 in228x POINT229 in229x
|
||||
CHARDATA: POINT230 in230x POINT231 in231x POINT232 in232x POINT233 in233x POINT234 in234x
|
||||
CHARDATA: POINT235 in235x POINT236 in236x POINT237 in237x POINT238 in238x POINT239 in239x
|
||||
CHARDATA: POINT240 in240x POINT241 in241x POINT242 in242x POINT243 in243x POINT244 in244x
|
||||
CHARDATA: POINT245 in245x POINT246 in246x POINT247 in247x POINT248 in248x POINT249 in249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT250 in250x POINT251 in251x POINT252 in252x POINT253 in253x POINT254 in254x
|
||||
CHARDATA: POINT255 in255x POINT256 in256x POINT257 in257x POINT258 in258x POINT259 in259x
|
||||
CHARDATA: POINT260 in260x POINT261 in261x POINT262 in262x POINT263 in263x POINT264 in264x
|
||||
CHARDATA: POINT265 in265x POINT266 in266x POINT267 in267x POINT268 in268x POINT269 in269x
|
||||
CHARDATA: POINT270 in270x POINT271 in271x POINT272 in272x POINT273 in273x POINT274 in274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: POINT275 in275x POINT276 in276x POINT277 in277x POINT278 in278x POINT279 in279x
|
||||
CHARDATA: POINT280 in280x POINT281 in281x POINT282 in282x POINT283 in283x POINT284 in284x
|
||||
CHARDATA: POINT285 in285x POINT286 in286x POINT287 in287x POINT288 in288x POINT289 in289x
|
||||
CHARDATA: POINT290 in290x POINT291 in291x POINT292 in292x POINT293 in293x POINT294 in294x
|
||||
CHARDATA: POINT295 in295x POINT296 in296x POINT297 in297x POINT298 in298x POINT299 in299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 6 0 2 0
|
||||
CHARDATA: GTNETSKT1 Name
|
||||
END
|
||||
999 /End of Valve-group section
|
||||
C ===================================================================================
|
||||
C
|
||||
C =====================================================================================
|
||||
C
|
||||
C Model data
|
||||
C
|
||||
C =====================================================================================
|
||||
CRtdspcpp Variable VarType="StringVar" Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
|
@ -1,45 +0,0 @@
|
|||
CASE: Test Circuit
|
||||
Delt: 50.000000 us
|
||||
Rack: 7 NoRealTime: 0
|
||||
|
||||
Output Desc="SendData" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200410
|
||||
Output Desc="txCnt" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200414
|
||||
Output Desc="POINT5" Group="Subsystem #1|CTLs|Vars" Units=" " Type=IEEE Min=0.0000 Max=1.0000 Rack=7 Adr=200418
|
||||
Output Desc="POINT0" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=20041C
|
||||
Output Desc="rxCnt" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200420
|
||||
Output Desc="readyToSen" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200424
|
||||
Output Desc="POINTIn0" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200428
|
||||
Output Desc="POINTin1" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=20042C
|
||||
Output Desc="POINTin2" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200430
|
||||
Output Desc="POINTin3" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200434
|
||||
Output Desc="POINTin4" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=IEEE Min=0.0000 Max=1.0000 Rack=7 Adr=200438
|
||||
Pushbutton Desc="Send" Group="Subsystem #1|CTLs|Inputs" Type=INT P0=0 P1=1 Rack=7 Adr=784010
|
||||
Output Desc="ADVSECD" Group="Subsystem #1|GTSYNC|Inputs" Units="Sec" Type=INT Min=0 Max=1 Rack=7 Adr=20043C
|
||||
Output Desc="ADVSTAT" Group="Subsystem #1|GTSYNC|Inputs" Units="status" Type=INT Min=0 Max=1 Rack=7 Adr=200440
|
||||
Output Desc="CRTSECD" Group="Subsystem #1|GTSYNC|Inputs" Units="Sec" Type=INT Min=0 Max=1 Rack=7 Adr=200408
|
||||
Output Desc="CRTNSEC" Group="Subsystem #1|GTSYNC|Inputs" Units="nSec" Type=INT Min=0 Max=1 Rack=7 Adr=20040C
|
||||
Output Desc="CRTSTAT" Group="Subsystem #1|GTSYNC|Inputs" Units="status" Type=INT Min=0 Max=1 Rack=7 Adr=200444
|
||||
String Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
||||
String Desc="Draft file" Group="Annotation" InitValue="Draft file: U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync\gtnet_skt_2point_udp.dft"
|
||||
String Desc="Draft file modification date" Group="Time tags" InitValue="2016/12/22 19:25:10"
|
||||
String Desc="Compile date" Group="Time tags" InitValue="2016/12/22 19:25:14"
|
||||
|
||||
|
||||
COMPONENT_TIMING_INFORMATION:
|
||||
timing_record: subsystem=1 processor=0 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=1 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=2 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=3 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=4 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=5 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=6 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=7 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=8 processor_type=PB5
|
||||
timing_record: subsystem=1 processor=9 processor_type=PB5
|
||||
timing_record: subsystem=1 processor_type=3PC processor_count=0
|
||||
timing_record: timing_name=Send component_type=RISC_PB subsystem=1 processor=2 processor_type=GPC clock_index=3 enabled=false use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=edgedet_cb component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=4 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=UPDOWNC component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=5 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=TIMERC component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=6 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=UPDOWNC component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=7 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=gtnetskt component_type=RISC_CMODEL subsystem=1 processor=2 processor_type=GPC clock_index=8 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
|
@ -1,56 +0,0 @@
|
|||
MESSAGES:
|
||||
|
||||
Compiling U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync\gtnet_skt_2point_udp.dft for RTDS rack 7...
|
||||
Nodes and Wires...
|
||||
|
||||
Compiling subsystem ''
|
||||
Electrical nodes found: 0
|
||||
|
||||
|
||||
Running In Pre-Processor Mode (RTDSPCPP Inclusion)
|
||||
|
||||
|
||||
|
||||
|
||||
REAL-TIME DIGITAL SIMULATOR POWER SYSTEM COMPILER
|
||||
(c) Copyright 1994-2008 RTDS Technologies Inc.
|
||||
|
||||
Version C10.04
|
||||
Compilation Time: 11:09:29 May 26 2015
|
||||
|
||||
|
||||
Data file name: gtnet_skt_2point_udp.dtp
|
||||
Inf file name: tmp.gtnet_skt_2point_udp.inf
|
||||
Map file name: gtnet_skt_2point_udp.map
|
||||
Output file name: gtnet_skt_2point_udp_r#
|
||||
|
||||
Configuration file directory: .
|
||||
Configuration file name: C:\RSCAD\HDWR\config_file_02.txt
|
||||
|
||||
Title from data file: "Test Circuit"
|
||||
|
||||
|
||||
Library file directory: C:\RSCAD/RTDS
|
||||
Library file name: rt_sim.lib
|
||||
Library file version: 62.57
|
||||
|
||||
Library file directory: C:\RSCAD/RTDS
|
||||
Library file name: rpc.lib
|
||||
Library file version: 24.53
|
||||
|
||||
Time-step used = 50.000000 us
|
||||
|
||||
|
||||
Network Conductance Matrix Overlay Statistics:
|
||||
Subsystem 1 contains 0 matrix overlays.
|
||||
|
||||
|
||||
Control Component Statistics:
|
||||
Subsystem 1 contains 32 control components.
|
||||
|
||||
|
||||
End of process. Peak memory usage = 340852736 bytes
|
||||
|
||||
|
||||
rtc terminated successfully.
|
||||
|
|
@ -1,57 +0,0 @@
|
|||
CASE: Test Circuit
|
||||
Delt: 50.000000 us
|
||||
Backplane operation set to IEEE mode
|
||||
|
||||
+----------------------------------------------------------+
|
||||
| |
|
||||
| S U B S Y S T E M #01 |
|
||||
| |
|
||||
| mapped to |
|
||||
| |
|
||||
| R T D S R A C K #07 |
|
||||
| |
|
||||
+----------------------------------------------------------+
|
||||
|
||||
|
||||
C O M P O N E N T P R O C E S S O R S
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
RISC CONTROLS COMPONENTS(proc 1) --> RPC-GPC Card #2 Processor A
|
||||
RISC edgedet_cb function
|
||||
RISC UPDOWNC function
|
||||
RISC TIMERC function
|
||||
RISC UPDOWNC function
|
||||
RISC gtnetskt function
|
||||
|
||||
Hidden T2 Transfer List
|
||||
--------------------------------
|
||||
BP_Address Signal_Type Signal_name
|
||||
0x104 named_signal_prc SendData
|
||||
0x105 named_signal_prc txCnt
|
||||
0x106 named_signal_prc POINT5
|
||||
0x107 named_signal_prc POINT0
|
||||
0x108 named_signal_prc rxCnt
|
||||
0x109 named_signal_prc readyToSen
|
||||
0x10A named_signal_prc POINTIn0
|
||||
0x10B named_signal_prc POINTin1
|
||||
0x10C named_signal_prc POINTin2
|
||||
0x10D named_signal_prc POINTin3
|
||||
0x10E named_signal_prc POINTin4
|
||||
0x10F named_signal_wif ADVSECD
|
||||
0x110 named_signal_wif ADVSTAT
|
||||
0x111 named_signal_wif CRTSTAT
|
||||
|
||||
|
||||
T I M E - S T E P I N F O R M A T I O N
|
||||
S U B S Y S T E M 1
|
||||
==========================================================
|
||||
|
||||
|
||||
Backplane Communication Speed = 60.000000 ns
|
||||
T2 communication time 1.3200 us
|
||||
|
||||
|
||||
Minimum time-step 3.3200 us
|
||||
|
||||
Common Current Injections: 0(local) + 0(xrack)
|
|
@ -1,6 +0,0 @@
|
|||
STARTING RACK NUMBER 7
|
||||
# Proc ComponentType:Name Load
|
||||
#----------------------------------------------------------------------------------------
|
||||
SUBSYSTEM 1
|
||||
#----------------------
|
||||
2 ControlsProcessor1 100
|
|
@ -1,157 +0,0 @@
|
|||
RSCAD 4.006
|
||||
INFORMATION FILE: gtnet_skt_2point_udp.inf
|
||||
FILE TO DOWNLOAD: gtnet_skt_2point_udp
|
||||
FINISH TIME: 0.2 SECONDS
|
||||
PRE-TRIGGER: 20%
|
||||
PLOT DENSITY: EVERY POINT
|
||||
METER UPDATE FREQUENCY: 1000
|
||||
COMTRADE PLOT SAVE FREQUENCY: 50.0
|
||||
COMPONENT: METER
|
||||
BOX AT (324,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: rxCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (440,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: txCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (556,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTIn0
|
||||
UNITS: units
|
||||
MIN: -100.0
|
||||
MAX: 100.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 4
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (192,16), DIMENSIONS 132 x 144
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (323,247)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: POINT0
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 6
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (664,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTin1
|
||||
UNITS: units
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 9
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: BUTTON
|
||||
BOX AT (289,257), DIMENSIONS 50 x 70
|
||||
NAME:
|
||||
ICON: NONE
|
||||
ICON AT: (291,133)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Inputs
|
||||
DESC: Send
|
||||
COMPONENT: METER
|
||||
BOX AT (776,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTin2
|
||||
UNITS: units
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 9
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (892,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTin3
|
||||
UNITS: units
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 9
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (1004,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTin4
|
||||
UNITS: units
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 9
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (572,176), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (655,231)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: POINT5
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
File diff suppressed because it is too large
Load diff
|
@ -1,34 +0,0 @@
|
|||
|
||||
Subsystem Number 1
|
||||
********************
|
||||
********************
|
||||
|
||||
Flag T3
|
||||
*******
|
||||
|
||||
Flag T0
|
||||
*******
|
||||
|
||||
Flag T1
|
||||
*******
|
||||
|
||||
Flag T2
|
||||
*******
|
||||
0 100 local_used SS1 named_signal_wif 0 "POINT4" from wif 0 xrack_src_idx = -1
|
||||
1 101 local_used SS1 named_signal_wif 1 "POINT3" from wif 0 xrack_src_idx = -1
|
||||
2 102 local_used SS1 named_signal_wif 4 "CRTSECD" from wif 0 xrack_src_idx = -1
|
||||
3 103 local_used SS1 named_signal_wif 5 "CRTNSEC" from wif 0 xrack_src_idx = -1
|
||||
4 104 local_unused SS1 named_signal_prc 0 "SendData" from ppc_main 2 xrack_src_idx = -1
|
||||
5 105 local_unused SS1 named_signal_prc 1 "txCnt" from ppc_main 2 xrack_src_idx = -1
|
||||
6 106 local_unused SS1 named_signal_prc 2 "POINT5" from ppc_main 2 xrack_src_idx = -1
|
||||
7 107 local_unused SS1 named_signal_prc 3 "POINT0" from ppc_main 2 xrack_src_idx = -1
|
||||
8 108 local_unused SS1 named_signal_prc 4 "rxCnt" from ppc_main 2 xrack_src_idx = -1
|
||||
9 109 local_unused SS1 named_signal_prc 5 "readyToSen" from ppc_main 2 xrack_src_idx = -1
|
||||
10 10A local_unused SS1 named_signal_prc 6 "POINTIn0" from ppc_main 2 xrack_src_idx = -1
|
||||
11 10B local_unused SS1 named_signal_prc 7 "POINTin1" from ppc_main 2 xrack_src_idx = -1
|
||||
12 10C local_unused SS1 named_signal_prc 8 "POINTin2" from ppc_main 2 xrack_src_idx = -1
|
||||
13 10D local_unused SS1 named_signal_prc 9 "POINTin3" from ppc_main 2 xrack_src_idx = -1
|
||||
14 10E local_unused SS1 named_signal_prc 10 "POINTin4" from ppc_main 2 xrack_src_idx = -1
|
||||
15 10F local_unused SS1 named_signal_wif 2 "ADVSECD" from wif 0 xrack_src_idx = -1
|
||||
16 110 local_unused SS1 named_signal_wif 3 "ADVSTAT" from wif 0 xrack_src_idx = -1
|
||||
17 111 local_unused SS1 named_signal_wif 6 "CRTSTAT" from wif 0 xrack_src_idx = -1
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,28 +0,0 @@
|
|||
This example demonstrates UDP socket communication. Data is sent from the RTDS to a standalone java program, and the java program can send information back to the RTDS.
|
||||
This is done using the SKT protocol on the GTNETx2 card.
|
||||
Note: You need to install the JDK to be able to compile java files http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html MAKE sure the path to the bin folder of the JDK
|
||||
is added to the windows path variable (google to figure this out)
|
||||
|
||||
Note: If you want some extra information printed in the DOS window set the boolean DEBUG=true
|
||||
|
||||
1. Open a windows command shell and go to the Tutorial|SAMPLES|GTSKT|ExampleGUI folder.
|
||||
2. Compile the .java code. Use the command below in the windows command shell
|
||||
javac GNET_SKT_UDP_GUI.java
|
||||
3. Run the code using the command below
|
||||
java GNET_SKT_UDP_GUI
|
||||
4. Upon running the program, two panels will appear. The GTNET-SKT UDP Server and the GTNET-SKT UDP Client.
|
||||
A file chooser box can be used to request the file name that defines the name and type of the received data or type of data to send.
|
||||
Browse to the file named received.txt in the Tutorial|SAMPLES|GTSKT folder. The table will be filled with data from the file or the user can add/delete items from the table
|
||||
5. Press the Start button in the GUI
|
||||
A message will be displayed in the Messages Text area
|
||||
Server socket created. Waiting for incoming data ...
|
||||
6. A file chooser box can be used to request the file name that defines the name and type of type of data to send. To manually add points press
|
||||
the Add button in the GTNET-SKT UDP Client panel and add 2 points, change the type of point 0 to "int"
|
||||
7. Press the Send button in the GUI and the UDP packet will be sent to the GTNET-SKT UDP Server panel.
|
||||
|
||||
TO use the GTNET-SKT the user must change the Remote Server Settings IP Address and Port in the GTNET-SKT UDP Client panel so the program will send the UDP packet to the GTNET
|
||||
8. Open the Draft case, edit the GTNET-SKT component, go to the Remote IP Configuration tab and change the Remote IP address to the IP address of your PC.
|
||||
9. Compile the Draft case, ensure to change the allocation of the component to the proper RTDS processor and GTIO port based on your hardware configuration.
|
||||
10. Run the simulation.
|
||||
11. Press the Send button in the simulation, the value on the Point slider is sent to the java program and will appear in the GTNET-SKT UDP server panel.
|
||||
12. Press the Send button in the GUI and the UDP packet will be sent to the simulation and is displayed in the meters POINTIn0 and POINTin1.
|
|
@ -1,107 +0,0 @@
|
|||
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Insets;
|
||||
|
||||
import javax.swing.border.Border;
|
||||
|
||||
class SoftEdgeBorder implements Border
|
||||
|
||||
{
|
||||
|
||||
protected int m_w=3;
|
||||
|
||||
protected int m_h=3;
|
||||
|
||||
protected Color m_topColor = Color.gray;//white;
|
||||
|
||||
protected Color m_bottomColor = Color.gray;
|
||||
|
||||
public SoftEdgeBorder()
|
||||
{
|
||||
|
||||
m_w=3;
|
||||
|
||||
m_h=3;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h) {
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h, Color col)
|
||||
{
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
m_topColor = col;
|
||||
|
||||
m_bottomColor = col;
|
||||
|
||||
}
|
||||
|
||||
public SoftEdgeBorder(int w, int h, Color topColor,
|
||||
|
||||
Color bottomColor)
|
||||
{
|
||||
|
||||
m_w=w;
|
||||
|
||||
m_h=h;
|
||||
|
||||
m_topColor = topColor;
|
||||
|
||||
m_bottomColor = bottomColor;
|
||||
|
||||
}
|
||||
|
||||
public Insets getBorderInsets(Component c)
|
||||
{
|
||||
|
||||
return new Insets(m_h, m_w, m_h, m_w);
|
||||
|
||||
}
|
||||
|
||||
public boolean isBorderOpaque() { return true; }
|
||||
|
||||
public void paintBorder(Component c, Graphics g,
|
||||
|
||||
int x, int y, int w, int h)
|
||||
{
|
||||
|
||||
w--;
|
||||
|
||||
h--;
|
||||
|
||||
g.setColor(m_topColor);
|
||||
|
||||
g.drawLine(x, y+h-m_h, x, y+m_h);
|
||||
|
||||
g.drawArc(x, y, 2*m_w, 2*m_h, 180, -90);
|
||||
|
||||
g.drawLine(x+m_w, y, x+w-m_w, y);
|
||||
|
||||
g.drawArc(x+w-2*m_w, y, 2*m_w, 2*m_h, 90, -90);
|
||||
|
||||
g.setColor(m_bottomColor);
|
||||
|
||||
g.drawLine(x+w, y+m_h, x+w, y+h-m_h);
|
||||
|
||||
g.drawArc(x+w-2*m_w, y+h-2*m_h, 2*m_w, 2*m_h, 0, -90);
|
||||
|
||||
g.drawLine(x+m_w, y+h, x+w-m_w, y+h);
|
||||
|
||||
g.drawArc(x, y+h-2*m_h, 2*m_w, 2*m_h, -90, -90);
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -1,102 +0,0 @@
|
|||
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.GradientPaint;
|
||||
import java.awt.Graphics;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.RenderingHints;
|
||||
import java.awt.Shape;
|
||||
import java.awt.geom.RoundRectangle2D;
|
||||
|
||||
import javax.swing.Action;
|
||||
import javax.swing.DefaultButtonModel;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JButton;
|
||||
|
||||
class SoftEdgeButton extends JButton
|
||||
{
|
||||
private static final float arcwidth = 6.0f;
|
||||
private static final float archeight = 6.0f;
|
||||
protected static final int focusstroke = 2;
|
||||
protected final Color currFocusBorderCol = new Color(100,113,200, 200);//(110,123,139, 200);//(100,150,255,200); //rgba
|
||||
protected final Color pressedCol = new Color(197, 220, 250);//(230,230,230);
|
||||
protected final Color hoverBorderCol = new Color(140,211,251);//(135,206,250);//Color.ORANGE;
|
||||
protected final Color buttonCol = new Color(202, 225, 255);//(250, 250, 250);
|
||||
protected final Color buttonBorderCol = Color.gray;
|
||||
protected Shape shape;
|
||||
protected Shape border;
|
||||
protected Shape base;
|
||||
|
||||
public SoftEdgeButton() {
|
||||
this(null, null);
|
||||
}
|
||||
public SoftEdgeButton(Icon icon) {
|
||||
this(null, icon);
|
||||
}
|
||||
public SoftEdgeButton(String text) {
|
||||
this(text, null);
|
||||
}
|
||||
public SoftEdgeButton(Action a) {
|
||||
this();
|
||||
setAction(a);
|
||||
}
|
||||
public SoftEdgeButton(String text, Icon icon) {
|
||||
setModel(new DefaultButtonModel());
|
||||
init(text, icon);
|
||||
setContentAreaFilled(false);
|
||||
setBackground(buttonCol);
|
||||
initShape();
|
||||
}
|
||||
|
||||
protected void initShape() {
|
||||
if(!getBounds().equals(base)) {
|
||||
base = getBounds();
|
||||
shape = new RoundRectangle2D.Float(0, 0, getWidth()-1, getHeight()-1, arcwidth, archeight);
|
||||
border = new RoundRectangle2D.Float(focusstroke, focusstroke,
|
||||
getWidth()-1-focusstroke*2,
|
||||
getHeight()-1-focusstroke*2,
|
||||
arcwidth, archeight);
|
||||
}
|
||||
}
|
||||
private void paintFocusAndRollover(Graphics2D g2, Color color) {
|
||||
g2.setPaint(new GradientPaint(0, 0, color, getWidth()-1, getHeight()-1, color.brighter(), true));
|
||||
g2.fill(shape);
|
||||
g2.setPaint(new GradientPaint(0, 0, Color.WHITE, 0, (int)(getHeight()-1)/*-1*/, getBackground(), false));
|
||||
//g2.setColor(getBackground());
|
||||
g2.fill(border);
|
||||
}
|
||||
|
||||
@Override protected void paintComponent(Graphics g) {
|
||||
initShape();
|
||||
Graphics2D g2 = (Graphics2D)g;
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
||||
if(getModel().isArmed()) {
|
||||
g2.setColor(pressedCol);
|
||||
g2.fill(shape);
|
||||
}else if(isRolloverEnabled() && getModel().isRollover()) {
|
||||
paintFocusAndRollover(g2, hoverBorderCol);
|
||||
}else if(hasFocus()) {
|
||||
paintFocusAndRollover(g2, currFocusBorderCol);
|
||||
}else{
|
||||
|
||||
g2.setPaint(new GradientPaint(0, 0, Color.WHITE, 0, (int)(getHeight()-1)/*-1*/, getBackground(), false));
|
||||
//g2.setColor(getBackground());
|
||||
g2.fill(shape);
|
||||
}
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF);
|
||||
g2.setColor(getBackground());
|
||||
super.paintComponent(g2);
|
||||
}
|
||||
@Override protected void paintBorder(Graphics g) {
|
||||
initShape();
|
||||
Graphics2D g2 = (Graphics2D)g;
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
|
||||
g2.setColor(buttonBorderCol);
|
||||
g2.draw(shape);
|
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF);
|
||||
}
|
||||
@Override public boolean contains(int x, int y) {
|
||||
initShape();
|
||||
return shape.contains(x, y);
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,106 +0,0 @@
|
|||
RSCAD 4.003.1aa
|
||||
INFORMATION FILE: gtnet_skt_2point_tcp.inf
|
||||
FILE TO DOWNLOAD: gtnet_skt_2point_tcp
|
||||
FINISH TIME: 0.2 SECONDS
|
||||
PRE-TRIGGER: 20%
|
||||
PLOT DENSITY: EVERY POINT
|
||||
METER UPDATE FREQUENCY: 1000
|
||||
COMTRADE PLOT SAVE FREQUENCY: 50.0
|
||||
COMPONENT: SLIDER
|
||||
BOX AT (20,12), DIMENSIONS 170 x 150
|
||||
NAME: Point
|
||||
ICON: NONE
|
||||
ICON AT: (176,99)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Inputs
|
||||
DESC: Point0
|
||||
UNITS:
|
||||
MIN: -2.147E7
|
||||
MAX: 2.147E7
|
||||
VALUE: 1718000.0
|
||||
COMPONENT: BUTTON
|
||||
BOX AT (120,180), DIMENSIONS 50 x 70
|
||||
NAME:
|
||||
ICON: NONE
|
||||
ICON AT: (291,133)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Inputs
|
||||
DESC: Send
|
||||
COMPONENT: METER
|
||||
BOX AT (324,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: rxCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (440,12), DIMENSIONS 115 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (484,68)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: txCnt
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 10000.0
|
||||
FONT_SIZE: 16
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (556,12), DIMENSIONS 108 x 150
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTIn0
|
||||
UNITS: units
|
||||
MIN: -100.0
|
||||
MAX: 100.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 4
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (192,16), DIMENSIONS 132 x 144
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (323,247)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|CTLs|Vars
|
||||
DESC: POINT0
|
||||
UNITS:
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 6
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
||||
COMPONENT: METER
|
||||
BOX AT (664,12), DIMENSIONS 116 x 148
|
||||
NAME:
|
||||
ICON: EXISTS
|
||||
ICON AT: (287,112)
|
||||
GROUP: (NONE)
|
||||
GROUP: Subsystem #1|GTNETSKT|GTNETSKT1
|
||||
DESC: POINTin1
|
||||
UNITS: units
|
||||
MIN: 0.0
|
||||
MAX: 1.0
|
||||
FONT_SIZE: 16
|
||||
PRECISION: 9
|
||||
SHOW AS METER_2
|
||||
COLOR FALSE
|
||||
VISUAL_STYLE: 0
|
|
@ -1 +0,0 @@
|
|||
"C:\RSCAD\BIN\rtdspc.exe" -PP -PSCAD_MASTER "C:\RSCAD" -PSCAD_USER "U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace" -PSCAD_PATH "C:\RSCAD\BIN" -CONFIG_FILE "C:\RSCAD\HDWR\config_file_02.txt" -case "U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync2\gtnet_skt_2point_udp" -rack 7 -verbose -Options "C:\RSCAD\BIN\..\.\BIN\bat.options"
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -1,884 +0,0 @@
|
|||
Test Circuit
|
||||
C
|
||||
C Compiled by: DRAFT 4.004.2
|
||||
C Source File:U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync2\gtnet_skt_2point_udp.dft
|
||||
C
|
||||
C==============================================================================================
|
||||
5.0E-5 0.2 5.0E-4 /Delta-T Finish-Time Print-Step
|
||||
1 /Number of subsystems
|
||||
C =====================================================================================
|
||||
C SUBSYSTEM #1:SS 1
|
||||
PRE_PROCESSOR:
|
||||
String Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
||||
END_PRE_PROCESSOR:
|
||||
C ------------------------------------------------------
|
||||
1 /# of nodes in subsystem
|
||||
0.0 /initial node voltages
|
||||
C
|
||||
C Node Voltage and Current Bases
|
||||
C
|
||||
C* Node: 1 Vbase: 1 kV Ibase: 0 kA NodeName: "CONTROLS"
|
||||
C
|
||||
C Network RLC branch data section
|
||||
C
|
||||
C
|
||||
999 /End of RLC Branch data
|
||||
C Source data section
|
||||
C
|
||||
999 /End of Source data
|
||||
C
|
||||
C Transformer data section
|
||||
C
|
||||
999 /End of Transformer data
|
||||
C
|
||||
C Transducer data section
|
||||
999 /End of CT,CVT & PT model data
|
||||
999 / End of Sequencer data
|
||||
C =====================================================================================
|
||||
C Transmission line section
|
||||
C
|
||||
C
|
||||
C
|
||||
999 /End of T-Line section
|
||||
C =====================================================================================
|
||||
C
|
||||
C ===================================================================================
|
||||
C
|
||||
C Valve group data
|
||||
C
|
||||
C CONTROLS COMPILER: RISC CONTROLS PROCESSOR MANUAL ASSIGNMENT
|
||||
RTDS.CTL.RISC_PROCASS
|
||||
COMP: RISC_PROCASS 1 0 0
|
||||
IDATA: 3 0 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.CONSTANT
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT4 IEEE
|
||||
FDATA: 60.0
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT3 INT
|
||||
IDATA: 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: IT_3 INT
|
||||
IDATA: 0
|
||||
END
|
||||
C CONTROLS COMPILER: SHARC PUSH BUTTON COMPONENT
|
||||
RTDS.CTL.SH_PB
|
||||
COMP: Send 1 0 0
|
||||
OVARS: IT_4 INT
|
||||
IDATA: 0
|
||||
FDATA: 0 1
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT1 INT
|
||||
IDATA: 0
|
||||
END
|
||||
RTDS.RISC.
|
||||
COMP: risc_gtsync Rsync 0 0 1
|
||||
IDATA: 1 1 7
|
||||
CDATA: ADVSECD ADVSTAT CRTSECD CRTNSEC CRTSTAT
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: POINT2 INT
|
||||
IDATA: 0
|
||||
END
|
||||
C CONTROLS COMPILER: CONSTANT VALUE
|
||||
RTDS.CTL.SH_ICONST
|
||||
COMP: CONST 1 0 0
|
||||
OVARS: IT_7 INT
|
||||
IDATA: 0
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sum3_A 1 1 2 0 2 0
|
||||
DATA_SIZES: INTDATA=6 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Num 0 IorF 0 IN1 1 IN2 1 IN3
|
||||
INTDATA: 1 cmv
|
||||
INVARS: CRTSECD INT INP1_i ts2sec INT INP2_i _dud_ INT INP3_i
|
||||
OUTVARS: IT_f INT OUT_i
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sum3_A 1 1 3 0 2 0
|
||||
DATA_SIZES: INTDATA=6 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Num 0 IorF 0 IN1 1 IN2 1 IN3
|
||||
INTDATA: 1 cmv
|
||||
INVARS: CRTNSEC INT INP1_i ts2nsec INT INP2_i _dud_ INT INP3_i
|
||||
OUTVARS: IT_h INT OUT_i
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sum3_A 1 1 4 0 2 0
|
||||
DATA_SIZES: INTDATA=6 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Num 0 IorF 0 IN1 1 IN2 1 IN3
|
||||
INTDATA: 1 cmv
|
||||
INVARS: CRTNSEC INT INP1_i ts2nsec INT INP2_i _dud_ INT INP3_i
|
||||
OUTVARS: IT_d INT OUT_i
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sum3_A 1 1 5 0 2 0
|
||||
DATA_SIZES: INTDATA=6 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Num 0 IorF 0 IN1 1 IN2 1 IN3
|
||||
INTDATA: 1 cmv
|
||||
INVARS: CRTSECD INT INP1_i ts2sec INT INP2_i _dud_ INT INP3_i
|
||||
OUTVARS: IT_e INT OUT_i
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sum3_A 1 1 6 0 2 0
|
||||
DATA_SIZES: INTDATA=6 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Num 0 IorF 0 IN1 1 IN2 1 IN3
|
||||
INTDATA: 1 cmv
|
||||
INVARS: CRTNSEC INT INP1_i NoTSin2 INT INP2_i _dud_ INT INP3_i
|
||||
OUTVARS: IT_b INT OUT_i
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sum3_A 1 1 7 0 2 0
|
||||
DATA_SIZES: INTDATA=6 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Num 0 IorF 0 IN1 1 IN2 1 IN3
|
||||
INTDATA: 1 cmv
|
||||
INVARS: CRTSECD INT INP1_i NoTSin1 INT INP2_i _dud_ INT INP3_i
|
||||
OUTVARS: IT_c INT OUT_i
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: edgedet_cb 1 1 8 0 2 0
|
||||
DATA_SIZES: INTDATA=2 FLOATDATA=0 CHARDATA=0 INVARS=1 OUTVARS=1
|
||||
INTDATA: 0 ED 1 OV
|
||||
INVARS: IT_4 INT Inp
|
||||
OUTVARS: SendData INT Out
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: UPDOWNC 1 1 9 0 2 0
|
||||
INTDATA: 0 Tran 0 RST 0 LIM 10 UL -10 LL
|
||||
INTDATA: 0 INIT 0 A 0 B 0 C
|
||||
INVARS: SendData INT UP IT_7 INT DOWN _dud_ INT RSTSIG _dud_ INT LLINP _dud_ INT ULINP
|
||||
OUTVARS: txCnt INT COUNT
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
DATA_SIZES: INTDATA=615 FLOATDATA=0 CHARDATA=601 INVARS=1 OUTVARS=5
|
||||
INTDATA: 1 Card 2 Port 5 numVarsToGTNETSKT 5 numVarsFromGTNETSKT 0 TypeToGTNETSKT0
|
||||
INTDATA: 0 TypeToGTNETSKT1 0 TypeToGTNETSKT2 0 TypeToGTNETSKT3 1 TypeToGTNETSKT4 0 TypeToGTNETSKT5
|
||||
INTDATA: 0 TypeToGTNETSKT6 0 TypeToGTNETSKT7 0 TypeToGTNETSKT8 0 TypeToGTNETSKT9 0 TypeToGTNETSKT10
|
||||
INTDATA: 0 TypeToGTNETSKT11 0 TypeToGTNETSKT12 0 TypeToGTNETSKT13 0 TypeToGTNETSKT14 0 TypeToGTNETSKT15
|
||||
INTDATA: 0 TypeToGTNETSKT16 0 TypeToGTNETSKT17 0 TypeToGTNETSKT18 0 TypeToGTNETSKT19 0 TypeToGTNETSKT20
|
||||
INTDATA: 0 TypeToGTNETSKT21 0 TypeToGTNETSKT22 0 TypeToGTNETSKT23 0 TypeToGTNETSKT24 0 TypeToGTNETSKT25
|
||||
INTDATA: 0 TypeToGTNETSKT26 0 TypeToGTNETSKT27 0 TypeToGTNETSKT28 0 TypeToGTNETSKT29 0 TypeToGTNETSKT30
|
||||
INTDATA: 0 TypeToGTNETSKT31 0 TypeToGTNETSKT32 0 TypeToGTNETSKT33 0 TypeToGTNETSKT34 0 TypeToGTNETSKT35
|
||||
INTDATA: 0 TypeToGTNETSKT36 0 TypeToGTNETSKT37 0 TypeToGTNETSKT38 0 TypeToGTNETSKT39 0 TypeToGTNETSKT40
|
||||
INTDATA: 0 TypeToGTNETSKT41 0 TypeToGTNETSKT42 0 TypeToGTNETSKT43 0 TypeToGTNETSKT44 0 TypeToGTNETSKT45
|
||||
INTDATA: 0 TypeToGTNETSKT46 0 TypeToGTNETSKT47 0 TypeToGTNETSKT48 0 TypeToGTNETSKT49 0 TypeToGTNETSKT50
|
||||
INTDATA: 0 TypeToGTNETSKT51 0 TypeToGTNETSKT52 0 TypeToGTNETSKT53 0 TypeToGTNETSKT54 0 TypeToGTNETSKT55
|
||||
CHARDATA: POINT0 out0x POINT1 out1x POINT2 out2x POINT3 out3x POINT4 out4x
|
||||
CHARDATA: Out5 out5x Out6 out6x Out7 out7x Out8 out8x Out9 out9x
|
||||
CHARDATA: Out10 out10x Out11 out11x Out12 out12x Out13 out13x Out14 out14x
|
||||
CHARDATA: Out15 out15x Out16 out16x Out17 out17x Out18 out18x Out19 out19x
|
||||
CHARDATA: Out20 out20x Out21 out21x Out22 out22x Out23 out23x Out24 out24x
|
||||
INVARS: SendData INT SendDataFlag
|
||||
OUTVARS: IT_6 INT socketOverflow IT_5 INT gtnetInvMsg rxCnt2 INT gtnetSktNewDataSeq IT_9 INT gtnetSktNewDataFlag rdyTosend2 INT gtnetSktReadyToSend
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT56 0 TypeToGTNETSKT57 0 TypeToGTNETSKT58 0 TypeToGTNETSKT59 0 TypeToGTNETSKT60
|
||||
INTDATA: 0 TypeToGTNETSKT61 0 TypeToGTNETSKT62 0 TypeToGTNETSKT63 0 TypeToGTNETSKT64 0 TypeToGTNETSKT65
|
||||
INTDATA: 0 TypeToGTNETSKT66 0 TypeToGTNETSKT67 0 TypeToGTNETSKT68 0 TypeToGTNETSKT69 0 TypeToGTNETSKT70
|
||||
INTDATA: 0 TypeToGTNETSKT71 0 TypeToGTNETSKT72 0 TypeToGTNETSKT73 0 TypeToGTNETSKT74 0 TypeToGTNETSKT75
|
||||
INTDATA: 0 TypeToGTNETSKT76 0 TypeToGTNETSKT77 0 TypeToGTNETSKT78 0 TypeToGTNETSKT79 0 TypeToGTNETSKT80
|
||||
INTDATA: 0 TypeToGTNETSKT81 0 TypeToGTNETSKT82 0 TypeToGTNETSKT83 0 TypeToGTNETSKT84 0 TypeToGTNETSKT85
|
||||
INTDATA: 0 TypeToGTNETSKT86 0 TypeToGTNETSKT87 0 TypeToGTNETSKT88 0 TypeToGTNETSKT89 0 TypeToGTNETSKT90
|
||||
INTDATA: 0 TypeToGTNETSKT91 0 TypeToGTNETSKT92 0 TypeToGTNETSKT93 0 TypeToGTNETSKT94 0 TypeToGTNETSKT95
|
||||
INTDATA: 0 TypeToGTNETSKT96 0 TypeToGTNETSKT97 0 TypeToGTNETSKT98 0 TypeToGTNETSKT99 0 TypeToGTNETSKT100
|
||||
INTDATA: 0 TypeToGTNETSKT101 0 TypeToGTNETSKT102 0 TypeToGTNETSKT103 0 TypeToGTNETSKT104 0 TypeToGTNETSKT105
|
||||
INTDATA: 0 TypeToGTNETSKT106 0 TypeToGTNETSKT107 0 TypeToGTNETSKT108 0 TypeToGTNETSKT109 0 TypeToGTNETSKT110
|
||||
INTDATA: 0 TypeToGTNETSKT111 0 TypeToGTNETSKT112 0 TypeToGTNETSKT113 0 TypeToGTNETSKT114 0 TypeToGTNETSKT115
|
||||
CHARDATA: Out25 out25x Out26 out26x Out27 out27x Out28 out28x Out29 out29x
|
||||
CHARDATA: Out30 out30x Out31 out31x Out32 out32x Out33 out33x Out34 out34x
|
||||
CHARDATA: Out35 out35x Out36 out36x Out37 out37x Out38 out38x Out39 out39x
|
||||
CHARDATA: Out40 out40x Out41 out41x Out42 out42x Out43 out43x Out44 out44x
|
||||
CHARDATA: Out45 out45x Out46 out46x Out47 out47x Out48 out48x Out49 out49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT116 0 TypeToGTNETSKT117 0 TypeToGTNETSKT118 0 TypeToGTNETSKT119 0 TypeToGTNETSKT120
|
||||
INTDATA: 0 TypeToGTNETSKT121 0 TypeToGTNETSKT122 0 TypeToGTNETSKT123 0 TypeToGTNETSKT124 0 TypeToGTNETSKT125
|
||||
INTDATA: 0 TypeToGTNETSKT126 0 TypeToGTNETSKT127 0 TypeToGTNETSKT128 0 TypeToGTNETSKT129 0 TypeToGTNETSKT130
|
||||
INTDATA: 0 TypeToGTNETSKT131 0 TypeToGTNETSKT132 0 TypeToGTNETSKT133 0 TypeToGTNETSKT134 0 TypeToGTNETSKT135
|
||||
INTDATA: 0 TypeToGTNETSKT136 0 TypeToGTNETSKT137 0 TypeToGTNETSKT138 0 TypeToGTNETSKT139 0 TypeToGTNETSKT140
|
||||
INTDATA: 0 TypeToGTNETSKT141 0 TypeToGTNETSKT142 0 TypeToGTNETSKT143 0 TypeToGTNETSKT144 0 TypeToGTNETSKT145
|
||||
INTDATA: 0 TypeToGTNETSKT146 0 TypeToGTNETSKT147 0 TypeToGTNETSKT148 0 TypeToGTNETSKT149 0 TypeToGTNETSKT150
|
||||
INTDATA: 0 TypeToGTNETSKT151 0 TypeToGTNETSKT152 0 TypeToGTNETSKT153 0 TypeToGTNETSKT154 0 TypeToGTNETSKT155
|
||||
INTDATA: 0 TypeToGTNETSKT156 0 TypeToGTNETSKT157 0 TypeToGTNETSKT158 0 TypeToGTNETSKT159 0 TypeToGTNETSKT160
|
||||
INTDATA: 0 TypeToGTNETSKT161 0 TypeToGTNETSKT162 0 TypeToGTNETSKT163 0 TypeToGTNETSKT164 0 TypeToGTNETSKT165
|
||||
INTDATA: 0 TypeToGTNETSKT166 0 TypeToGTNETSKT167 0 TypeToGTNETSKT168 0 TypeToGTNETSKT169 0 TypeToGTNETSKT170
|
||||
INTDATA: 0 TypeToGTNETSKT171 0 TypeToGTNETSKT172 0 TypeToGTNETSKT173 0 TypeToGTNETSKT174 0 TypeToGTNETSKT175
|
||||
CHARDATA: Out50 out50x Out51 out51x Out52 out52x Out53 out53x Out54 out54x
|
||||
CHARDATA: Out55 out55x Out56 out56x Out57 out57x Out58 out58x Out59 out59x
|
||||
CHARDATA: Out60 out60x Out61 out61x Out62 out62x Out63 out63x Out64 out64x
|
||||
CHARDATA: Out65 out65x Out66 out66x Out67 out67x Out68 out68x Out69 out69x
|
||||
CHARDATA: Out70 out70x Out71 out71x Out72 out72x Out73 out73x Out74 out74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT176 0 TypeToGTNETSKT177 0 TypeToGTNETSKT178 0 TypeToGTNETSKT179 0 TypeToGTNETSKT180
|
||||
INTDATA: 0 TypeToGTNETSKT181 0 TypeToGTNETSKT182 0 TypeToGTNETSKT183 0 TypeToGTNETSKT184 0 TypeToGTNETSKT185
|
||||
INTDATA: 0 TypeToGTNETSKT186 0 TypeToGTNETSKT187 0 TypeToGTNETSKT188 0 TypeToGTNETSKT189 0 TypeToGTNETSKT190
|
||||
INTDATA: 0 TypeToGTNETSKT191 0 TypeToGTNETSKT192 0 TypeToGTNETSKT193 0 TypeToGTNETSKT194 0 TypeToGTNETSKT195
|
||||
INTDATA: 0 TypeToGTNETSKT196 0 TypeToGTNETSKT197 0 TypeToGTNETSKT198 0 TypeToGTNETSKT199 0 TypeToGTNETSKT200
|
||||
INTDATA: 0 TypeToGTNETSKT201 0 TypeToGTNETSKT202 0 TypeToGTNETSKT203 0 TypeToGTNETSKT204 0 TypeToGTNETSKT205
|
||||
INTDATA: 0 TypeToGTNETSKT206 0 TypeToGTNETSKT207 0 TypeToGTNETSKT208 0 TypeToGTNETSKT209 0 TypeToGTNETSKT210
|
||||
INTDATA: 0 TypeToGTNETSKT211 0 TypeToGTNETSKT212 0 TypeToGTNETSKT213 0 TypeToGTNETSKT214 0 TypeToGTNETSKT215
|
||||
INTDATA: 0 TypeToGTNETSKT216 0 TypeToGTNETSKT217 0 TypeToGTNETSKT218 0 TypeToGTNETSKT219 0 TypeToGTNETSKT220
|
||||
INTDATA: 0 TypeToGTNETSKT221 0 TypeToGTNETSKT222 0 TypeToGTNETSKT223 0 TypeToGTNETSKT224 0 TypeToGTNETSKT225
|
||||
INTDATA: 0 TypeToGTNETSKT226 0 TypeToGTNETSKT227 0 TypeToGTNETSKT228 0 TypeToGTNETSKT229 0 TypeToGTNETSKT230
|
||||
INTDATA: 0 TypeToGTNETSKT231 0 TypeToGTNETSKT232 0 TypeToGTNETSKT233 0 TypeToGTNETSKT234 0 TypeToGTNETSKT235
|
||||
CHARDATA: Out75 out75x Out76 out76x Out77 out77x Out78 out78x Out79 out79x
|
||||
CHARDATA: Out80 out80x Out81 out81x Out82 out82x Out83 out83x Out84 out84x
|
||||
CHARDATA: Out85 out85x Out86 out86x Out87 out87x Out88 out88x Out89 out89x
|
||||
CHARDATA: Out90 out90x Out91 out91x Out92 out92x Out93 out93x Out94 out94x
|
||||
CHARDATA: Out95 out95x Out96 out96x Out97 out97x Out98 out98x Out99 out99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT236 0 TypeToGTNETSKT237 0 TypeToGTNETSKT238 0 TypeToGTNETSKT239 0 TypeToGTNETSKT240
|
||||
INTDATA: 0 TypeToGTNETSKT241 0 TypeToGTNETSKT242 0 TypeToGTNETSKT243 0 TypeToGTNETSKT244 0 TypeToGTNETSKT245
|
||||
INTDATA: 0 TypeToGTNETSKT246 0 TypeToGTNETSKT247 0 TypeToGTNETSKT248 0 TypeToGTNETSKT249 0 TypeToGTNETSKT250
|
||||
INTDATA: 0 TypeToGTNETSKT251 0 TypeToGTNETSKT252 0 TypeToGTNETSKT253 0 TypeToGTNETSKT254 0 TypeToGTNETSKT255
|
||||
INTDATA: 0 TypeToGTNETSKT256 0 TypeToGTNETSKT257 0 TypeToGTNETSKT258 0 TypeToGTNETSKT259 0 TypeToGTNETSKT260
|
||||
INTDATA: 0 TypeToGTNETSKT261 0 TypeToGTNETSKT262 0 TypeToGTNETSKT263 0 TypeToGTNETSKT264 0 TypeToGTNETSKT265
|
||||
INTDATA: 0 TypeToGTNETSKT266 0 TypeToGTNETSKT267 0 TypeToGTNETSKT268 0 TypeToGTNETSKT269 0 TypeToGTNETSKT270
|
||||
INTDATA: 0 TypeToGTNETSKT271 0 TypeToGTNETSKT272 0 TypeToGTNETSKT273 0 TypeToGTNETSKT274 0 TypeToGTNETSKT275
|
||||
INTDATA: 0 TypeToGTNETSKT276 0 TypeToGTNETSKT277 0 TypeToGTNETSKT278 0 TypeToGTNETSKT279 0 TypeToGTNETSKT280
|
||||
INTDATA: 0 TypeToGTNETSKT281 0 TypeToGTNETSKT282 0 TypeToGTNETSKT283 0 TypeToGTNETSKT284 0 TypeToGTNETSKT285
|
||||
INTDATA: 0 TypeToGTNETSKT286 0 TypeToGTNETSKT287 0 TypeToGTNETSKT288 0 TypeToGTNETSKT289 0 TypeToGTNETSKT290
|
||||
INTDATA: 0 TypeToGTNETSKT291 0 TypeToGTNETSKT292 0 TypeToGTNETSKT293 0 TypeToGTNETSKT294 0 TypeToGTNETSKT295
|
||||
CHARDATA: Out100 out100x Out101 out101x Out102 out102x Out103 out103x Out104 out104x
|
||||
CHARDATA: Out105 out105x Out106 out106x Out107 out107x Out108 out108x Out109 out109x
|
||||
CHARDATA: out110 out110x out111 out111x out112 out112x out113 out113x out114 out114x
|
||||
CHARDATA: out115 out115x out116 out116x out117 out117x out118 out118x out119 out119x
|
||||
CHARDATA: out120 out120x out121 out121x out122 out122x out123 out123x out124 out124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT296 0 TypeToGTNETSKT297 0 TypeToGTNETSKT298 0 TypeToGTNETSKT299 0 TypeFrGTNETSKT0
|
||||
INTDATA: 0 TypeFrGTNETSKT1 0 TypeFrGTNETSKT2 0 TypeFrGTNETSKT3 1 TypeFrGTNETSKT4 0 TypeFrGTNETSKT5
|
||||
INTDATA: 0 TypeFrGTNETSKT6 0 TypeFrGTNETSKT7 0 TypeFrGTNETSKT8 0 TypeFrGTNETSKT9 0 TypeFrGTNETSKT10
|
||||
INTDATA: 0 TypeFrGTNETSKT11 0 TypeFrGTNETSKT12 0 TypeFrGTNETSKT13 0 TypeFrGTNETSKT14 0 TypeFrGTNETSKT15
|
||||
INTDATA: 0 TypeFrGTNETSKT16 0 TypeFrGTNETSKT17 0 TypeFrGTNETSKT18 0 TypeFrGTNETSKT19 0 TypeFrGTNETSKT20
|
||||
INTDATA: 0 TypeFrGTNETSKT21 0 TypeFrGTNETSKT22 0 TypeFrGTNETSKT23 0 TypeFrGTNETSKT24 0 TypeFrGTNETSKT25
|
||||
INTDATA: 0 TypeFrGTNETSKT26 0 TypeFrGTNETSKT27 0 TypeFrGTNETSKT28 0 TypeFrGTNETSKT29 0 TypeFrGTNETSKT30
|
||||
INTDATA: 0 TypeFrGTNETSKT31 0 TypeFrGTNETSKT32 0 TypeFrGTNETSKT33 0 TypeFrGTNETSKT34 0 TypeFrGTNETSKT35
|
||||
INTDATA: 0 TypeFrGTNETSKT36 0 TypeFrGTNETSKT37 0 TypeFrGTNETSKT38 0 TypeFrGTNETSKT39 0 TypeFrGTNETSKT40
|
||||
INTDATA: 0 TypeFrGTNETSKT41 0 TypeFrGTNETSKT42 0 TypeFrGTNETSKT43 0 TypeFrGTNETSKT44 0 TypeFrGTNETSKT45
|
||||
INTDATA: 0 TypeFrGTNETSKT46 0 TypeFrGTNETSKT47 0 TypeFrGTNETSKT48 0 TypeFrGTNETSKT49 0 TypeFrGTNETSKT50
|
||||
INTDATA: 0 TypeFrGTNETSKT51 0 TypeFrGTNETSKT52 0 TypeFrGTNETSKT53 0 TypeFrGTNETSKT54 0 TypeFrGTNETSKT55
|
||||
CHARDATA: out125 out125x out126 out126x out127 out127x out128 out128x out129 out129x
|
||||
CHARDATA: out130 out130x out131 out131x out132 out132x out133 out133x out134 out134x
|
||||
CHARDATA: out135 out135x out136 out136x out137 out137x out138 out138x out139 out139x
|
||||
CHARDATA: out140 out140x out141 out141x out142 out142x out143 out143x out144 out144x
|
||||
CHARDATA: out145 out145x out146 out146x out147 out147x out148 out148x out149 out149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT56 0 TypeFrGTNETSKT57 0 TypeFrGTNETSKT58 0 TypeFrGTNETSKT59 0 TypeFrGTNETSKT60
|
||||
INTDATA: 0 TypeFrGTNETSKT61 0 TypeFrGTNETSKT62 0 TypeFrGTNETSKT63 0 TypeFrGTNETSKT64 0 TypeFrGTNETSKT65
|
||||
INTDATA: 0 TypeFrGTNETSKT66 0 TypeFrGTNETSKT67 0 TypeFrGTNETSKT68 0 TypeFrGTNETSKT69 0 TypeFrGTNETSKT70
|
||||
INTDATA: 0 TypeFrGTNETSKT71 0 TypeFrGTNETSKT72 0 TypeFrGTNETSKT73 0 TypeFrGTNETSKT74 0 TypeFrGTNETSKT75
|
||||
INTDATA: 0 TypeFrGTNETSKT76 0 TypeFrGTNETSKT77 0 TypeFrGTNETSKT78 0 TypeFrGTNETSKT79 0 TypeFrGTNETSKT80
|
||||
INTDATA: 0 TypeFrGTNETSKT81 0 TypeFrGTNETSKT82 0 TypeFrGTNETSKT83 0 TypeFrGTNETSKT84 0 TypeFrGTNETSKT85
|
||||
INTDATA: 0 TypeFrGTNETSKT86 0 TypeFrGTNETSKT87 0 TypeFrGTNETSKT88 0 TypeFrGTNETSKT89 0 TypeFrGTNETSKT90
|
||||
INTDATA: 0 TypeFrGTNETSKT91 0 TypeFrGTNETSKT92 0 TypeFrGTNETSKT93 0 TypeFrGTNETSKT94 0 TypeFrGTNETSKT95
|
||||
INTDATA: 0 TypeFrGTNETSKT96 0 TypeFrGTNETSKT97 0 TypeFrGTNETSKT98 0 TypeFrGTNETSKT99 0 TypeFrGTNETSKT100
|
||||
INTDATA: 0 TypeFrGTNETSKT101 0 TypeFrGTNETSKT102 0 TypeFrGTNETSKT103 0 TypeFrGTNETSKT104 0 TypeFrGTNETSKT105
|
||||
INTDATA: 0 TypeFrGTNETSKT106 0 TypeFrGTNETSKT107 0 TypeFrGTNETSKT108 0 TypeFrGTNETSKT109 0 TypeFrGTNETSKT110
|
||||
INTDATA: 0 TypeFrGTNETSKT111 0 TypeFrGTNETSKT112 0 TypeFrGTNETSKT113 0 TypeFrGTNETSKT114 0 TypeFrGTNETSKT115
|
||||
CHARDATA: out150 out150x out151 out151x out152 out152x out153 out153x out154 out154x
|
||||
CHARDATA: out155 out155x out156 out156x out157 out157x out158 out158x out159 out159x
|
||||
CHARDATA: out160 out160x out161 out161x out162 out162x out163 out163x out164 out164x
|
||||
CHARDATA: out165 out165x out166 out166x out167 out167x out168 out168x out169 out169x
|
||||
CHARDATA: out170 out170x out171 out171x out172 out172x out173 out173x out174 out174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT116 0 TypeFrGTNETSKT117 0 TypeFrGTNETSKT118 0 TypeFrGTNETSKT119 0 TypeFrGTNETSKT120
|
||||
INTDATA: 0 TypeFrGTNETSKT121 0 TypeFrGTNETSKT122 0 TypeFrGTNETSKT123 0 TypeFrGTNETSKT124 0 TypeFrGTNETSKT125
|
||||
INTDATA: 0 TypeFrGTNETSKT126 0 TypeFrGTNETSKT127 0 TypeFrGTNETSKT128 0 TypeFrGTNETSKT129 0 TypeFrGTNETSKT130
|
||||
INTDATA: 0 TypeFrGTNETSKT131 0 TypeFrGTNETSKT132 0 TypeFrGTNETSKT133 0 TypeFrGTNETSKT134 0 TypeFrGTNETSKT135
|
||||
INTDATA: 0 TypeFrGTNETSKT136 0 TypeFrGTNETSKT137 0 TypeFrGTNETSKT138 0 TypeFrGTNETSKT139 0 TypeFrGTNETSKT140
|
||||
INTDATA: 0 TypeFrGTNETSKT141 0 TypeFrGTNETSKT142 0 TypeFrGTNETSKT143 0 TypeFrGTNETSKT144 0 TypeFrGTNETSKT145
|
||||
INTDATA: 0 TypeFrGTNETSKT146 0 TypeFrGTNETSKT147 0 TypeFrGTNETSKT148 0 TypeFrGTNETSKT149 0 TypeFrGTNETSKT150
|
||||
INTDATA: 0 TypeFrGTNETSKT151 0 TypeFrGTNETSKT152 0 TypeFrGTNETSKT153 0 TypeFrGTNETSKT154 0 TypeFrGTNETSKT155
|
||||
INTDATA: 0 TypeFrGTNETSKT156 0 TypeFrGTNETSKT157 0 TypeFrGTNETSKT158 0 TypeFrGTNETSKT159 0 TypeFrGTNETSKT160
|
||||
INTDATA: 0 TypeFrGTNETSKT161 0 TypeFrGTNETSKT162 0 TypeFrGTNETSKT163 0 TypeFrGTNETSKT164 0 TypeFrGTNETSKT165
|
||||
INTDATA: 0 TypeFrGTNETSKT166 0 TypeFrGTNETSKT167 0 TypeFrGTNETSKT168 0 TypeFrGTNETSKT169 0 TypeFrGTNETSKT170
|
||||
INTDATA: 0 TypeFrGTNETSKT171 0 TypeFrGTNETSKT172 0 TypeFrGTNETSKT173 0 TypeFrGTNETSKT174 0 TypeFrGTNETSKT175
|
||||
CHARDATA: out175 out175x out176 out176x out177 out177x out178 out178x out179 out179x
|
||||
CHARDATA: out180 out180x out181 out181x out182 out182x out183 out183x out184 out184x
|
||||
CHARDATA: out185 out185x out186 out186x out187 out187x out188 out188x out189 out189x
|
||||
CHARDATA: out190 out190x out191 out191x out192 out192x out193 out193x out194 out194x
|
||||
CHARDATA: out195 out195x out196 out196x out197 out197x out198 out198x out199 out199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT176 0 TypeFrGTNETSKT177 0 TypeFrGTNETSKT178 0 TypeFrGTNETSKT179 0 TypeFrGTNETSKT180
|
||||
INTDATA: 0 TypeFrGTNETSKT181 0 TypeFrGTNETSKT182 0 TypeFrGTNETSKT183 0 TypeFrGTNETSKT184 0 TypeFrGTNETSKT185
|
||||
INTDATA: 0 TypeFrGTNETSKT186 0 TypeFrGTNETSKT187 0 TypeFrGTNETSKT188 0 TypeFrGTNETSKT189 0 TypeFrGTNETSKT190
|
||||
INTDATA: 0 TypeFrGTNETSKT191 0 TypeFrGTNETSKT192 0 TypeFrGTNETSKT193 0 TypeFrGTNETSKT194 0 TypeFrGTNETSKT195
|
||||
INTDATA: 0 TypeFrGTNETSKT196 0 TypeFrGTNETSKT197 0 TypeFrGTNETSKT198 0 TypeFrGTNETSKT199 0 TypeFrGTNETSKT200
|
||||
INTDATA: 0 TypeFrGTNETSKT201 0 TypeFrGTNETSKT202 0 TypeFrGTNETSKT203 0 TypeFrGTNETSKT204 0 TypeFrGTNETSKT205
|
||||
INTDATA: 0 TypeFrGTNETSKT206 0 TypeFrGTNETSKT207 0 TypeFrGTNETSKT208 0 TypeFrGTNETSKT209 0 TypeFrGTNETSKT210
|
||||
INTDATA: 0 TypeFrGTNETSKT211 0 TypeFrGTNETSKT212 0 TypeFrGTNETSKT213 0 TypeFrGTNETSKT214 0 TypeFrGTNETSKT215
|
||||
INTDATA: 0 TypeFrGTNETSKT216 0 TypeFrGTNETSKT217 0 TypeFrGTNETSKT218 0 TypeFrGTNETSKT219 0 TypeFrGTNETSKT220
|
||||
INTDATA: 0 TypeFrGTNETSKT221 0 TypeFrGTNETSKT222 0 TypeFrGTNETSKT223 0 TypeFrGTNETSKT224 0 TypeFrGTNETSKT225
|
||||
INTDATA: 0 TypeFrGTNETSKT226 0 TypeFrGTNETSKT227 0 TypeFrGTNETSKT228 0 TypeFrGTNETSKT229 0 TypeFrGTNETSKT230
|
||||
INTDATA: 0 TypeFrGTNETSKT231 0 TypeFrGTNETSKT232 0 TypeFrGTNETSKT233 0 TypeFrGTNETSKT234 0 TypeFrGTNETSKT235
|
||||
CHARDATA: Out200 out200x Out201 out201x Out202 out202x Out203 out203x Out204 out204x
|
||||
CHARDATA: Out205 out205x Out206 out206x Out207 out207x Out208 out208x Out209 out209x
|
||||
CHARDATA: out210 out210x out211 out211x out212 out212x out213 out213x out214 out214x
|
||||
CHARDATA: out215 out215x out216 out216x out217 out217x out218 out218x out219 out219x
|
||||
CHARDATA: out220 out220x out221 out221x out222 out222x out223 out223x out224 out224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT236 0 TypeFrGTNETSKT237 0 TypeFrGTNETSKT238 0 TypeFrGTNETSKT239 0 TypeFrGTNETSKT240
|
||||
INTDATA: 0 TypeFrGTNETSKT241 0 TypeFrGTNETSKT242 0 TypeFrGTNETSKT243 0 TypeFrGTNETSKT244 0 TypeFrGTNETSKT245
|
||||
INTDATA: 0 TypeFrGTNETSKT246 0 TypeFrGTNETSKT247 0 TypeFrGTNETSKT248 0 TypeFrGTNETSKT249 0 TypeFrGTNETSKT250
|
||||
INTDATA: 0 TypeFrGTNETSKT251 0 TypeFrGTNETSKT252 0 TypeFrGTNETSKT253 0 TypeFrGTNETSKT254 0 TypeFrGTNETSKT255
|
||||
INTDATA: 0 TypeFrGTNETSKT256 0 TypeFrGTNETSKT257 0 TypeFrGTNETSKT258 0 TypeFrGTNETSKT259 0 TypeFrGTNETSKT260
|
||||
INTDATA: 0 TypeFrGTNETSKT261 0 TypeFrGTNETSKT262 0 TypeFrGTNETSKT263 0 TypeFrGTNETSKT264 0 TypeFrGTNETSKT265
|
||||
INTDATA: 0 TypeFrGTNETSKT266 0 TypeFrGTNETSKT267 0 TypeFrGTNETSKT268 0 TypeFrGTNETSKT269 0 TypeFrGTNETSKT270
|
||||
INTDATA: 0 TypeFrGTNETSKT271 0 TypeFrGTNETSKT272 0 TypeFrGTNETSKT273 0 TypeFrGTNETSKT274 0 TypeFrGTNETSKT275
|
||||
INTDATA: 0 TypeFrGTNETSKT276 0 TypeFrGTNETSKT277 0 TypeFrGTNETSKT278 0 TypeFrGTNETSKT279 0 TypeFrGTNETSKT280
|
||||
INTDATA: 0 TypeFrGTNETSKT281 0 TypeFrGTNETSKT282 0 TypeFrGTNETSKT283 0 TypeFrGTNETSKT284 0 TypeFrGTNETSKT285
|
||||
INTDATA: 0 TypeFrGTNETSKT286 0 TypeFrGTNETSKT287 0 TypeFrGTNETSKT288 0 TypeFrGTNETSKT289 0 TypeFrGTNETSKT290
|
||||
INTDATA: 0 TypeFrGTNETSKT291 0 TypeFrGTNETSKT292 0 TypeFrGTNETSKT293 0 TypeFrGTNETSKT294 0 TypeFrGTNETSKT295
|
||||
CHARDATA: out225 out225x out226 out226x out227 out227x out228 out228x out229 out229x
|
||||
CHARDATA: out230 out230x out231 out231x out232 out232x out233 out233x out234 out234x
|
||||
CHARDATA: out235 out235x out236 out236x out237 out237x out238 out238x out239 out239x
|
||||
CHARDATA: out240 out240x out241 out241x out242 out242x out243 out243x out244 out244x
|
||||
CHARDATA: out245 out245x out246 out246x out247 out247x out248 out248x out249 out249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT296 0 TypeFrGTNETSKT297 0 TypeFrGTNETSKT298 0 TypeFrGTNETSKT299 3 useVersion
|
||||
INTDATA: 134 rem_ip_byte_0 130 rem_ip_byte_1 169 rem_ip_byte_2 31 rem_ip_byte_3 12003 local_udp_tcp_port
|
||||
INTDATA: 12004 remote_udp_tcp_port 0 port_mode 2 DataDirection 0 gtnetSktToFile 0 gtnetSktFromFile
|
||||
CHARDATA: out250 out250x out251 out251x out252 out252x out253 out253x out254 out254x
|
||||
CHARDATA: out255 out255x out256 out256x out257 out257x out258 out258x out259 out259x
|
||||
CHARDATA: out260 out260x out261 out261x out262 out262x out263 out263x out264 out264x
|
||||
CHARDATA: out265 out265x out266 out266x out267 out267x out268 out268x out269 out269x
|
||||
CHARDATA: out270 out270x out271 out271x out272 out272x out273 out273x out274 out274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: out275 out275x out276 out276x out277 out277x out278 out278x out279 out279x
|
||||
CHARDATA: out280 out280x out281 out281x out282 out282x out283 out283x out284 out284x
|
||||
CHARDATA: out285 out285x out286 out286x out287 out287x out288 out288x out289 out289x
|
||||
CHARDATA: out290 out290x out291 out291x out292 out292x out293 out293x out294 out294x
|
||||
CHARDATA: out295 out295x out296 out296x out297 out297x out298 out298x out299 out299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: NoTSin0 in0x NoTSin1 in1x NoTSin2 in2x NoTSin3 in3x NoTSin4 in4x
|
||||
CHARDATA: in5 in5x in6 in6x in7 in7x in8 in8x in9 in9x
|
||||
CHARDATA: in10 in10x in11 in11x in12 in12x in13 in13x in14 in14x
|
||||
CHARDATA: in15 in15x in16 in16x in17 in17x in18 in18x in19 in19x
|
||||
CHARDATA: in20 in20x in21 in21x in22 in22x in23 in23x in24 in24x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in25 in25x in26 in26x in27 in27x in28 in28x in29 in29x
|
||||
CHARDATA: in30 in30x in31 in31x in32 in32x in33 in33x in34 in34x
|
||||
CHARDATA: in35 in35x in36 in36x in37 in37x in38 in38x in39 in39x
|
||||
CHARDATA: in40 in40x in41 in41x in42 in42x in43 in43x in44 in44x
|
||||
CHARDATA: in45 in45x in46 in46x in47 in47x in48 in48x in49 in49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in50 in50x in51 in51x in52 in52x in53 in53x in54 in54x
|
||||
CHARDATA: in55 in55x in56 in56x in57 in57x in58 in58x in59 in59x
|
||||
CHARDATA: in60 in60x in61 in61x in62 in62x in63 in63x in64 in64x
|
||||
CHARDATA: in65 in65x in66 in66x in67 in67x in68 in68x in69 in69x
|
||||
CHARDATA: in70 in70x in71 in71x in72 in72x in73 in73x in74 in74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in75 in75x in76 in76x in77 in77x in78 in78x in79 in79x
|
||||
CHARDATA: in80 in80x in81 in81x in82 in82x in83 in83x in84 in84x
|
||||
CHARDATA: in85 in85x in86 in86x in87 in87x in88 in88x in89 in89x
|
||||
CHARDATA: in90 in90x in91 in91x in92 in92x in93 in93x in94 in94x
|
||||
CHARDATA: in95 in95x in96 in96x in97 in97x in98 in98x in99 in99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in100 in100x in101 in101x in102 in102x in103 in103x in104 in104x
|
||||
CHARDATA: in105 in105x in106 in106x in107 in107x in108 in108x in109 in109x
|
||||
CHARDATA: in110 in110x in111 in111x in112 in112x in113 in113x in114 in114x
|
||||
CHARDATA: in115 in115x in116 in116x in117 in117x in118 in118x in119 in119x
|
||||
CHARDATA: in120 in120x in121 in121x in122 in122x in123 in123x in124 in124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in125 in125x in126 in126x in127 in127x in128 in128x in129 in129x
|
||||
CHARDATA: in130 in130x in131 in131x in132 in132x in133 in133x in134 in134x
|
||||
CHARDATA: in135 in135x in136 in136x in137 in137x in138 in138x in139 in139x
|
||||
CHARDATA: in140 in140x in141 in141x in142 in142x in143 in143x in144 in144x
|
||||
CHARDATA: in145 in145x in146 in146x in147 in147x in148 in148x in149 in149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in150 in150x in151 in151x in152 in152x in153 in153x in154 in154x
|
||||
CHARDATA: in155 in155x in156 in156x in157 in157x in158 in158x in159 in159x
|
||||
CHARDATA: in160 in160x in161 in161x in162 in162x in163 in163x in164 in164x
|
||||
CHARDATA: in165 in165x in166 in166x in167 in167x in168 in168x in169 in169x
|
||||
CHARDATA: in170 in170x in171 in171x in172 in172x in173 in173x in174 in174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in175 in175x in176 in176x in177 in177x in178 in178x in179 in179x
|
||||
CHARDATA: in180 in180x in181 in181x in182 in182x in183 in183x in184 in184x
|
||||
CHARDATA: in185 in185x in186 in186x in187 in187x in188 in188x in189 in189x
|
||||
CHARDATA: in190 in190x in191 in191x in192 in192x in193 in193x in194 in194x
|
||||
CHARDATA: in195 in195x in196 in196x in197 in197x in198 in198x in199 in199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in200 in200x in201 in201x in202 in202x in203 in203x in204 in204x
|
||||
CHARDATA: in205 in205x in206 in206x in207 in207x in208 in208x in209 in209x
|
||||
CHARDATA: in210 in210x in211 in211x in212 in212x in213 in213x in214 in214x
|
||||
CHARDATA: in215 in215x in216 in216x in217 in217x in218 in218x in219 in219x
|
||||
CHARDATA: in220 in220x in221 in221x in222 in222x in223 in223x in224 in224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in225 in225x in226 in226x in227 in227x in228 in228x in229 in229x
|
||||
CHARDATA: in230 in230x in231 in231x in232 in232x in233 in233x in234 in234x
|
||||
CHARDATA: in235 in235x in236 in236x in237 in237x in238 in238x in239 in239x
|
||||
CHARDATA: in240 in240x in241 in241x in242 in242x in243 in243x in244 in244x
|
||||
CHARDATA: in245 in245x in246 in246x in247 in247x in248 in248x in249 in249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in250 in250x in251 in251x in252 in252x in253 in253x in254 in254x
|
||||
CHARDATA: in255 in255x in256 in256x in257 in257x in258 in258x in259 in259x
|
||||
CHARDATA: in260 in260x in261 in261x in262 in262x in263 in263x in264 in264x
|
||||
CHARDATA: in265 in265x in266 in266x in267 in267x in268 in268x in269 in269x
|
||||
CHARDATA: in270 in270x in271 in271x in272 in272x in273 in273x in274 in274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: in275 in275x in276 in276x in277 in277x in278 in278x in279 in279x
|
||||
CHARDATA: in280 in280x in281 in281x in282 in282x in283 in283x in284 in284x
|
||||
CHARDATA: in285 in285x in286 in286x in287 in287x in288 in288x in289 in289x
|
||||
CHARDATA: in290 in290x in291 in291x in292 in292x in293 in293x in294 in294x
|
||||
CHARDATA: in295 in295x in296 in296x in297 in297x in298 in298x in299 in299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 10 0 2 0
|
||||
CHARDATA: GTNETSKT2 Name
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: TIMERC 1 1 11 0 2 0
|
||||
DATA_SIZES: INTDATA=4 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=1
|
||||
INTDATA: 0 Tran 0 SRST 0 RST 0 A
|
||||
INVARS: IT_4 INT START SendData INT STOP _dud_ INT RSTSIG
|
||||
OUTVARS: POINT5 IEEE TIME
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: UPDOWNC 1 1 12 0 2 0
|
||||
INTDATA: 0 Tran 0 RST 0 LIM 10 UL -10 LL
|
||||
INTDATA: 0 INIT 0 A 0 B 0 C
|
||||
INVARS: SendData INT UP IT_3 INT DOWN _dud_ INT RSTSIG _dud_ INT LLINP _dud_ INT ULINP
|
||||
OUTVARS: POINT0 INT COUNT
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
DATA_SIZES: INTDATA=615 FLOATDATA=0 CHARDATA=601 INVARS=1 OUTVARS=5
|
||||
INTDATA: 1 Card 1 Port 5 numVarsToGTNETSKT 5 numVarsFromGTNETSKT 0 TypeToGTNETSKT0
|
||||
INTDATA: 0 TypeToGTNETSKT1 0 TypeToGTNETSKT2 0 TypeToGTNETSKT3 1 TypeToGTNETSKT4 0 TypeToGTNETSKT5
|
||||
INTDATA: 0 TypeToGTNETSKT6 0 TypeToGTNETSKT7 0 TypeToGTNETSKT8 0 TypeToGTNETSKT9 0 TypeToGTNETSKT10
|
||||
INTDATA: 0 TypeToGTNETSKT11 0 TypeToGTNETSKT12 0 TypeToGTNETSKT13 0 TypeToGTNETSKT14 0 TypeToGTNETSKT15
|
||||
INTDATA: 0 TypeToGTNETSKT16 0 TypeToGTNETSKT17 0 TypeToGTNETSKT18 0 TypeToGTNETSKT19 0 TypeToGTNETSKT20
|
||||
INTDATA: 0 TypeToGTNETSKT21 0 TypeToGTNETSKT22 0 TypeToGTNETSKT23 0 TypeToGTNETSKT24 0 TypeToGTNETSKT25
|
||||
INTDATA: 0 TypeToGTNETSKT26 0 TypeToGTNETSKT27 0 TypeToGTNETSKT28 0 TypeToGTNETSKT29 0 TypeToGTNETSKT30
|
||||
INTDATA: 0 TypeToGTNETSKT31 0 TypeToGTNETSKT32 0 TypeToGTNETSKT33 0 TypeToGTNETSKT34 0 TypeToGTNETSKT35
|
||||
INTDATA: 0 TypeToGTNETSKT36 0 TypeToGTNETSKT37 0 TypeToGTNETSKT38 0 TypeToGTNETSKT39 0 TypeToGTNETSKT40
|
||||
INTDATA: 0 TypeToGTNETSKT41 0 TypeToGTNETSKT42 0 TypeToGTNETSKT43 0 TypeToGTNETSKT44 0 TypeToGTNETSKT45
|
||||
INTDATA: 0 TypeToGTNETSKT46 0 TypeToGTNETSKT47 0 TypeToGTNETSKT48 0 TypeToGTNETSKT49 0 TypeToGTNETSKT50
|
||||
INTDATA: 0 TypeToGTNETSKT51 0 TypeToGTNETSKT52 0 TypeToGTNETSKT53 0 TypeToGTNETSKT54 0 TypeToGTNETSKT55
|
||||
CHARDATA: POINT0 out0x CRTSECD out1x CRTNSEC out2x POINT3 out3x POINT4 out4x
|
||||
CHARDATA: POINT5 out5x POINT6 out6x POINT7 out7x POINT8 out8x POINT9 out9x
|
||||
CHARDATA: POINT10 out10x POINT11 out11x POINT12 out12x POINT13 out13x POINT14 out14x
|
||||
CHARDATA: POINT15 out15x POINT16 out16x POINT17 out17x POINT18 out18x POINT19 out19x
|
||||
CHARDATA: POINT20 out20x POINT21 out21x POINT22 out22x POINT23 out23x POINT24 out24x
|
||||
INVARS: SendData INT SendDataFlag
|
||||
OUTVARS: IT_2 INT socketOverflow IT_1 INT gtnetInvMsg rxCnt INT gtnetSktNewDataSeq IT_8 INT gtnetSktNewDataFlag rdyToSen1 INT gtnetSktReadyToSend
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT56 0 TypeToGTNETSKT57 0 TypeToGTNETSKT58 0 TypeToGTNETSKT59 0 TypeToGTNETSKT60
|
||||
INTDATA: 0 TypeToGTNETSKT61 0 TypeToGTNETSKT62 0 TypeToGTNETSKT63 0 TypeToGTNETSKT64 0 TypeToGTNETSKT65
|
||||
INTDATA: 0 TypeToGTNETSKT66 0 TypeToGTNETSKT67 0 TypeToGTNETSKT68 0 TypeToGTNETSKT69 0 TypeToGTNETSKT70
|
||||
INTDATA: 0 TypeToGTNETSKT71 0 TypeToGTNETSKT72 0 TypeToGTNETSKT73 0 TypeToGTNETSKT74 0 TypeToGTNETSKT75
|
||||
INTDATA: 0 TypeToGTNETSKT76 0 TypeToGTNETSKT77 0 TypeToGTNETSKT78 0 TypeToGTNETSKT79 0 TypeToGTNETSKT80
|
||||
INTDATA: 0 TypeToGTNETSKT81 0 TypeToGTNETSKT82 0 TypeToGTNETSKT83 0 TypeToGTNETSKT84 0 TypeToGTNETSKT85
|
||||
INTDATA: 0 TypeToGTNETSKT86 0 TypeToGTNETSKT87 0 TypeToGTNETSKT88 0 TypeToGTNETSKT89 0 TypeToGTNETSKT90
|
||||
INTDATA: 0 TypeToGTNETSKT91 0 TypeToGTNETSKT92 0 TypeToGTNETSKT93 0 TypeToGTNETSKT94 0 TypeToGTNETSKT95
|
||||
INTDATA: 0 TypeToGTNETSKT96 0 TypeToGTNETSKT97 0 TypeToGTNETSKT98 0 TypeToGTNETSKT99 0 TypeToGTNETSKT100
|
||||
INTDATA: 0 TypeToGTNETSKT101 0 TypeToGTNETSKT102 0 TypeToGTNETSKT103 0 TypeToGTNETSKT104 0 TypeToGTNETSKT105
|
||||
INTDATA: 0 TypeToGTNETSKT106 0 TypeToGTNETSKT107 0 TypeToGTNETSKT108 0 TypeToGTNETSKT109 0 TypeToGTNETSKT110
|
||||
INTDATA: 0 TypeToGTNETSKT111 0 TypeToGTNETSKT112 0 TypeToGTNETSKT113 0 TypeToGTNETSKT114 0 TypeToGTNETSKT115
|
||||
CHARDATA: POINT25 out25x POINT26 out26x POINT27 out27x POINT28 out28x POINT29 out29x
|
||||
CHARDATA: POINT30 out30x POINT31 out31x POINT32 out32x POINT33 out33x POINT34 out34x
|
||||
CHARDATA: POINT35 out35x POINT36 out36x POINT37 out37x POINT38 out38x POINT39 out39x
|
||||
CHARDATA: POINT40 out40x POINT41 out41x POINT42 out42x POINT43 out43x POINT44 out44x
|
||||
CHARDATA: POINT45 out45x POINT46 out46x POINT47 out47x POINT48 out48x POINT49 out49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT116 0 TypeToGTNETSKT117 0 TypeToGTNETSKT118 0 TypeToGTNETSKT119 0 TypeToGTNETSKT120
|
||||
INTDATA: 0 TypeToGTNETSKT121 0 TypeToGTNETSKT122 0 TypeToGTNETSKT123 0 TypeToGTNETSKT124 0 TypeToGTNETSKT125
|
||||
INTDATA: 0 TypeToGTNETSKT126 0 TypeToGTNETSKT127 0 TypeToGTNETSKT128 0 TypeToGTNETSKT129 0 TypeToGTNETSKT130
|
||||
INTDATA: 0 TypeToGTNETSKT131 0 TypeToGTNETSKT132 0 TypeToGTNETSKT133 0 TypeToGTNETSKT134 0 TypeToGTNETSKT135
|
||||
INTDATA: 0 TypeToGTNETSKT136 0 TypeToGTNETSKT137 0 TypeToGTNETSKT138 0 TypeToGTNETSKT139 0 TypeToGTNETSKT140
|
||||
INTDATA: 0 TypeToGTNETSKT141 0 TypeToGTNETSKT142 0 TypeToGTNETSKT143 0 TypeToGTNETSKT144 0 TypeToGTNETSKT145
|
||||
INTDATA: 0 TypeToGTNETSKT146 0 TypeToGTNETSKT147 0 TypeToGTNETSKT148 0 TypeToGTNETSKT149 0 TypeToGTNETSKT150
|
||||
INTDATA: 0 TypeToGTNETSKT151 0 TypeToGTNETSKT152 0 TypeToGTNETSKT153 0 TypeToGTNETSKT154 0 TypeToGTNETSKT155
|
||||
INTDATA: 0 TypeToGTNETSKT156 0 TypeToGTNETSKT157 0 TypeToGTNETSKT158 0 TypeToGTNETSKT159 0 TypeToGTNETSKT160
|
||||
INTDATA: 0 TypeToGTNETSKT161 0 TypeToGTNETSKT162 0 TypeToGTNETSKT163 0 TypeToGTNETSKT164 0 TypeToGTNETSKT165
|
||||
INTDATA: 0 TypeToGTNETSKT166 0 TypeToGTNETSKT167 0 TypeToGTNETSKT168 0 TypeToGTNETSKT169 0 TypeToGTNETSKT170
|
||||
INTDATA: 0 TypeToGTNETSKT171 0 TypeToGTNETSKT172 0 TypeToGTNETSKT173 0 TypeToGTNETSKT174 0 TypeToGTNETSKT175
|
||||
CHARDATA: POINT50 out50x POINT51 out51x POINT52 out52x POINT53 out53x POINT54 out54x
|
||||
CHARDATA: POINT55 out55x POINT56 out56x POINT57 out57x POINT58 out58x POINT59 out59x
|
||||
CHARDATA: POINT60 out60x POINT61 out61x POINT62 out62x POINT63 out63x POINT64 out64x
|
||||
CHARDATA: POINT65 out65x POINT66 out66x POINT67 out67x POINT68 out68x POINT69 out69x
|
||||
CHARDATA: POINT70 out70x POINT71 out71x POINT72 out72x POINT73 out73x POINT74 out74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT176 0 TypeToGTNETSKT177 0 TypeToGTNETSKT178 0 TypeToGTNETSKT179 0 TypeToGTNETSKT180
|
||||
INTDATA: 0 TypeToGTNETSKT181 0 TypeToGTNETSKT182 0 TypeToGTNETSKT183 0 TypeToGTNETSKT184 0 TypeToGTNETSKT185
|
||||
INTDATA: 0 TypeToGTNETSKT186 0 TypeToGTNETSKT187 0 TypeToGTNETSKT188 0 TypeToGTNETSKT189 0 TypeToGTNETSKT190
|
||||
INTDATA: 0 TypeToGTNETSKT191 0 TypeToGTNETSKT192 0 TypeToGTNETSKT193 0 TypeToGTNETSKT194 0 TypeToGTNETSKT195
|
||||
INTDATA: 0 TypeToGTNETSKT196 0 TypeToGTNETSKT197 0 TypeToGTNETSKT198 0 TypeToGTNETSKT199 0 TypeToGTNETSKT200
|
||||
INTDATA: 0 TypeToGTNETSKT201 0 TypeToGTNETSKT202 0 TypeToGTNETSKT203 0 TypeToGTNETSKT204 0 TypeToGTNETSKT205
|
||||
INTDATA: 0 TypeToGTNETSKT206 0 TypeToGTNETSKT207 0 TypeToGTNETSKT208 0 TypeToGTNETSKT209 0 TypeToGTNETSKT210
|
||||
INTDATA: 0 TypeToGTNETSKT211 0 TypeToGTNETSKT212 0 TypeToGTNETSKT213 0 TypeToGTNETSKT214 0 TypeToGTNETSKT215
|
||||
INTDATA: 0 TypeToGTNETSKT216 0 TypeToGTNETSKT217 0 TypeToGTNETSKT218 0 TypeToGTNETSKT219 0 TypeToGTNETSKT220
|
||||
INTDATA: 0 TypeToGTNETSKT221 0 TypeToGTNETSKT222 0 TypeToGTNETSKT223 0 TypeToGTNETSKT224 0 TypeToGTNETSKT225
|
||||
INTDATA: 0 TypeToGTNETSKT226 0 TypeToGTNETSKT227 0 TypeToGTNETSKT228 0 TypeToGTNETSKT229 0 TypeToGTNETSKT230
|
||||
INTDATA: 0 TypeToGTNETSKT231 0 TypeToGTNETSKT232 0 TypeToGTNETSKT233 0 TypeToGTNETSKT234 0 TypeToGTNETSKT235
|
||||
CHARDATA: POINT75 out75x POINT76 out76x POINT77 out77x POINT78 out78x POINT79 out79x
|
||||
CHARDATA: POINT80 out80x POINT81 out81x POINT82 out82x POINT83 out83x POINT84 out84x
|
||||
CHARDATA: POINT85 out85x POINT86 out86x POINT87 out87x POINT88 out88x POINT89 out89x
|
||||
CHARDATA: POINT90 out90x POINT91 out91x POINT92 out92x POINT93 out93x POINT94 out94x
|
||||
CHARDATA: POINT95 out95x POINT96 out96x POINT97 out97x POINT98 out98x POINT99 out99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT236 0 TypeToGTNETSKT237 0 TypeToGTNETSKT238 0 TypeToGTNETSKT239 0 TypeToGTNETSKT240
|
||||
INTDATA: 0 TypeToGTNETSKT241 0 TypeToGTNETSKT242 0 TypeToGTNETSKT243 0 TypeToGTNETSKT244 0 TypeToGTNETSKT245
|
||||
INTDATA: 0 TypeToGTNETSKT246 0 TypeToGTNETSKT247 0 TypeToGTNETSKT248 0 TypeToGTNETSKT249 0 TypeToGTNETSKT250
|
||||
INTDATA: 0 TypeToGTNETSKT251 0 TypeToGTNETSKT252 0 TypeToGTNETSKT253 0 TypeToGTNETSKT254 0 TypeToGTNETSKT255
|
||||
INTDATA: 0 TypeToGTNETSKT256 0 TypeToGTNETSKT257 0 TypeToGTNETSKT258 0 TypeToGTNETSKT259 0 TypeToGTNETSKT260
|
||||
INTDATA: 0 TypeToGTNETSKT261 0 TypeToGTNETSKT262 0 TypeToGTNETSKT263 0 TypeToGTNETSKT264 0 TypeToGTNETSKT265
|
||||
INTDATA: 0 TypeToGTNETSKT266 0 TypeToGTNETSKT267 0 TypeToGTNETSKT268 0 TypeToGTNETSKT269 0 TypeToGTNETSKT270
|
||||
INTDATA: 0 TypeToGTNETSKT271 0 TypeToGTNETSKT272 0 TypeToGTNETSKT273 0 TypeToGTNETSKT274 0 TypeToGTNETSKT275
|
||||
INTDATA: 0 TypeToGTNETSKT276 0 TypeToGTNETSKT277 0 TypeToGTNETSKT278 0 TypeToGTNETSKT279 0 TypeToGTNETSKT280
|
||||
INTDATA: 0 TypeToGTNETSKT281 0 TypeToGTNETSKT282 0 TypeToGTNETSKT283 0 TypeToGTNETSKT284 0 TypeToGTNETSKT285
|
||||
INTDATA: 0 TypeToGTNETSKT286 0 TypeToGTNETSKT287 0 TypeToGTNETSKT288 0 TypeToGTNETSKT289 0 TypeToGTNETSKT290
|
||||
INTDATA: 0 TypeToGTNETSKT291 0 TypeToGTNETSKT292 0 TypeToGTNETSKT293 0 TypeToGTNETSKT294 0 TypeToGTNETSKT295
|
||||
CHARDATA: POINT100 out100x POINT101 out101x POINT102 out102x POINT103 out103x POINT104 out104x
|
||||
CHARDATA: POINT105 out105x POINT106 out106x POINT107 out107x POINT108 out108x POINT109 out109x
|
||||
CHARDATA: POINT110 out110x POINT111 out111x POINT112 out112x POINT113 out113x POINT114 out114x
|
||||
CHARDATA: POINT115 out115x POINT116 out116x POINT117 out117x POINT118 out118x POINT119 out119x
|
||||
CHARDATA: POINT120 out120x POINT121 out121x POINT122 out122x POINT123 out123x POINT124 out124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeToGTNETSKT296 0 TypeToGTNETSKT297 0 TypeToGTNETSKT298 0 TypeToGTNETSKT299 0 TypeFrGTNETSKT0
|
||||
INTDATA: 0 TypeFrGTNETSKT1 0 TypeFrGTNETSKT2 0 TypeFrGTNETSKT3 1 TypeFrGTNETSKT4 0 TypeFrGTNETSKT5
|
||||
INTDATA: 0 TypeFrGTNETSKT6 0 TypeFrGTNETSKT7 0 TypeFrGTNETSKT8 0 TypeFrGTNETSKT9 0 TypeFrGTNETSKT10
|
||||
INTDATA: 0 TypeFrGTNETSKT11 0 TypeFrGTNETSKT12 0 TypeFrGTNETSKT13 0 TypeFrGTNETSKT14 0 TypeFrGTNETSKT15
|
||||
INTDATA: 0 TypeFrGTNETSKT16 0 TypeFrGTNETSKT17 0 TypeFrGTNETSKT18 0 TypeFrGTNETSKT19 0 TypeFrGTNETSKT20
|
||||
INTDATA: 0 TypeFrGTNETSKT21 0 TypeFrGTNETSKT22 0 TypeFrGTNETSKT23 0 TypeFrGTNETSKT24 0 TypeFrGTNETSKT25
|
||||
INTDATA: 0 TypeFrGTNETSKT26 0 TypeFrGTNETSKT27 0 TypeFrGTNETSKT28 0 TypeFrGTNETSKT29 0 TypeFrGTNETSKT30
|
||||
INTDATA: 0 TypeFrGTNETSKT31 0 TypeFrGTNETSKT32 0 TypeFrGTNETSKT33 0 TypeFrGTNETSKT34 0 TypeFrGTNETSKT35
|
||||
INTDATA: 0 TypeFrGTNETSKT36 0 TypeFrGTNETSKT37 0 TypeFrGTNETSKT38 0 TypeFrGTNETSKT39 0 TypeFrGTNETSKT40
|
||||
INTDATA: 0 TypeFrGTNETSKT41 0 TypeFrGTNETSKT42 0 TypeFrGTNETSKT43 0 TypeFrGTNETSKT44 0 TypeFrGTNETSKT45
|
||||
INTDATA: 0 TypeFrGTNETSKT46 0 TypeFrGTNETSKT47 0 TypeFrGTNETSKT48 0 TypeFrGTNETSKT49 0 TypeFrGTNETSKT50
|
||||
INTDATA: 0 TypeFrGTNETSKT51 0 TypeFrGTNETSKT52 0 TypeFrGTNETSKT53 0 TypeFrGTNETSKT54 0 TypeFrGTNETSKT55
|
||||
CHARDATA: POINT125 out125x POINT126 out126x POINT127 out127x POINT128 out128x POINT129 out129x
|
||||
CHARDATA: POINT130 out130x POINT131 out131x POINT132 out132x POINT133 out133x POINT134 out134x
|
||||
CHARDATA: POINT135 out135x POINT136 out136x POINT137 out137x POINT138 out138x POINT139 out139x
|
||||
CHARDATA: POINT140 out140x POINT141 out141x POINT142 out142x POINT143 out143x POINT144 out144x
|
||||
CHARDATA: POINT145 out145x POINT146 out146x POINT147 out147x POINT148 out148x POINT149 out149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT56 0 TypeFrGTNETSKT57 0 TypeFrGTNETSKT58 0 TypeFrGTNETSKT59 0 TypeFrGTNETSKT60
|
||||
INTDATA: 0 TypeFrGTNETSKT61 0 TypeFrGTNETSKT62 0 TypeFrGTNETSKT63 0 TypeFrGTNETSKT64 0 TypeFrGTNETSKT65
|
||||
INTDATA: 0 TypeFrGTNETSKT66 0 TypeFrGTNETSKT67 0 TypeFrGTNETSKT68 0 TypeFrGTNETSKT69 0 TypeFrGTNETSKT70
|
||||
INTDATA: 0 TypeFrGTNETSKT71 0 TypeFrGTNETSKT72 0 TypeFrGTNETSKT73 0 TypeFrGTNETSKT74 0 TypeFrGTNETSKT75
|
||||
INTDATA: 0 TypeFrGTNETSKT76 0 TypeFrGTNETSKT77 0 TypeFrGTNETSKT78 0 TypeFrGTNETSKT79 0 TypeFrGTNETSKT80
|
||||
INTDATA: 0 TypeFrGTNETSKT81 0 TypeFrGTNETSKT82 0 TypeFrGTNETSKT83 0 TypeFrGTNETSKT84 0 TypeFrGTNETSKT85
|
||||
INTDATA: 0 TypeFrGTNETSKT86 0 TypeFrGTNETSKT87 0 TypeFrGTNETSKT88 0 TypeFrGTNETSKT89 0 TypeFrGTNETSKT90
|
||||
INTDATA: 0 TypeFrGTNETSKT91 0 TypeFrGTNETSKT92 0 TypeFrGTNETSKT93 0 TypeFrGTNETSKT94 0 TypeFrGTNETSKT95
|
||||
INTDATA: 0 TypeFrGTNETSKT96 0 TypeFrGTNETSKT97 0 TypeFrGTNETSKT98 0 TypeFrGTNETSKT99 0 TypeFrGTNETSKT100
|
||||
INTDATA: 0 TypeFrGTNETSKT101 0 TypeFrGTNETSKT102 0 TypeFrGTNETSKT103 0 TypeFrGTNETSKT104 0 TypeFrGTNETSKT105
|
||||
INTDATA: 0 TypeFrGTNETSKT106 0 TypeFrGTNETSKT107 0 TypeFrGTNETSKT108 0 TypeFrGTNETSKT109 0 TypeFrGTNETSKT110
|
||||
INTDATA: 0 TypeFrGTNETSKT111 0 TypeFrGTNETSKT112 0 TypeFrGTNETSKT113 0 TypeFrGTNETSKT114 0 TypeFrGTNETSKT115
|
||||
CHARDATA: POINT150 out150x POINT151 out151x POINT152 out152x POINT153 out153x POINT154 out154x
|
||||
CHARDATA: POINT155 out155x POINT156 out156x POINT157 out157x POINT158 out158x POINT159 out159x
|
||||
CHARDATA: POINT160 out160x POINT161 out161x POINT162 out162x POINT163 out163x POINT164 out164x
|
||||
CHARDATA: POINT165 out165x POINT166 out166x POINT167 out167x POINT168 out168x POINT169 out169x
|
||||
CHARDATA: POINT170 out170x POINT171 out171x POINT172 out172x POINT173 out173x POINT174 out174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT116 0 TypeFrGTNETSKT117 0 TypeFrGTNETSKT118 0 TypeFrGTNETSKT119 0 TypeFrGTNETSKT120
|
||||
INTDATA: 0 TypeFrGTNETSKT121 0 TypeFrGTNETSKT122 0 TypeFrGTNETSKT123 0 TypeFrGTNETSKT124 0 TypeFrGTNETSKT125
|
||||
INTDATA: 0 TypeFrGTNETSKT126 0 TypeFrGTNETSKT127 0 TypeFrGTNETSKT128 0 TypeFrGTNETSKT129 0 TypeFrGTNETSKT130
|
||||
INTDATA: 0 TypeFrGTNETSKT131 0 TypeFrGTNETSKT132 0 TypeFrGTNETSKT133 0 TypeFrGTNETSKT134 0 TypeFrGTNETSKT135
|
||||
INTDATA: 0 TypeFrGTNETSKT136 0 TypeFrGTNETSKT137 0 TypeFrGTNETSKT138 0 TypeFrGTNETSKT139 0 TypeFrGTNETSKT140
|
||||
INTDATA: 0 TypeFrGTNETSKT141 0 TypeFrGTNETSKT142 0 TypeFrGTNETSKT143 0 TypeFrGTNETSKT144 0 TypeFrGTNETSKT145
|
||||
INTDATA: 0 TypeFrGTNETSKT146 0 TypeFrGTNETSKT147 0 TypeFrGTNETSKT148 0 TypeFrGTNETSKT149 0 TypeFrGTNETSKT150
|
||||
INTDATA: 0 TypeFrGTNETSKT151 0 TypeFrGTNETSKT152 0 TypeFrGTNETSKT153 0 TypeFrGTNETSKT154 0 TypeFrGTNETSKT155
|
||||
INTDATA: 0 TypeFrGTNETSKT156 0 TypeFrGTNETSKT157 0 TypeFrGTNETSKT158 0 TypeFrGTNETSKT159 0 TypeFrGTNETSKT160
|
||||
INTDATA: 0 TypeFrGTNETSKT161 0 TypeFrGTNETSKT162 0 TypeFrGTNETSKT163 0 TypeFrGTNETSKT164 0 TypeFrGTNETSKT165
|
||||
INTDATA: 0 TypeFrGTNETSKT166 0 TypeFrGTNETSKT167 0 TypeFrGTNETSKT168 0 TypeFrGTNETSKT169 0 TypeFrGTNETSKT170
|
||||
INTDATA: 0 TypeFrGTNETSKT171 0 TypeFrGTNETSKT172 0 TypeFrGTNETSKT173 0 TypeFrGTNETSKT174 0 TypeFrGTNETSKT175
|
||||
CHARDATA: POINT175 out175x POINT176 out176x POINT177 out177x POINT178 out178x POINT179 out179x
|
||||
CHARDATA: POINT180 out180x POINT181 out181x POINT182 out182x POINT183 out183x POINT184 out184x
|
||||
CHARDATA: POINT185 out185x POINT186 out186x POINT187 out187x POINT188 out188x POINT189 out189x
|
||||
CHARDATA: POINT190 out190x POINT191 out191x POINT192 out192x POINT193 out193x POINT194 out194x
|
||||
CHARDATA: POINT195 out195x POINT196 out196x POINT197 out197x POINT198 out198x POINT199 out199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT176 0 TypeFrGTNETSKT177 0 TypeFrGTNETSKT178 0 TypeFrGTNETSKT179 0 TypeFrGTNETSKT180
|
||||
INTDATA: 0 TypeFrGTNETSKT181 0 TypeFrGTNETSKT182 0 TypeFrGTNETSKT183 0 TypeFrGTNETSKT184 0 TypeFrGTNETSKT185
|
||||
INTDATA: 0 TypeFrGTNETSKT186 0 TypeFrGTNETSKT187 0 TypeFrGTNETSKT188 0 TypeFrGTNETSKT189 0 TypeFrGTNETSKT190
|
||||
INTDATA: 0 TypeFrGTNETSKT191 0 TypeFrGTNETSKT192 0 TypeFrGTNETSKT193 0 TypeFrGTNETSKT194 0 TypeFrGTNETSKT195
|
||||
INTDATA: 0 TypeFrGTNETSKT196 0 TypeFrGTNETSKT197 0 TypeFrGTNETSKT198 0 TypeFrGTNETSKT199 0 TypeFrGTNETSKT200
|
||||
INTDATA: 0 TypeFrGTNETSKT201 0 TypeFrGTNETSKT202 0 TypeFrGTNETSKT203 0 TypeFrGTNETSKT204 0 TypeFrGTNETSKT205
|
||||
INTDATA: 0 TypeFrGTNETSKT206 0 TypeFrGTNETSKT207 0 TypeFrGTNETSKT208 0 TypeFrGTNETSKT209 0 TypeFrGTNETSKT210
|
||||
INTDATA: 0 TypeFrGTNETSKT211 0 TypeFrGTNETSKT212 0 TypeFrGTNETSKT213 0 TypeFrGTNETSKT214 0 TypeFrGTNETSKT215
|
||||
INTDATA: 0 TypeFrGTNETSKT216 0 TypeFrGTNETSKT217 0 TypeFrGTNETSKT218 0 TypeFrGTNETSKT219 0 TypeFrGTNETSKT220
|
||||
INTDATA: 0 TypeFrGTNETSKT221 0 TypeFrGTNETSKT222 0 TypeFrGTNETSKT223 0 TypeFrGTNETSKT224 0 TypeFrGTNETSKT225
|
||||
INTDATA: 0 TypeFrGTNETSKT226 0 TypeFrGTNETSKT227 0 TypeFrGTNETSKT228 0 TypeFrGTNETSKT229 0 TypeFrGTNETSKT230
|
||||
INTDATA: 0 TypeFrGTNETSKT231 0 TypeFrGTNETSKT232 0 TypeFrGTNETSKT233 0 TypeFrGTNETSKT234 0 TypeFrGTNETSKT235
|
||||
CHARDATA: POINT200 out200x POINT201 out201x POINT202 out202x POINT203 out203x POINT204 out204x
|
||||
CHARDATA: POINT205 out205x POINT206 out206x POINT207 out207x POINT208 out208x POINT209 out209x
|
||||
CHARDATA: POINT210 out210x POINT211 out211x POINT212 out212x POINT213 out213x POINT214 out214x
|
||||
CHARDATA: POINT215 out215x POINT216 out216x POINT217 out217x POINT218 out218x POINT219 out219x
|
||||
CHARDATA: POINT220 out220x POINT221 out221x POINT222 out222x POINT223 out223x POINT224 out224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT236 0 TypeFrGTNETSKT237 0 TypeFrGTNETSKT238 0 TypeFrGTNETSKT239 0 TypeFrGTNETSKT240
|
||||
INTDATA: 0 TypeFrGTNETSKT241 0 TypeFrGTNETSKT242 0 TypeFrGTNETSKT243 0 TypeFrGTNETSKT244 0 TypeFrGTNETSKT245
|
||||
INTDATA: 0 TypeFrGTNETSKT246 0 TypeFrGTNETSKT247 0 TypeFrGTNETSKT248 0 TypeFrGTNETSKT249 0 TypeFrGTNETSKT250
|
||||
INTDATA: 0 TypeFrGTNETSKT251 0 TypeFrGTNETSKT252 0 TypeFrGTNETSKT253 0 TypeFrGTNETSKT254 0 TypeFrGTNETSKT255
|
||||
INTDATA: 0 TypeFrGTNETSKT256 0 TypeFrGTNETSKT257 0 TypeFrGTNETSKT258 0 TypeFrGTNETSKT259 0 TypeFrGTNETSKT260
|
||||
INTDATA: 0 TypeFrGTNETSKT261 0 TypeFrGTNETSKT262 0 TypeFrGTNETSKT263 0 TypeFrGTNETSKT264 0 TypeFrGTNETSKT265
|
||||
INTDATA: 0 TypeFrGTNETSKT266 0 TypeFrGTNETSKT267 0 TypeFrGTNETSKT268 0 TypeFrGTNETSKT269 0 TypeFrGTNETSKT270
|
||||
INTDATA: 0 TypeFrGTNETSKT271 0 TypeFrGTNETSKT272 0 TypeFrGTNETSKT273 0 TypeFrGTNETSKT274 0 TypeFrGTNETSKT275
|
||||
INTDATA: 0 TypeFrGTNETSKT276 0 TypeFrGTNETSKT277 0 TypeFrGTNETSKT278 0 TypeFrGTNETSKT279 0 TypeFrGTNETSKT280
|
||||
INTDATA: 0 TypeFrGTNETSKT281 0 TypeFrGTNETSKT282 0 TypeFrGTNETSKT283 0 TypeFrGTNETSKT284 0 TypeFrGTNETSKT285
|
||||
INTDATA: 0 TypeFrGTNETSKT286 0 TypeFrGTNETSKT287 0 TypeFrGTNETSKT288 0 TypeFrGTNETSKT289 0 TypeFrGTNETSKT290
|
||||
INTDATA: 0 TypeFrGTNETSKT291 0 TypeFrGTNETSKT292 0 TypeFrGTNETSKT293 0 TypeFrGTNETSKT294 0 TypeFrGTNETSKT295
|
||||
CHARDATA: POINT225 out225x POINT226 out226x POINT227 out227x POINT228 out228x POINT229 out229x
|
||||
CHARDATA: POINT230 out230x POINT231 out231x POINT232 out232x POINT233 out233x POINT234 out234x
|
||||
CHARDATA: POINT235 out235x POINT236 out236x POINT237 out237x POINT238 out238x POINT239 out239x
|
||||
CHARDATA: POINT240 out240x POINT241 out241x POINT242 out242x POINT243 out243x POINT244 out244x
|
||||
CHARDATA: POINT245 out245x POINT246 out246x POINT247 out247x POINT248 out248x POINT249 out249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
INTDATA: 0 TypeFrGTNETSKT296 0 TypeFrGTNETSKT297 0 TypeFrGTNETSKT298 0 TypeFrGTNETSKT299 3 useVersion
|
||||
INTDATA: 134 rem_ip_byte_0 130 rem_ip_byte_1 169 rem_ip_byte_2 31 rem_ip_byte_3 12001 local_udp_tcp_port
|
||||
INTDATA: 12002 remote_udp_tcp_port 0 port_mode 2 DataDirection 0 gtnetSktToFile 0 gtnetSktFromFile
|
||||
CHARDATA: POINT250 out250x POINT251 out251x POINT252 out252x POINT253 out253x POINT254 out254x
|
||||
CHARDATA: POINT255 out255x POINT256 out256x POINT257 out257x POINT258 out258x POINT259 out259x
|
||||
CHARDATA: POINT260 out260x POINT261 out261x POINT262 out262x POINT263 out263x POINT264 out264x
|
||||
CHARDATA: POINT265 out265x POINT266 out266x POINT267 out267x POINT268 out268x POINT269 out269x
|
||||
CHARDATA: POINT270 out270x POINT271 out271x POINT272 out272x POINT273 out273x POINT274 out274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT275 out275x POINT276 out276x POINT277 out277x POINT278 out278x POINT279 out279x
|
||||
CHARDATA: POINT280 out280x POINT281 out281x POINT282 out282x POINT283 out283x POINT284 out284x
|
||||
CHARDATA: POINT285 out285x POINT286 out286x POINT287 out287x POINT288 out288x POINT289 out289x
|
||||
CHARDATA: POINT290 out290x POINT291 out291x POINT292 out292x POINT293 out293x POINT294 out294x
|
||||
CHARDATA: POINT295 out295x POINT296 out296x POINT297 out297x POINT298 out298x POINT299 out299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINTIn0 in0x ts2sec in1x ts2nsec in2x POINTin3 in3x POINTin4 in4x
|
||||
CHARDATA: POINT5 in5x POINT6 in6x POINT7 in7x POINT8 in8x POINT9 in9x
|
||||
CHARDATA: POINT10 in10x POINT11 in11x POINT12 in12x POINT13 in13x POINT14 in14x
|
||||
CHARDATA: POINT15 in15x POINT16 in16x POINT17 in17x POINT18 in18x POINT19 in19x
|
||||
CHARDATA: POINT20 in20x POINT21 in21x POINT22 in22x POINT23 in23x POINT24 in24x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT25 in25x POINT26 in26x POINT27 in27x POINT28 in28x POINT29 in29x
|
||||
CHARDATA: POINT30 in30x POINT31 in31x POINT32 in32x POINT33 in33x POINT34 in34x
|
||||
CHARDATA: POINT35 in35x POINT36 in36x POINT37 in37x POINT38 in38x POINT39 in39x
|
||||
CHARDATA: POINT40 in40x POINT41 in41x POINT42 in42x POINT43 in43x POINT44 in44x
|
||||
CHARDATA: POINT45 in45x POINT46 in46x POINT47 in47x POINT48 in48x POINT49 in49x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT50 in50x POINT51 in51x POINT52 in52x POINT53 in53x POINT54 in54x
|
||||
CHARDATA: POINT55 in55x POINT56 in56x POINT57 in57x POINT58 in58x POINT59 in59x
|
||||
CHARDATA: POINT60 in60x POINT61 in61x POINT62 in62x POINT63 in63x POINT64 in64x
|
||||
CHARDATA: POINT65 in65x POINT66 in66x POINT67 in67x POINT68 in68x POINT69 in69x
|
||||
CHARDATA: POINT70 in70x POINT71 in71x POINT72 in72x POINT73 in73x POINT74 in74x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT75 in75x POINT76 in76x POINT77 in77x POINT78 in78x POINT79 in79x
|
||||
CHARDATA: POINT80 in80x POINT81 in81x POINT82 in82x POINT83 in83x POINT84 in84x
|
||||
CHARDATA: POINT85 in85x POINT86 in86x POINT87 in87x POINT88 in88x POINT89 in89x
|
||||
CHARDATA: POINT90 in90x POINT91 in91x POINT92 in92x POINT93 in93x POINT94 in94x
|
||||
CHARDATA: POINT95 in95x POINT96 in96x POINT97 in97x POINT98 in98x POINT99 in99x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT100 in100x POINT101 in101x POINT102 in102x POINT103 in103x POINT104 in104x
|
||||
CHARDATA: POINT105 in105x POINT106 in106x POINT107 in107x POINT108 in108x POINT109 in109x
|
||||
CHARDATA: POINT110 in110x POINT111 in111x POINT112 in112x POINT113 in113x POINT114 in114x
|
||||
CHARDATA: POINT115 in115x POINT116 in116x POINT117 in117x POINT118 in118x POINT119 in119x
|
||||
CHARDATA: POINT120 in120x POINT121 in121x POINT122 in122x POINT123 in123x POINT124 in124x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT125 in125x POINT126 in126x POINT127 in127x POINT128 in128x POINT129 in129x
|
||||
CHARDATA: POINT130 in130x POINT131 in131x POINT132 in132x POINT133 in133x POINT134 in134x
|
||||
CHARDATA: POINT135 in135x POINT136 in136x POINT137 in137x POINT138 in138x POINT139 in139x
|
||||
CHARDATA: POINT140 in140x POINT141 in141x POINT142 in142x POINT143 in143x POINT144 in144x
|
||||
CHARDATA: POINT145 in145x POINT146 in146x POINT147 in147x POINT148 in148x POINT149 in149x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT150 in150x POINT151 in151x POINT152 in152x POINT153 in153x POINT154 in154x
|
||||
CHARDATA: POINT155 in155x POINT156 in156x POINT157 in157x POINT158 in158x POINT159 in159x
|
||||
CHARDATA: POINT160 in160x POINT161 in161x POINT162 in162x POINT163 in163x POINT164 in164x
|
||||
CHARDATA: POINT165 in165x POINT166 in166x POINT167 in167x POINT168 in168x POINT169 in169x
|
||||
CHARDATA: POINT170 in170x POINT171 in171x POINT172 in172x POINT173 in173x POINT174 in174x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT175 in175x POINT176 in176x POINT177 in177x POINT178 in178x POINT179 in179x
|
||||
CHARDATA: POINT180 in180x POINT181 in181x POINT182 in182x POINT183 in183x POINT184 in184x
|
||||
CHARDATA: POINT185 in185x POINT186 in186x POINT187 in187x POINT188 in188x POINT189 in189x
|
||||
CHARDATA: POINT190 in190x POINT191 in191x POINT192 in192x POINT193 in193x POINT194 in194x
|
||||
CHARDATA: POINT195 in195x POINT196 in196x POINT197 in197x POINT198 in198x POINT199 in199x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT200 in200x POINT201 in201x POINT202 in202x POINT203 in203x POINT204 in204x
|
||||
CHARDATA: POINT205 in205x POINT206 in206x POINT207 in207x POINT208 in208x POINT209 in209x
|
||||
CHARDATA: POINT210 in210x POINT211 in211x POINT212 in212x POINT213 in213x POINT214 in214x
|
||||
CHARDATA: POINT215 in215x POINT216 in216x POINT217 in217x POINT218 in218x POINT219 in219x
|
||||
CHARDATA: POINT220 in220x POINT221 in221x POINT222 in222x POINT223 in223x POINT224 in224x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT225 in225x POINT226 in226x POINT227 in227x POINT228 in228x POINT229 in229x
|
||||
CHARDATA: POINT230 in230x POINT231 in231x POINT232 in232x POINT233 in233x POINT234 in234x
|
||||
CHARDATA: POINT235 in235x POINT236 in236x POINT237 in237x POINT238 in238x POINT239 in239x
|
||||
CHARDATA: POINT240 in240x POINT241 in241x POINT242 in242x POINT243 in243x POINT244 in244x
|
||||
CHARDATA: POINT245 in245x POINT246 in246x POINT247 in247x POINT248 in248x POINT249 in249x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT250 in250x POINT251 in251x POINT252 in252x POINT253 in253x POINT254 in254x
|
||||
CHARDATA: POINT255 in255x POINT256 in256x POINT257 in257x POINT258 in258x POINT259 in259x
|
||||
CHARDATA: POINT260 in260x POINT261 in261x POINT262 in262x POINT263 in263x POINT264 in264x
|
||||
CHARDATA: POINT265 in265x POINT266 in266x POINT267 in267x POINT268 in268x POINT269 in269x
|
||||
CHARDATA: POINT270 in270x POINT271 in271x POINT272 in272x POINT273 in273x POINT274 in274x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: POINT275 in275x POINT276 in276x POINT277 in277x POINT278 in278x POINT279 in279x
|
||||
CHARDATA: POINT280 in280x POINT281 in281x POINT282 in282x POINT283 in283x POINT284 in284x
|
||||
CHARDATA: POINT285 in285x POINT286 in286x POINT287 in287x POINT288 in288x POINT289 in289x
|
||||
CHARDATA: POINT290 in290x POINT291 in291x POINT292 in292x POINT293 in293x POINT294 in294x
|
||||
CHARDATA: POINT295 in295x POINT296 in296x POINT297 in297x POINT298 in298x POINT299 in299x
|
||||
END
|
||||
RTDS.CTL.RISC_DUD
|
||||
COMP: gtnetskt 1 1 13 0 2 0
|
||||
CHARDATA: GTNETSKT1 Name
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: dtdel_cb 1 1 14 0 2 8
|
||||
INTDATA: 0 IorF
|
||||
INVARS: IT_8 INT INP_i _dud_ IEEE INP_r
|
||||
OUTVARS: IT_g INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: dtdel_cb 1 1 15 0 2 8
|
||||
INTDATA: 0 IorF
|
||||
INVARS: IT_9 INT INP_i _dud_ IEEE INP_r
|
||||
OUTVARS: IT_a INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sh_A 1 1 16 0 2 0
|
||||
DATA_SIZES: INTDATA=3 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=2
|
||||
INTDATA: 0 IorF 1 SH 1 cmv
|
||||
INVARS: IT_c INT INP1_i _dud_ IEEE INP1_r IT_a INT INP2
|
||||
OUTVARS: OnewaySec INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sh_A 1 1 17 0 2 0
|
||||
DATA_SIZES: INTDATA=3 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=2
|
||||
INTDATA: 0 IorF 1 SH 1 cmv
|
||||
INVARS: IT_b INT INP1_i _dud_ IEEE INP1_r IT_a INT INP2
|
||||
OUTVARS: OnewayNSec INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sh_A 1 1 18 0 2 0
|
||||
DATA_SIZES: INTDATA=3 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=2
|
||||
INTDATA: 0 IorF 1 SH 1 cmv
|
||||
INVARS: IT_h INT INP1_i _dud_ IEEE INP1_r IT_g INT INP2
|
||||
OUTVARS: RTTnsec1 INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sh_A 1 1 19 0 2 0
|
||||
DATA_SIZES: INTDATA=3 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=2
|
||||
INTDATA: 0 IorF 1 SH 1 cmv
|
||||
INVARS: IT_f INT INP1_i _dud_ IEEE INP1_r IT_g INT INP2
|
||||
OUTVARS: RTTsec1 INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sh_A 1 1 20 0 2 0
|
||||
DATA_SIZES: INTDATA=3 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=2
|
||||
INTDATA: 0 IorF 1 SH 1 cmv
|
||||
INVARS: IT_e INT INP1_i _dud_ IEEE INP1_r IT_a INT INP2
|
||||
OUTVARS: RTTsec2 INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
RTDS.CTL.RISC_CMODEL
|
||||
COMP: sh_A 1 1 21 0 2 0
|
||||
DATA_SIZES: INTDATA=3 FLOATDATA=0 CHARDATA=0 INVARS=3 OUTVARS=2
|
||||
INTDATA: 0 IorF 1 SH 1 cmv
|
||||
INVARS: IT_d INT INP1_i _dud_ IEEE INP1_r IT_a INT INP2
|
||||
OUTVARS: RTTnsec2 INT OUT_i _dud_ IEEE OUT_r
|
||||
END
|
||||
999 /End of Valve-group section
|
||||
C ===================================================================================
|
||||
C
|
||||
C =====================================================================================
|
||||
C
|
||||
C Model data
|
||||
C
|
||||
C =====================================================================================
|
||||
CRtdspcpp Variable VarType="StringVar" Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
|
@ -1,73 +0,0 @@
|
|||
CASE: Test Circuit
|
||||
Delt: 50.000000 us
|
||||
Rack: 7 NoRealTime: 0
|
||||
|
||||
Output Desc="SendData" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200418
|
||||
Output Desc="txCnt" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=20041C
|
||||
Output Desc="rxCnt2" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200420
|
||||
Output Desc="rdyTosend2" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200424
|
||||
Output Desc="NoTSin0" Group="Subsystem #1|GTNETSKT|GTNETSKT2" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200428
|
||||
Output Desc="NoTSin1" Group="Subsystem #1|GTNETSKT|GTNETSKT2" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=20042C
|
||||
Output Desc="NoTSin2" Group="Subsystem #1|GTNETSKT|GTNETSKT2" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200430
|
||||
Output Desc="NoTSin3" Group="Subsystem #1|GTNETSKT|GTNETSKT2" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200434
|
||||
Output Desc="NoTSin4" Group="Subsystem #1|GTNETSKT|GTNETSKT2" Units="units" Type=IEEE Min=0.0000 Max=1.0000 Rack=7 Adr=200438
|
||||
Output Desc="POINT5" Group="Subsystem #1|CTLs|Vars" Units=" " Type=IEEE Min=0.0000 Max=1.0000 Rack=7 Adr=20043C
|
||||
Output Desc="POINT0" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200440
|
||||
Output Desc="rxCnt" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200444
|
||||
Output Desc="rdyToSen1" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200448
|
||||
Output Desc="POINTIn0" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=20044C
|
||||
Output Desc="ts2sec" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200450
|
||||
Output Desc="ts2nsec" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200454
|
||||
Output Desc="POINTin3" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=INT Min=0 Max=1 Rack=7 Adr=200458
|
||||
Output Desc="POINTin4" Group="Subsystem #1|GTNETSKT|GTNETSKT1" Units="units" Type=IEEE Min=0.0000 Max=1.0000 Rack=7 Adr=20045C
|
||||
Output Desc="OnewaySec" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200460
|
||||
Output Desc="OnewayNSec" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200464
|
||||
Output Desc="RTTnsec1" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200468
|
||||
Output Desc="RTTsec1" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=20046C
|
||||
Output Desc="RTTsec2" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200470
|
||||
Output Desc="RTTnsec2" Group="Subsystem #1|CTLs|Vars" Units=" " Type=INT Min=0 Max=1 Rack=7 Adr=200474
|
||||
Pushbutton Desc="Send" Group="Subsystem #1|CTLs|Inputs" Type=INT P0=0 P1=1 Rack=7 Adr=786010
|
||||
Output Desc="ADVSECD" Group="Subsystem #1|GTSYNC|Inputs" Units="Sec" Type=INT Min=0 Max=1 Rack=7 Adr=200478
|
||||
Output Desc="ADVSTAT" Group="Subsystem #1|GTSYNC|Inputs" Units="status" Type=INT Min=0 Max=1 Rack=7 Adr=20047C
|
||||
Output Desc="CRTSECD" Group="Subsystem #1|GTSYNC|Inputs" Units="Sec" Type=INT Min=0 Max=1 Rack=7 Adr=200410
|
||||
Output Desc="CRTNSEC" Group="Subsystem #1|GTSYNC|Inputs" Units="nSec" Type=INT Min=0 Max=1 Rack=7 Adr=200414
|
||||
Output Desc="CRTSTAT" Group="Subsystem #1|GTSYNC|Inputs" Units="status" Type=INT Min=0 Max=1 Rack=7 Adr=200480
|
||||
String Desc="CircuitTitle Annotation" Group="Annotation" InitValue="Test Circuit"
|
||||
String Desc="Draft file" Group="Annotation" InitValue="Draft file: U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync2\gtnet_skt_2point_udp.dft"
|
||||
String Desc="Draft file modification date" Group="Time tags" InitValue="2017/04/03 19:46:10"
|
||||
String Desc="Compile date" Group="Time tags" InitValue="2017/04/05 13:42:58"
|
||||
|
||||
|
||||
COMPONENT_TIMING_INFORMATION:
|
||||
timing_record: subsystem=1 processor=0 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=1 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=2 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=3 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=4 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=5 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=6 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=7 processor_type=GPC
|
||||
timing_record: subsystem=1 processor=8 processor_type=PB5
|
||||
timing_record: subsystem=1 processor=9 processor_type=PB5
|
||||
timing_record: subsystem=1 processor_type=3PC processor_count=0
|
||||
timing_record: timing_name=Send component_type=RISC_PB subsystem=1 processor=4 processor_type=GPC clock_index=3 enabled=false use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sum3_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=4 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sum3_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=5 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sum3_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=6 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sum3_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=7 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sum3_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=8 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sum3_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=9 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=edgedet_cb component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=10 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=UPDOWNC component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=11 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=gtnetskt component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=12 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=TIMERC component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=13 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=UPDOWNC component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=14 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=gtnetskt component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=15 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=dtdel_cb component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=16 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=dtdel_cb component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=17 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sh_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=18 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sh_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=19 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sh_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=20 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sh_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=21 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sh_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=22 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
||||
timing_record: timing_name=sh_A component_type=RISC_CMODEL subsystem=1 processor=4 processor_type=GPC clock_index=23 enabled=true use=CTLS lf=0.000000 logical_proc=1
|
|
@ -1,56 +0,0 @@
|
|||
MESSAGES:
|
||||
|
||||
Compiling U:\ACS-Public\35_msv\15_msv-ufa\RSCAD_workspace\fileman\GTNET_UDP_tests\GTSKT_tutorial\GTSKT\Standard_2pt_udp_loopback_gtsync2\gtnet_skt_2point_udp.dft for RTDS rack 7...
|
||||
Nodes and Wires...
|
||||
|
||||
Compiling subsystem ''
|
||||
Electrical nodes found: 0
|
||||
|
||||
|
||||
Running In Pre-Processor Mode (RTDSPCPP Inclusion)
|
||||
|
||||
|
||||
|
||||
|
||||
REAL-TIME DIGITAL SIMULATOR POWER SYSTEM COMPILER
|
||||
(c) Copyright 1994-2008 RTDS Technologies Inc.
|
||||
|
||||
Version C10.04
|
||||
Compilation Time: 10:56:54 Feb 5 2015
|
||||
|
||||
|
||||
Data file name: gtnet_skt_2point_udp.dtp
|
||||
Inf file name: tmp.gtnet_skt_2point_udp.inf
|
||||
Map file name: gtnet_skt_2point_udp.map
|
||||
Output file name: gtnet_skt_2point_udp_r#
|
||||
|
||||
Configuration file directory: .
|
||||
Configuration file name: C:\RSCAD\HDWR\config_file_02.txt
|
||||
|
||||
Title from data file: "Test Circuit"
|
||||
|
||||
|
||||
Library file directory: C:\RSCAD/RTDS
|
||||
Library file name: rt_sim.lib
|
||||
Library file version: 62.57
|
||||
|
||||
Library file directory: C:\RSCAD/RTDS
|
||||
Library file name: rpc.lib
|
||||
Library file version: 24.14
|
||||
|
||||
Time-step used = 50.000000 us
|
||||
|
||||
|
||||
Network Conductance Matrix Overlay Statistics:
|
||||
Subsystem 1 contains 0 matrix overlays.
|
||||
|
||||
|
||||
Control Component Statistics:
|
||||
Subsystem 1 contains 71 control components.
|
||||
|
||||
|
||||
End of process. Peak memory usage = 340332544 bytes
|
||||
|
||||
|
||||
rtc terminated successfully.
|
||||
|
|
@ -1,85 +0,0 @@
|
|||
CASE: Test Circuit
|
||||
Delt: 50.000000 us
|
||||
Backplane operation set to IEEE mode
|
||||
|
||||
+----------------------------------------------------------+
|
||||
| |
|
||||
| S U B S Y S T E M #01 |
|
||||
| |
|
||||
| mapped to |
|
||||
| |
|
||||
| R T D S R A C K #07 |
|
||||
| |
|
||||
+----------------------------------------------------------+
|
||||
|
||||
|
||||
C O M P O N E N T P R O C E S S O R S
|
||||
------------------------------------------------------------
|
||||
|
||||
|
||||
RISC CONTROLS COMPONENTS(proc 1) --> RPC-GPC Card #3 Processor A
|
||||
RISC sum3_A function
|
||||
RISC sum3_A function
|
||||
RISC sum3_A function
|
||||
RISC sum3_A function
|
||||
RISC sum3_A function
|
||||
RISC sum3_A function
|
||||
RISC edgedet_cb function
|
||||
RISC UPDOWNC function
|
||||
RISC gtnetskt function
|
||||
RISC TIMERC function
|
||||
RISC UPDOWNC function
|
||||
RISC gtnetskt function
|
||||
RISC dtdel_cb function
|
||||
RISC dtdel_cb function
|
||||
RISC sh_A function
|
||||
RISC sh_A function
|
||||
RISC sh_A function
|
||||
RISC sh_A function
|
||||
RISC sh_A function
|
||||
RISC sh_A function
|
||||
|
||||
Hidden T2 Transfer List
|
||||
--------------------------------
|
||||
BP_Address Signal_Type Signal_name
|
||||
0x106 named_signal_prc SendData
|
||||
0x107 named_signal_prc txCnt
|
||||
0x108 named_signal_prc rxCnt2
|
||||
0x109 named_signal_prc rdyTosend2
|
||||
0x10A named_signal_prc NoTSin0
|
||||
0x10B named_signal_prc NoTSin1
|
||||
0x10C named_signal_prc NoTSin2
|
||||
0x10D named_signal_prc NoTSin3
|
||||
0x10E named_signal_prc NoTSin4
|
||||
0x10F named_signal_prc POINT5
|
||||
0x110 named_signal_prc POINT0
|
||||
0x111 named_signal_prc rxCnt
|
||||
0x112 named_signal_prc rdyToSen1
|
||||
0x113 named_signal_prc POINTIn0
|
||||
0x114 named_signal_prc ts2sec
|
||||
0x115 named_signal_prc ts2nsec
|
||||
0x116 named_signal_prc POINTin3
|
||||
0x117 named_signal_prc POINTin4
|
||||
0x118 named_signal_prc OnewaySec
|
||||
0x119 named_signal_prc OnewayNSec
|
||||
0x11A named_signal_prc RTTnsec1
|
||||
0x11B named_signal_prc RTTsec1
|
||||
0x11C named_signal_prc RTTsec2
|
||||
0x11D named_signal_prc RTTnsec2
|
||||
0x11E named_signal_wif ADVSECD
|
||||
0x11F named_signal_wif ADVSTAT
|
||||
0x120 named_signal_wif CRTSTAT
|
||||
|
||||
|
||||
T I M E - S T E P I N F O R M A T I O N
|
||||
S U B S Y S T E M 1
|
||||
==========================================================
|
||||
|
||||
|
||||
Backplane Communication Speed = 60.000000 ns
|
||||
T2 communication time 2.2200 us
|
||||
|
||||
|
||||
Minimum time-step 4.2200 us
|
||||
|
||||
Common Current Injections: 0(local) + 0(xrack)
|
|
@ -1,6 +0,0 @@
|
|||
STARTING RACK NUMBER 7
|
||||
# Proc ComponentType:Name Load
|
||||
#----------------------------------------------------------------------------------------
|
||||
SUBSYSTEM 1
|
||||
#----------------------
|
||||
4 ControlsProcessor1 100
|
File diff suppressed because it is too large
Load diff
|
@ -1,49 +0,0 @@
|
|||
|
||||
Subsystem Number 1
|
||||
********************
|
||||
********************
|
||||
|
||||
Flag T3
|
||||
*******
|
||||
|
||||
Flag T0
|
||||
*******
|
||||
|
||||
Flag T1
|
||||
*******
|
||||
|
||||
Flag T2
|
||||
*******
|
||||
0 100 local_used SS1 named_signal_wif 0 "POINT4" from wif 0 xrack_src_idx = -1
|
||||
1 101 local_used SS1 named_signal_wif 1 "POINT3" from wif 0 xrack_src_idx = -1
|
||||
2 102 local_used SS1 named_signal_wif 2 "POINT1" from wif 0 xrack_src_idx = -1
|
||||
3 103 local_used SS1 named_signal_wif 3 "POINT2" from wif 0 xrack_src_idx = -1
|
||||
4 104 local_used SS1 named_signal_wif 6 "CRTSECD" from wif 0 xrack_src_idx = -1
|
||||
5 105 local_used SS1 named_signal_wif 7 "CRTNSEC" from wif 0 xrack_src_idx = -1
|
||||
6 106 local_unused SS1 named_signal_prc 0 "SendData" from ppc_main 4 xrack_src_idx = -1
|
||||
7 107 local_unused SS1 named_signal_prc 1 "txCnt" from ppc_main 4 xrack_src_idx = -1
|
||||
8 108 local_unused SS1 named_signal_prc 2 "rxCnt2" from ppc_main 4 xrack_src_idx = -1
|
||||
9 109 local_unused SS1 named_signal_prc 3 "rdyTosend2" from ppc_main 4 xrack_src_idx = -1
|
||||
10 10A local_unused SS1 named_signal_prc 4 "NoTSin0" from ppc_main 4 xrack_src_idx = -1
|
||||
11 10B local_unused SS1 named_signal_prc 5 "NoTSin1" from ppc_main 4 xrack_src_idx = -1
|
||||
12 10C local_unused SS1 named_signal_prc 6 "NoTSin2" from ppc_main 4 xrack_src_idx = -1
|
||||
13 10D local_unused SS1 named_signal_prc 7 "NoTSin3" from ppc_main 4 xrack_src_idx = -1
|
||||
14 10E local_unused SS1 named_signal_prc 8 "NoTSin4" from ppc_main 4 xrack_src_idx = -1
|
||||
15 10F local_unused SS1 named_signal_prc 9 "POINT5" from ppc_main 4 xrack_src_idx = -1
|
||||
16 110 local_unused SS1 named_signal_prc 10 "POINT0" from ppc_main 4 xrack_src_idx = -1
|
||||
17 111 local_unused SS1 named_signal_prc 11 "rxCnt" from ppc_main 4 xrack_src_idx = -1
|
||||
18 112 local_unused SS1 named_signal_prc 12 "rdyToSen1" from ppc_main 4 xrack_src_idx = -1
|
||||
19 113 local_unused SS1 named_signal_prc 13 "POINTIn0" from ppc_main 4 xrack_src_idx = -1
|
||||
20 114 local_unused SS1 named_signal_prc 14 "ts2sec" from ppc_main 4 xrack_src_idx = -1
|
||||
21 115 local_unused SS1 named_signal_prc 15 "ts2nsec" from ppc_main 4 xrack_src_idx = -1
|
||||
22 116 local_unused SS1 named_signal_prc 16 "POINTin3" from ppc_main 4 xrack_src_idx = -1
|
||||
23 117 local_unused SS1 named_signal_prc 17 "POINTin4" from ppc_main 4 xrack_src_idx = -1
|
||||
24 118 local_unused SS1 named_signal_prc 18 "OnewaySec" from ppc_main 4 xrack_src_idx = -1
|
||||
25 119 local_unused SS1 named_signal_prc 19 "OnewayNSec" from ppc_main 4 xrack_src_idx = -1
|
||||
26 11A local_unused SS1 named_signal_prc 20 "RTTnsec1" from ppc_main 4 xrack_src_idx = -1
|
||||
27 11B local_unused SS1 named_signal_prc 21 "RTTsec1" from ppc_main 4 xrack_src_idx = -1
|
||||
28 11C local_unused SS1 named_signal_prc 22 "RTTsec2" from ppc_main 4 xrack_src_idx = -1
|
||||
29 11D local_unused SS1 named_signal_prc 23 "RTTnsec2" from ppc_main 4 xrack_src_idx = -1
|
||||
30 11E local_unused SS1 named_signal_wif 4 "ADVSECD" from wif 0 xrack_src_idx = -1
|
||||
31 11F local_unused SS1 named_signal_wif 5 "ADVSTAT" from wif 0 xrack_src_idx = -1
|
||||
32 120 local_unused SS1 named_signal_wif 8 "CRTSTAT" from wif 0 xrack_src_idx = -1
|
Loading…
Add table
Reference in a new issue