Browse Source

潮州市第三人民医院1FDDC程序

lock
xing 4 weeks ago
commit
de44704a1e
  1. 19
      DDC1F01/$ENV$/Resource/Resource.MAK
  2. 4
      DDC1F01/$GEN$/OPCDA.PTT
  3. 13
      DDC1F01/DDC1F01.GEN
  4. 0
      DDC1F01/DDC1F01.INI
  5. 17
      DDC1F01/DDC1F01.VAR
  6. 10
      DDC1F01/OPCDA.POE
  7. 5
      DDC1F01/USERTYPE.TYP
  8. 101
      DDC1F01/cfcxref.xsl

19
DDC1F01/$ENV$/Resource/Resource.MAK

@ -0,0 +1,19 @@
[INFORMATION]
CONFIG=
HARDWARE=SmartSIM
SECONDHARDWARE=
PACK_SOURCE=0
TYPE=3
OPERATINGNUMBER=0
OPTIMIZE=2
CONNECTION=Simulation
MAPFILE=1
[IO_EXTERNALS]
FILE=
[TASKS]
COUNT=0
[GLOBAL]
COUNT=0
[DIRECT_GLOBAL]
FILE0=\OPCDA
COUNT=1

4
DDC1F01/$GEN$/OPCDA.PTT

@ -0,0 +1,4 @@
PROGRAM OPCDA
END_PROGRAM

13
DDC1F01/DDC1F01.GEN

@ -0,0 +1,13 @@
[PROTOTYP_PROG]
COUNT=0
[PROTOTYP_FB]
COUNT=0
[PROTOTYP_FKT]
COUNT=0
[LIBRARY]
FILE0=\LIB\sfclib\sfclib.GEN
FILE1=\LIB\BRCON_MCFB_EU_V3.4.0\BRCON_MCFB_ED_V3.3.0.1.GEN
COUNT=2
[EXECUTABLE]
FILE0=\$ENV$\Resource\Resource
COUNT=1

0
DDC1F01/DDC1F01.INI

17
DDC1F01/DDC1F01.VAR

@ -0,0 +1,17 @@
[MAKEFILE]
FILE0=\$ENV$\Resource\Resource
ACTIVE=\$ENV$\Resource\Resource.MAK
COUNT=1
[LIBRARY]
FILE0=\LIB\sfclib\sfclib.VAR
FILE1=\LIB\BRCON_MCFB_EU_V3.4.0\BRCON_MCFB_ED_V3.3.0.1.VAR
COUNT=2
[DIRECT_GLOBAL]
FILE0=\OPCDA
COUNT=1
[TYPEDEF]
FILE0=\USERTYPE
COUNT=1
[DATPARAM_INFO]
SeperateGen=1
Version=4.0

10
DDC1F01/OPCDA.POE

@ -0,0 +1,10 @@
$BEGIN_IT_HEADER
DIRECTGLOBALDEFINITIONS = 1
$END_IT_HEADER
PROGRAM OPCDA
VAR_GLOBAL
END_VAR
END_PROGRAM

5
DDC1F01/USERTYPE.TYP

@ -0,0 +1,5 @@
[IEC_IEC_NORM]
TYPE
END_TYPE

101
DDC1F01/cfcxref.xsl

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
</head>
<body>
<!-- MAIN-Table with one column -->
<table>
<!-- iterate through the SourceConnectors -->
<xsl:for-each select="CFC-XREF/SourceConnector">
<!-- headline-row -->
<tr>
<td>
<table cellspacing="0" cellpadding="0">
<tr>
<th bgcolor="red" width="400">
<b>Source</b>
</th>
<th bgcolor="green" width="400">
<b>Target(s)</b>
</th>
</tr>
</table>
</td>
</tr>
<!-- source-connector-row -->
<tr>
<td>
<table border="1" width="800" bgcolor="#FFDDDD" cellspacing="0" cellpadding="0">
<tr>
<th>Source</th>
<th>Name</th>
<th>Connector</th>
<th>Layer</th>
<th>PrintOn</th>
</tr>
<td align="center" nowrap="1"><xsl:apply-templates select="SourceData/ConnectorName"/></td>
<td align="center" nowrap="1"><xsl:apply-templates select="SourceData/FunctionBlockName"/></td>
<td align="center" nowrap="1"><xsl:apply-templates select="SourceData/FunctionBlockConnector"/></td>
<td align="center" nowrap="1"><xsl:apply-templates select="SourceData/FunctionBlockLayer"/></td>
<td>
<table align="center">
<tr>
<td align="center" nowrap="1">Page: <xsl:apply-templates select="SourceData/PrintLocalisation/Page"/></td>
</tr>
<tr>
<td align="center" nowrap="1">Row: <xsl:apply-templates select="SourceData/PrintLocalisation/Row"/></td>
</tr>
</table>
</td>
</table>
</td>
</tr>
<!-- target-connectors-row -->
<tr>
<td>
<table width="800" cellspacing="0" cellpadding="0">
<tr>
<td width="50">
</td>
<td width="750">
<table border="1" width="750" bgcolor="#D7FFD7" cellspacing="0" cellpadding="0">
<tr>
<th>Target</th>
<th>Name</th>
<th>Connector</th>
<th>Layer</th>
<th>PrintOn</th>
</tr>
<xsl:for-each select="TargetConnectors/TargetData">
<tr align="justify">
<td align="center" nowrap="1"><xsl:apply-templates select="ConnectorName"/></td>
<td align="center" nowrap="1"><xsl:apply-templates select="FunctionBlockName"/></td>
<td align="center" nowrap="1"><xsl:apply-templates select="FunctionBlockConnector"/></td>
<td align="center" nowrap="1"><xsl:apply-templates select="FunctionBlockLayer"/></td>
<td>
<table align="center">
<tr>
<td align="center" nowrap="1">Page: <xsl:apply-templates select="PrintLocalisation/Page"/></td>
</tr>
<tr>
<td align="center" nowrap="1">Row: <xsl:apply-templates select="PrintLocalisation/Row"/></td>
</tr>
</table>
</td>
</tr>
</xsl:for-each>
</table>
</td>
</tr>
</table>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Loading…
Cancel
Save