EMS,硬件设计文件以及软件功能验证程序
21
3.Document/青海能高储能EMS工程/上位机工程/quxian/Makefile
Normal file
@@ -0,0 +1,21 @@
|
||||
CC = gcc
|
||||
|
||||
edit: main.o script.o
|
||||
|
||||
$(CC) -o script main.o script.o
|
||||
|
||||
main.o: main.c script.h
|
||||
|
||||
$(CC) -c main.c
|
||||
|
||||
script.o: script.c script.h
|
||||
|
||||
$(CC) -c script.c
|
||||
|
||||
clean:
|
||||
rm main.o script.o
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
95
3.Document/青海能高储能EMS工程/上位机工程/quxian/main.c
Normal file
@@ -0,0 +1,95 @@
|
||||
#include <math.h>
|
||||
#include "script.h"
|
||||
|
||||
int readFile() {
|
||||
char s[] = "/home/ctstor/ctfiles/maxvarindex";
|
||||
//ֻ<><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>
|
||||
int fd = open(s, O_RDONLY);
|
||||
|
||||
if(fd == -1) {
|
||||
printf("error is %s\n", strerror(errno));
|
||||
return;
|
||||
}
|
||||
|
||||
printf("sucess fd = %d\n", fd);
|
||||
char buf[100];
|
||||
memset(buf, 0, sizeof(buf));
|
||||
int a=3999;
|
||||
//read<61><64><EFBFBD><EFBFBD>0<EFBFBD><30>ʾ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>
|
||||
while(read(fd, buf, sizeof(buf) - 1) > 0) {
|
||||
printf("%s\n", buf);
|
||||
char * str=buf;
|
||||
printf("%s-----\n", str);
|
||||
|
||||
sscanf(str,"%d",&a);
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
}
|
||||
printf("%d---===--\n", a);
|
||||
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD><EFBFBD>ǹر<C7B9>
|
||||
close(fd);
|
||||
return a;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
//<2F><>ʼ<EFBFBD><CABC>
|
||||
|
||||
int nMaxIndex= readFile();
|
||||
if (CreateRam(0,nMaxIndex)<1)
|
||||
return;
|
||||
|
||||
int i,Number;
|
||||
int StationNumber;
|
||||
static int station[2] = {0,285};//0<>ǵ<EFBFBD><C7B5><EFBFBD><EFBFBD>ĵ<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>285<38><35><EFBFBD>۱<EFBFBD><DBB1>ĵ<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD>۱<EFBFBD><DBB1><EFBFBD><EFBFBD><EFBFBD>
|
||||
static temp1_index =8000; //<2F>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
while(1){
|
||||
|
||||
Number=(int)GetSysItem(142)-1;
|
||||
StationNumber=(int)GetSysItem(143)-1;
|
||||
|
||||
if(StationNumber==0)
|
||||
{
|
||||
for (i=0;i<=31;i++)//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>31<33><31><EFBFBD><EFBFBD>
|
||||
{
|
||||
SetItemValue(0,temp1_index+i,GetItemValue(0,Number*31+i+station[StationNumber]));
|
||||
}
|
||||
//ʵʱ<CAB5><CAB1><EFBFBD><EFBFBD>
|
||||
SetSysItem( 78 , Number*31+9+station[StationNumber]);//Pa
|
||||
SetSysItem( 79 , Number*31+10+station[StationNumber]);//Pb
|
||||
SetSysItem( 80 , Number*31+11+station[StationNumber]);//Pc
|
||||
SetSysItem( 81 , Number*31+12+station[StationNumber]);//P
|
||||
|
||||
//<2F><>ʷ<EFBFBD><CAB7><EFBFBD><EFBFBD>
|
||||
SetSysItem( 94 , Number*31+9+station[StationNumber]);//Pa
|
||||
SetSysItem( 95 , Number*31+10+station[StationNumber]);//Pb
|
||||
SetSysItem( 96 , Number*31+11+station[StationNumber]);//Pc
|
||||
SetSysItem( 97 , Number*31+12+station[StationNumber]);//P
|
||||
|
||||
|
||||
}
|
||||
|
||||
else if(StationNumber==1)
|
||||
{
|
||||
for (i=0;i<116;i++)//<2F>۱<EFBFBD><DBB1><EFBFBD><EFBFBD><EFBFBD>116<31><36><EFBFBD><EFBFBD>
|
||||
{
|
||||
|
||||
SetItemValue(0,temp1_index+i,GetItemValue(0,Number*116+i+station[StationNumber]));
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
waitForMillisec(2000);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
95
3.Document/青海能高储能EMS工程/上位机工程/quxian/main.c~
Normal file
@@ -0,0 +1,95 @@
|
||||
#include <math.h>
|
||||
#include "script.h"
|
||||
|
||||
int readFile() {
|
||||
char s[] = "/home/ctstor/ctfiles/maxvarindex";
|
||||
//ֻ<><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>
|
||||
int fd = open(s, O_RDONLY);
|
||||
|
||||
if(fd == -1) {
|
||||
printf("error is %s\n", strerror(errno));
|
||||
return;
|
||||
}
|
||||
|
||||
printf("sucess fd = %d\n", fd);
|
||||
char buf[100];
|
||||
memset(buf, 0, sizeof(buf));
|
||||
int a=3999;
|
||||
//read<61><64><EFBFBD><EFBFBD>0<EFBFBD><30>ʾ<EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD>
|
||||
while(read(fd, buf, sizeof(buf) - 1) > 0) {
|
||||
printf("%s\n", buf);
|
||||
char * str=buf;
|
||||
printf("%s-----\n", str);
|
||||
|
||||
sscanf(str,"%d",&a);
|
||||
|
||||
memset(buf, 0, sizeof(buf));
|
||||
}
|
||||
printf("%d---===--\n", a);
|
||||
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD><EFBFBD>ǹر<C7B9>
|
||||
close(fd);
|
||||
return a;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
//<2F><>ʼ<EFBFBD><CABC>
|
||||
|
||||
int nMaxIndex= readFile();
|
||||
if (CreateRam(0,nMaxIndex)<1)
|
||||
return;
|
||||
|
||||
int i,Number;
|
||||
int StationNumber;
|
||||
static int station[2] = {0,285};//0<>ǵ<EFBFBD><C7B5><EFBFBD><EFBFBD>ĵ<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>285<38><35><EFBFBD>۱<EFBFBD><DBB1>ĵ<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD>۱<EFBFBD><DBB1><EFBFBD><EFBFBD><EFBFBD>
|
||||
static temp1_index =8000; //<2F>м<EFBFBD><D0BC><EFBFBD><EFBFBD><EFBFBD>
|
||||
|
||||
while(1){
|
||||
|
||||
Number=(int)GetSysItem(142)-1;
|
||||
StationNumber=(int)GetSysItem(143)-1;
|
||||
|
||||
if(StationNumber==0)
|
||||
{
|
||||
for (i=0;i<=31;i++)//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>31<33><31><EFBFBD><EFBFBD>
|
||||
{
|
||||
SetItemValue(0,temp1_index+i,GetItemValue(0,Number*31+i+station[StationNumber]));
|
||||
}
|
||||
//ʵʱ<CAB5><CAB1><EFBFBD><EFBFBD>
|
||||
SetSysItem( 78 , Number*31+9+station[StationNumber]);//Pa
|
||||
SetSysItem( 79 , Number*31+10+station[StationNumber]);//Pb
|
||||
SetSysItem( 80 , Number*31+11+station[StationNumber]);//Pc
|
||||
SetSysItem( 81 , Number*31+12+station[StationNumber]);//P
|
||||
|
||||
//<2F><>ʷ<EFBFBD><CAB7><EFBFBD><EFBFBD>
|
||||
SetSysItem( 94 , Number*31+9+station[StationNumber]);//Pa
|
||||
SetSysItem( 95 , Number*31+10+station[StationNumber]);//Pb
|
||||
SetSysItem( 96 , Number*31+11+station[StationNumber]);//Pc
|
||||
SetSysItem( 97 , Number*31+12+station[StationNumber]);//P
|
||||
|
||||
|
||||
}
|
||||
|
||||
else if(StationNumber==1)
|
||||
{
|
||||
for (i=0;i<116;i++)//<2F>۱<EFBFBD><DBB1><EFBFBD><EFBFBD><EFBFBD>116<31><36><EFBFBD><EFBFBD>
|
||||
{
|
||||
|
||||
SetItemValue(0,temp1_index+i,GetItemValue(0,Number*116+i+station[StationNumber]));
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
waitForMillisec(2000);
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
BIN
3.Document/青海能高储能EMS工程/上位机工程/quxian/script
Normal file
404
3.Document/青海能高储能EMS工程/上位机工程/quxian/script.c
Normal file
@@ -0,0 +1,404 @@
|
||||
#include "script.h"
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD>ʵʱ<CAB5><CAB1><EFBFBD>ݿ<EFBFBD>
|
||||
int OpenRamRt()
|
||||
{
|
||||
#ifdef OS_WIN
|
||||
char chRamName[30] ;
|
||||
HANDLE hFile;
|
||||
HANDLE hMapFile = 0;
|
||||
LPVOID lpMapAddress = 0;
|
||||
strcpy( chRamName, "RAMRT" );
|
||||
|
||||
if ( lpMapAddress ) UnmapViewOfFile( lpMapAddress );
|
||||
if ( hMapFile ) CloseHandle( hMapFile );
|
||||
|
||||
hFile = (HANDLE) 0xFFFFFFFF ;
|
||||
|
||||
hMapFile = CreateFileMapping( hFile, NULL, PAGE_READWRITE, 0, STATION_SIZE , (LPCTSTR)chRamName );
|
||||
if ( hMapFile == NULL ){
|
||||
lpMapAddress = NULL;
|
||||
return 0;
|
||||
}
|
||||
lpMapAddress = MapViewOfFile( hMapFile,FILE_MAP_ALL_ACCESS,0,0,0 );
|
||||
pSysItem = ( double * )lpMapAddress ;
|
||||
pStation = ( StructStation * )( ( double * )lpMapAddress + MAX_SYSITEM ) ;
|
||||
return 1 ;
|
||||
#endif
|
||||
|
||||
#ifdef OS_UNIX
|
||||
int shmid ;
|
||||
void *shmptr ;
|
||||
|
||||
if((shmid = shmget( SHMDBKEYRTRAM_RT , STATION_SIZE , SHM_MODE ) ) < 0 ){
|
||||
return 0 ;
|
||||
}
|
||||
shmptr = shmat( shmid, 0, 0 ) ;
|
||||
|
||||
if ( shmptr == (void*) -1 ) {
|
||||
return 0 ;
|
||||
}
|
||||
|
||||
pSysItem = ( double * )shmptr ;
|
||||
pStation = ( StructStation * )( ( double * )shmptr + MAX_SYSITEM );
|
||||
return 1 ;
|
||||
#endif
|
||||
}
|
||||
|
||||
//gaowf 2016.7.25
|
||||
char CreateRam(int iStationNum, int nMaxIndex)
|
||||
{
|
||||
//qDebug( "createram %d", iStationNum );
|
||||
#ifdef OS_WIN
|
||||
char chRamName[30] ;
|
||||
if(iStationNum == 0)
|
||||
strcpy( chRamName, "RAMRT" );
|
||||
else
|
||||
sprintf(chRamName, "%s%d", "RAMRT", iStationNum);
|
||||
|
||||
if ( lpMapAddress ) UnmapViewOfFile( lpMapAddress );
|
||||
if ( hMapFile ) CloseHandle( hMapFile );
|
||||
|
||||
HANDLE hFile = (HANDLE) 0xFFFFFFFF ;
|
||||
|
||||
int iSize2 ;
|
||||
|
||||
nMaxDataNum = nMaxIndex+1;
|
||||
iSize2 = sizeof( StructStation) + MAX_SYSITEM * sizeof( double ) ;
|
||||
iSize2 += sizeof(StructData)*(nMaxIndex+1);
|
||||
|
||||
hMapFile = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, (LPCTSTR)chRamName);
|
||||
if(!hMapFile)
|
||||
hMapFile = CreateFileMapping( hFile, NULL, PAGE_READWRITE, 0, iSize2 , (LPCTSTR)chRamName );
|
||||
if ( hMapFile == NULL ){
|
||||
char chMsg[100];
|
||||
strcpy( chMsg, "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ӧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵ" );
|
||||
::MessageBox( NULL, (LPCTSTR)chMsg , NULL, MB_OK );
|
||||
lpMapAddress = NULL;
|
||||
return 0;
|
||||
}
|
||||
lpMapAddress = MapViewOfFile( hMapFile,FILE_MAP_ALL_ACCESS,0,0,0 );
|
||||
pSysItem = ( double * )lpMapAddress ;
|
||||
pStation = ( StructStation * )( ( double * )lpMapAddress + MAX_SYSITEM ) ;
|
||||
DataValue = (StructData *)(pStation + 1);
|
||||
#endif
|
||||
|
||||
#ifdef OS_UNIX
|
||||
int shmid ;
|
||||
void *shmptr ;
|
||||
|
||||
int iSize2=0;
|
||||
nMaxDataNum = nMaxIndex+1;
|
||||
iSize2 = sizeof( StructStation) + MAX_SYSITEM * sizeof( double ) ;
|
||||
iSize2 += sizeof(StructData)*(nMaxIndex+1);
|
||||
|
||||
if((shmid = shmget( SHMDBKEYRTRAM_RT , iSize2 , SHM_MODE ) ) < 0 ){
|
||||
printf("shmget error");
|
||||
return 0 ;
|
||||
}
|
||||
shmptr = shmat( shmid, 0, 0 ) ;
|
||||
//qDebug("shmat %d", shmptr );
|
||||
|
||||
if ( shmptr == (void*) -1 ) {
|
||||
//qDebug( "shmat error" );
|
||||
return 0 ;
|
||||
}
|
||||
//qDebug ( "shared memory attached" );
|
||||
pSysItem = ( double * )shmptr ;
|
||||
pStation = ( StructStation * )( ( double * )shmptr + MAX_SYSITEM );
|
||||
DataValue = (StructData *)(pStation + 1);
|
||||
|
||||
#endif
|
||||
pStation->iVersion = 1 ;
|
||||
return 1;
|
||||
}
|
||||
|
||||
//<2F><>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>
|
||||
void waitForMillisec(int millisec)
|
||||
{
|
||||
#ifdef OS_WIN
|
||||
Sleep(millisec);
|
||||
#endif
|
||||
|
||||
#ifdef OS_UNIX
|
||||
usleep(millisec*1000);
|
||||
#endif
|
||||
}
|
||||
|
||||
//<2F><>ȡʵʱ<CAB5><CAB1><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD>Ӧid<69><64><EFBFBD><EFBFBD>ֵ
|
||||
double GetItemValue( int iStationid , int id )
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
if ( id >= nMaxDataNum )
|
||||
return 0;
|
||||
else
|
||||
return DataValue[ id ].dValue ;
|
||||
}
|
||||
|
||||
//<2F><>ȡʵʱ<CAB5><CAB1><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD>Ӧid<69><64><EFBFBD><EFBFBD><EFBFBD>ݽṹ<DDBD><E1B9B9><EFBFBD><EFBFBD>Ϣ
|
||||
StructData* GetItem(int iStationid,int id)
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
if ( id >= nMaxDataNum )
|
||||
return 0;
|
||||
else
|
||||
return &DataValue[ id ] ;
|
||||
}
|
||||
|
||||
//<2F><>ȡʵʱ<CAB5><CAB1><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD>Ӧid<69><64><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬
|
||||
char GetItemChangeState( int iStationid, int id )
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
if ( id >= nMaxDataNum )
|
||||
return 0;
|
||||
else
|
||||
return DataValue[ id ].bChangeState ;
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD>ʵʱ<CAB5><CAB1><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD>Ӧid<69><64><EFBFBD><EFBFBD>ֵ
|
||||
void SetItemValue( int iStationid , int id , double dValue )
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
if ( id >= nMaxDataNum ) return ;
|
||||
|
||||
DataValue[id].dValue = dValue ;
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ
|
||||
StructKcData *GetKcData( int iStationid )
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid ;
|
||||
|
||||
return &pStation1->DataKC;
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD><C8A1><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7><EFBFBD>־<EFBFBD><D6BE>״̬
|
||||
int GetKcFlag( int iStationid )
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid ;
|
||||
|
||||
return pStation1->DataKCFlag;
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD>ʵʱ<CAB5><CAB1><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD>Ӧid<69><64><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬
|
||||
void SetDataState(int iStationid, int id, char bAlarm , char bChangeState)
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
if ( id >= nMaxDataNum ) return ;
|
||||
|
||||
DataValue[id].bAlarm = bAlarm ;
|
||||
DataValue[id].bChangeState = bChangeState ;
|
||||
}
|
||||
|
||||
|
||||
//<2F><><EFBFBD>ÿ<EFBFBD><C3BF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>־
|
||||
void SetKcFlag(int iStationid, int flag)
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
pStation1->DataKCFlag = flag;
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD>ÿ<EFBFBD><C3BF>ƴ<EFBFBD> noΪ<6F><CEAA><EFBFBD>ݵ<EFBFBD>id<69><64>data<74>·<EFBFBD><C2B7><EFBFBD>Ϣ
|
||||
void SetKcData(int iStationid, int no , char *data)
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
pStation1->DataKC.kcNo = no;
|
||||
// pStation1->DataKC.dataKC = data;
|
||||
memset(&pStation1->DataKC.dataKC,0,sizeof(pStation1->DataKC.dataKC));
|
||||
memcpy(pStation1->DataKC.dataKC, data, strlen(data));
|
||||
}
|
||||
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
void SetKcClear(int iStationid,int flag)
|
||||
{
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
if(!flag){
|
||||
char data[200] = {0} ;
|
||||
pStation1->DataKCFlag = flag ;
|
||||
strcpy(pStation1->DataKC.dataKC,data);
|
||||
}
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD>ö<EFBFBD>Ӧ<EFBFBD><D3A6><EFBFBD>Žṹ<C5BD><E1B9B9><EFBFBD><EFBFBD>Ϣ
|
||||
void SetStruct(int iNum,char *chMsg)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
strcpy(pStation1->chStruct[iNum],chMsg);
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD>ýṹ<C3BD><E1B9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
void SetStructNum(int iStructNum)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
pStation1->StructNum = iStructNum;
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><CFB4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ
|
||||
void SetStructUp(int iNum,char *chMsg)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
strcpy(pStation1->chStructUp[iNum],chMsg);
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD><EFBFBD>ϴ<EFBFBD><CFB4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
void SetStructUpNum(int iStructNum)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
pStation1->StructUpNum = iStructNum;
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD><EFBFBD>´<EFBFBD><C2B4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ
|
||||
void SetStructDown(int iNum, char *chMsg)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
strcpy(pStation1->chStructDown[iNum],chMsg);
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD><EFBFBD>´<EFBFBD><C2B4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||||
void SetStructDownNum(int iProg ,int iNum)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
pStation1->StructDownProg = iProg;
|
||||
pStation1->StructDownNum = iNum;
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD><C8A1>ӦiNum<75>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ
|
||||
char * GetStruct(int iNum)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
return pStation1->chStruct[iNum];
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD>
|
||||
int GetStructNum()
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
return pStation1->StructNum;
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD><C8A1>ӦiNum<75>ϴ<EFBFBD><CFB4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ
|
||||
char *GetStructUp(int iNum)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
return pStation1->chStructUp[iNum];
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD>ϴ<EFBFBD><CFB4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD>
|
||||
int GetStructUpNum()
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
return pStation1->StructUpNum;
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD><C8A1>ӦiNum<75>´<EFBFBD><C2B4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ
|
||||
char *GetStructDown(int iNum)
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
return pStation1->chStructDown[iNum];
|
||||
}
|
||||
|
||||
//<2F><>ȡ<EFBFBD>´<EFBFBD><C2B4>ṹ<EFBFBD><E1B9B9><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD>
|
||||
int GetStructDownNum()
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
return pStation1->StructDownNum;
|
||||
}
|
||||
|
||||
int GetStructDownProgId()
|
||||
{
|
||||
int iStationid = 0 ;
|
||||
if( bEmbed ) iStationid = 0 ;
|
||||
StructStation * pStation1 ;
|
||||
pStation1 = pStation + iStationid;
|
||||
|
||||
return pStation1->StructDownProg;
|
||||
}
|
||||
|
||||
//<2F><>ȡϵͳ<CFB5><CDB3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ
|
||||
double GetSysItem(int id)
|
||||
{
|
||||
return *( pSysItem + id ) ;
|
||||
}
|
||||
|
||||
//<2F><><EFBFBD><EFBFBD>ϵͳ<CFB5><CDB3><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ
|
||||
void SetSysItem( int id , double dValue)
|
||||
{
|
||||
*( pSysItem + id ) = dValue ;
|
||||
}
|
||||
127
3.Document/青海能高储能EMS工程/上位机工程/quxian/script.h
Normal file
@@ -0,0 +1,127 @@
|
||||
#ifndef SCRIPT_H
|
||||
#define SCRIPT_H
|
||||
|
||||
#define OS_UNIX
|
||||
|
||||
#ifdef OS_UNIX
|
||||
#include <sys/mman.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <fcntl.h>
|
||||
#include <errno.h>
|
||||
#include <sys/stat.h>
|
||||
#include <dirent.h>
|
||||
|
||||
#include <termios.h>
|
||||
#include <asm/ioctls.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/ipc.h>
|
||||
#include <sys/shm.h>
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
#include <signal.h>
|
||||
#endif
|
||||
|
||||
#ifdef OS_WIN
|
||||
#include <windows.h>
|
||||
#include <stdio.h>
|
||||
#endif
|
||||
|
||||
#define SHM_MODE (SHM_R | SHM_W | IPC_CREAT)
|
||||
|
||||
#ifdef OS_WIN
|
||||
#define MAX_NUM 12000
|
||||
#endif
|
||||
|
||||
#ifdef OS_UNIX
|
||||
#define MAX_NUM 4000
|
||||
#endif
|
||||
|
||||
#define MAX_SYSITEM 200
|
||||
#define MAX_STRUCT 5
|
||||
#define MAX_STRUCT_DOWN 5
|
||||
#define MAX_STRUCT_UP 5
|
||||
|
||||
#ifdef OS_WIN
|
||||
#define STATION_SIZE 200000 //һ<><D2BB>վ<EFBFBD><D5BE><EFBFBD><EFBFBD>ռ<EFBFBD>õĴ<C3B5>С200000 bytes δʹ<CEB4>õĿռ<C4BF><D5BC><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD><EFBFBD>
|
||||
#endif
|
||||
|
||||
#ifdef OS_UNIX
|
||||
#define SHMDBKEYRTRAM_RT 1829503351 //811047
|
||||
#define STATION_SIZE 70000
|
||||
#endif
|
||||
|
||||
typedef struct _StructData
|
||||
{
|
||||
double dValue ;
|
||||
char chState ; //ʵʱ<CAB5><CAB1>״ֵ̬
|
||||
char bAlarm ;
|
||||
char bChangeState ;
|
||||
char bVisible;
|
||||
}StructData;
|
||||
|
||||
typedef struct _StructKcData
|
||||
{
|
||||
int kcNo;
|
||||
char dataKC[200];
|
||||
}StructKcData;
|
||||
|
||||
//<2F><>̨<EFBFBD><CCA8><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʵʱ<CAB5><CAB1><EFBFBD>ݿ<EFBFBD>
|
||||
typedef struct _StructStation
|
||||
{
|
||||
int iVersion;
|
||||
//StructData DataValue[ MAX_NUM ];
|
||||
int DataKCFlag; //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʶ
|
||||
StructKcData DataKC; //<2F><><EFBFBD><EFBFBD><EFBFBD>ṹ
|
||||
int StructNum; //<2F>澯<EFBFBD>ṹ<EFBFBD><E1B9B9>ʶ
|
||||
char chStruct[MAX_STRUCT][200]; //<2F>澯<EFBFBD>ṹ<EFBFBD><E1B9B9>
|
||||
int StructUpNum ; //<2F>ϴ<EFBFBD><CFB4>ṹ<EFBFBD><E1B9B9>ʶ
|
||||
char chStructUp[MAX_STRUCT_UP][200] ; //<2F>ϴ<EFBFBD><CFB4>ṹ<EFBFBD><E1B9B9>
|
||||
int StructDownNum; //<2F>´<EFBFBD><C2B4>ṹ<EFBFBD><E1B9B9>ʶ
|
||||
int StructDownProg; //<2F><><EFBFBD><EFBFBD>id
|
||||
char chStructDown[MAX_STRUCT_DOWN][200]; //<2F>´<EFBFBD><C2B4>ṹ<EFBFBD><E1B9B9>
|
||||
}StructStation;
|
||||
|
||||
|
||||
StructStation * pStation ;
|
||||
StructData *DataValue;
|
||||
double * pSysItem;
|
||||
int nMaxDataNum;
|
||||
|
||||
char bEmbed;
|
||||
int OpenRamRt();//<2F><EFBFBD><F2BFAAB9><EFBFBD>
|
||||
char CreateRam(int iStationNum, int nMaxIndex);
|
||||
|
||||
double GetItemValue( int iStationid, int id ) ;
|
||||
char GetItemChangeState( int iStationid, int id ) ;
|
||||
void SetItemValue( int iStationid , int id , double dValue ) ;
|
||||
StructKcData * GetKcData(int iStationid);
|
||||
int GetKcFlag(int iStationid);
|
||||
StructData* GetItem(int iStationid,int id);
|
||||
|
||||
double GetSysItem( int id );
|
||||
char * GetStruct(int iNum);
|
||||
int GetStructNum();
|
||||
char * GetStructDown(int iNum);
|
||||
int GetStructDownNum();
|
||||
int GetStructDownProgId();
|
||||
int GetStructUpNum();
|
||||
char * GetStructUp(int iNum);
|
||||
|
||||
void SetDataState(int iStationid, int id , char bAlarm , char bChangeState);
|
||||
void SetSysItem( int id , double dValue);
|
||||
|
||||
void SetStruct(int iNum, char *chMsg);
|
||||
void SetStructNum(int iStructNum);
|
||||
void SetStructDown(int iNum, char *chMsg);
|
||||
void SetStructDownNum(int iProg ,int iNum);
|
||||
void SetStructUpNum(int iStructNum);
|
||||
void SetStructUp(int iNum,char *chMsg);
|
||||
void SetKcFlag(int iStationid,int flag);
|
||||
void SetKcData(int iStationid, int no,char *data);
|
||||
void SetKcClear(int iStationid,int flag);
|
||||
void waitForMillisec(int millisec);
|
||||
|
||||
#endif
|
||||
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS1.drw
Normal file
1660
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS1.svg
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS2.drw
Normal file
1470
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS2.svg
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS3.drw
Normal file
1432
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS3.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS4.drw
Normal file
1432
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS4.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS5.drw
Normal file
1508
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS5.svg
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS6.drw
Normal file
1584
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS6.svg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS7.drw
Normal file
3784
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#BMS7.svg
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#逆变器.drw
Normal file
3528
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#逆变器.svg
Normal file
|
After Width: | Height: | Size: 177 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/1#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/10#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/10#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/11#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/11#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/12#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/12#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/13#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/13#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/14#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/14#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/15#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/15#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS1.drw
Normal file
1660
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS1.svg
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS2.drw
Normal file
1470
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS2.svg
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS3.drw
Normal file
1432
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS3.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS4.drw
Normal file
1432
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS4.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS5.drw
Normal file
1508
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS5.svg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS6.drw
Normal file
1584
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS6.svg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS7.drw
Normal file
3815
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#BMS7.svg
Normal file
|
After Width: | Height: | Size: 192 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#逆变器.drw
Normal file
3543
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#逆变器.svg
Normal file
|
After Width: | Height: | Size: 178 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/2#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS1.drw
Normal file
1660
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS1.svg
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS2.drw
Normal file
1470
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS2.svg
Normal file
|
After Width: | Height: | Size: 77 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS3.drw
Normal file
1432
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS3.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS4.drw
Normal file
1432
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS4.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS5.drw
Normal file
1508
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS5.svg
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS6.drw
Normal file
1584
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS6.svg
Normal file
|
After Width: | Height: | Size: 82 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS7.drw
Normal file
3792
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#BMS7.svg
Normal file
|
After Width: | Height: | Size: 190 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#逆变器.drw
Normal file
3528
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#逆变器.svg
Normal file
|
After Width: | Height: | Size: 177 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/3#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/4#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/4#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/5#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/5#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/6#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/6#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/7#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/7#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/8#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/8#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/9#配电柜.drw
Normal file
1438
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/9#配电柜.svg
Normal file
|
After Width: | Height: | Size: 75 KiB |
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<AlmColorList/>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<AlmList/>
|
||||
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/BMS上传信息.drw
Normal file
1381
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/BMS上传信息.svg
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/BMS设置量.drw
Normal file
1077
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/BMS设置量.svg
Normal file
|
After Width: | Height: | Size: 57 KiB |
28
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/DBList.xml
Normal file
@@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<List>
|
||||
<DBVar type="WorkNode" name="<22>е<EFBFBD>/<><CEA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="<22><EFBFBD><F1B7A2BD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="PCS<43><53><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>1" />
|
||||
<DBVar type="WorkNode" name="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>2" />
|
||||
<DBVar type="WorkNode" name="<22><EFBFBD><E0B9A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="<22>߲˹<DFB2><CBB9><EFBFBD>1" />
|
||||
<DBVar type="WorkNode" name="<22>߲˹<DFB2><CBB9><EFBFBD>2" />
|
||||
<DBVar type="WorkNode" name="<22><>ˮ<EFBFBD><CBAE>ˮ<EFBFBD>ܵ<EFBFBD><DCB5><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="<22><>װ<EFBFBD><D7B0><EFBFBD>Թ<EFBFBD><D4B9><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="<22><><EFBFBD><EFBFBD>1" />
|
||||
<DBVar type="WorkNode" name="<22><><EFBFBD><EFBFBD>2" />
|
||||
<DBVar type="WorkNode" name="<22><><EFBFBD><EFBFBD>3" />
|
||||
<DBVar type="WorkNode" name="ֱ<><D6B1><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="PCS" />
|
||||
<DBVar type="WorkNode" name="BMS" />
|
||||
<DBVar type="WorkNode" name="1#<23><><EFBFBD>ع<EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="2#<23><><EFBFBD>ع<EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="3#<23><><EFBFBD>ع<EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="1#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="2#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="3#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DBVar type="WorkNode" name="PCS<43><53>ʱ" />
|
||||
</List>
|
||||
53
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/DrawList.xml
Normal file
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<List>
|
||||
<DRAW type="DRAW" name="1#BMS1" />
|
||||
<DRAW type="DRAW" name="1#BMS2" />
|
||||
<DRAW type="DRAW" name="1#BMS3" />
|
||||
<DRAW type="DRAW" name="1#BMS4" />
|
||||
<DRAW type="DRAW" name="1#BMS5" />
|
||||
<DRAW type="DRAW" name="1#BMS6" />
|
||||
<DRAW type="DRAW" name="1#BMS7" />
|
||||
<DRAW type="DRAW" name="1#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="1#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="10#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="11#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="12#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="13#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="14#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="15#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="2#BMS1" />
|
||||
<DRAW type="DRAW" name="2#BMS2" />
|
||||
<DRAW type="DRAW" name="2#BMS3" />
|
||||
<DRAW type="DRAW" name="2#BMS4" />
|
||||
<DRAW type="DRAW" name="2#BMS5" />
|
||||
<DRAW type="DRAW" name="2#BMS6" />
|
||||
<DRAW type="DRAW" name="2#BMS7" />
|
||||
<DRAW type="DRAW" name="2#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="2#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="3#BMS1" />
|
||||
<DRAW type="DRAW" name="3#BMS2" />
|
||||
<DRAW type="DRAW" name="3#BMS3" />
|
||||
<DRAW type="DRAW" name="3#BMS4" />
|
||||
<DRAW type="DRAW" name="3#BMS5" />
|
||||
<DRAW type="DRAW" name="3#BMS6" />
|
||||
<DRAW type="DRAW" name="3#BMS7" />
|
||||
<DRAW type="DRAW" name="3#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="3#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="4#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="5#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="6#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="7#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="8#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="9#<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="BMS<4D>ϴ<EFBFBD><CFB4><EFBFBD>Ϣ" />
|
||||
<DRAW type="DRAW" name="BMS<4D><53><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="PCS<43><53>Ϣ" />
|
||||
<DRAW type="DRAW" name="PCS<43><53><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="PCS<43><53><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="PCS<43><53><EFBFBD>ز<EFBFBD>" />
|
||||
<DRAW type="DRAW" name="PCS<43><53><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ" />
|
||||
<DRAW type="DRAW" name="<22><>ҳ" />
|
||||
<DRAW type="DRAW" name="<22><>ʷ<EFBFBD><CAB7><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="ʵʱ<CAB5><CAB1><EFBFBD><EFBFBD>" />
|
||||
<DRAW type="DRAW" name="ҳü" />
|
||||
</List>
|
||||
63
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/FlashList.xml
Normal file
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<FlashList>
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="9" dlowdata="" zone="<22>е<EFBFBD>/<><CEA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="10" dlowdata="" zone="<22>е<EFBFBD>/<><CEA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="11" dlowdata="" zone="<22>е<EFBFBD>/<><CEA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="12" dlowdata="" zone="<22>е<EFBFBD>/<><CEA2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="40" dlowdata="" zone="<22><EFBFBD><F1B7A2BD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="41" dlowdata="" zone="<22><EFBFBD><F1B7A2BD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="42" dlowdata="" zone="<22><EFBFBD><F1B7A2BD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="43" dlowdata="" zone="<22><EFBFBD><F1B7A2BD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="71" dlowdata="" zone="PCS<43><53><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="72" dlowdata="" zone="PCS<43><53><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="73" dlowdata="" zone="PCS<43><53><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="74" dlowdata="" zone="PCS<43><53><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="102" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="103" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="104" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="105" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="133" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="134" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="135" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="136" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="164" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="165" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="166" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="167" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="195" dlowdata="" zone="<22><EFBFBD><E0B9A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="196" dlowdata="" zone="<22><EFBFBD><E0B9A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="197" dlowdata="" zone="<22><EFBFBD><E0B9A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="198" dlowdata="" zone="<22><EFBFBD><E0B9A6><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="226" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="227" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="228" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="229" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="257" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="258" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="259" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="260" dlowdata="" zone="<22>߲˹<DFB2><CBB9><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="288" dlowdata="" zone="<22><>ˮ<EFBFBD><CBAE>ˮ<EFBFBD>ܵ<EFBFBD><DCB5><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="289" dlowdata="" zone="<22><>ˮ<EFBFBD><CBAE>ˮ<EFBFBD>ܵ<EFBFBD><DCB5><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="290" dlowdata="" zone="<22><>ˮ<EFBFBD><CBAE>ˮ<EFBFBD>ܵ<EFBFBD><DCB5><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="291" dlowdata="" zone="<22><>ˮ<EFBFBD><CBAE>ˮ<EFBFBD>ܵ<EFBFBD><DCB5><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="319" dlowdata="" zone="<22><>װ<EFBFBD><D7B0><EFBFBD>Թ<EFBFBD><D4B9><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="320" dlowdata="" zone="<22><>װ<EFBFBD><D7B0><EFBFBD>Թ<EFBFBD><D4B9><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="321" dlowdata="" zone="<22><>װ<EFBFBD><D7B0><EFBFBD>Թ<EFBFBD><D4B9><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="322" dlowdata="" zone="<22><>װ<EFBFBD><D7B0><EFBFBD>Թ<EFBFBD><D4B9><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="350" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="351" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="352" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="353" dlowdata="" zone="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="381" dlowdata="" zone="<22><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="382" dlowdata="" zone="<22><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="383" dlowdata="" zone="<22><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="384" dlowdata="" zone="<22><><EFBFBD><EFBFBD>1" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="412" dlowdata="" zone="<22><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="413" dlowdata="" zone="<22><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="414" dlowdata="" zone="<22><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="415" dlowdata="" zone="<22><><EFBFBD><EFBFBD>2" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="443" dlowdata="" zone="<22><><EFBFBD><EFBFBD>3" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="444" dlowdata="" zone="<22><><EFBFBD><EFBFBD>3" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="445" dlowdata="" zone="<22><><EFBFBD><EFBFBD>3" time="10" />
|
||||
<Data bline="0" mode="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" bcheck="0" dupdata="" index="446" dlowdata="" zone="<22><><EFBFBD><EFBFBD>3" time="10" />
|
||||
</FlashList>
|
||||
61
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/GLList.xml
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<GLList>
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,0,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3725" name="var3725" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,1,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3726" name="var3726" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,2,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3727" name="var3727" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD>ص<EFBFBD>ѹ<EFBFBD><D1B9>" note="" func="GetWordBitToWord(var479,3,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3728" name="var3728" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD>س<EFBFBD><D8B3>粻<EFBFBD><E7B2BB><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,4,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3729" name="var3729" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD>ͨ<EFBFBD>Ź<EFBFBD><C5B9><EFBFBD>" note="" func="GetWordBitToWord(var479,5,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3730" name="var3730" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ֱ<><D6B1>ĸ<EFBFBD>߹<EFBFBD>ѹ" note="" func="GetWordBitToWord(var479,6,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3731" name="var3731" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ֱ<><D6B1>ĸ<EFBFBD>߶<EFBFBD>·" note="" func="GetWordBitToWord(var479,7,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3732" name="var3732" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD>Ӵ<EFBFBD><D3B4><EFBFBD><EFBFBD><EFBFBD>·" note="" func="GetWordBitToWord(var479,8,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3733" name="var3733" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD>Ӵ<EFBFBD><D3B4><EFBFBD><EFBFBD><EFBFBD>·" note="" func="GetWordBitToWord(var479,9,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3734" name="var3734" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,10,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3735" name="var3735" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,11,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3736" name="var3736" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD>ؽӷ<D8BD><D3B7><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,12,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3737" name="var3737" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="DC<44>Ӵ<EFBFBD><D3B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,13,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3738" name="var3738" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="BMSͨ<53>Ź<EFBFBD><C5B9><EFBFBD>" note="" func="GetWordBitToWord(var479,14,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3739" name="var3739" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȱ<EFBFBD><C8B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var479,15,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3740" name="var3740" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ" note="" func="GetWordBitToWord(var480,0,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3741" name="var3741" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD>Ƿѹ" note="" func="GetWordBitToWord(var480,1,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3742" name="var3742" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var480,2,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3743" name="var3743" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD>쳣" note="" func="GetWordBitToWord(var480,3,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3744" name="var3744" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>µ<EFBFBD>ЧӦ<D0A7><D3A6><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var480,4,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3745" name="var3745" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD>߹<EFBFBD><DFB9><EFBFBD>" note="" func="GetWordBitToWord(var480,5,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3746" name="var3746" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><D7B9><EFBFBD>" note="" func="GetWordBitToWord(var480,6,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3747" name="var3747" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><>Ե<EFBFBD>迹<EFBFBD>쳣" note="" func="GetWordBitToWord(var480,7,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3748" name="var3748" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD>طŵ粻<C5B5><E7B2BB><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var480,8,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3749" name="var3749" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѹ<EFBFBD><D1B9><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var480,9,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3750" name="var3750" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="15V<35><56>Դ<EFBFBD><D4B4><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var480,10,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3751" name="var3751" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȹ<EFBFBD><C8B9><EFBFBD>" note="" func="GetWordBitToWord(var480,11,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3752" name="var3752" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD>ع<EFBFBD><D8B9><EFBFBD>" note="" func="GetWordBitToWord(var480,12,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3753" name="var3753" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD>ػ<EFBFBD>" note="" func="GetWordBitToWord(var480,13,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3754" name="var3754" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͬ<EFBFBD><CDAC>" note="" func="GetWordBitToWord(var480,14,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3755" name="var3755" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="CT<43><54><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var480,15,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3756" name="var3756" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var481,0,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3757" name="var3757" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>澯<EFBFBD><E6BEAF>" note="" func="GetWordBitToWord(var481,1,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3758" name="var3758" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬<D7B4><CCAC>" note="" func="GetWordBitToWord(var481,2,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3759" name="var3759" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ֱ<><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7>״̬" note="" func="GetWordBitToWord(var482,0,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3760" name="var3760" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ֱ<><D6B1><EFBFBD>Ӵ<EFBFBD>״̬" note="" func="GetWordBitToWord(var482,1,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3761" name="var3761" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7>״̬" note="" func="GetWordBitToWord(var482,2,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3762" name="var3762" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD>Ӵ<EFBFBD><D3B4><EFBFBD>״̬" note="" func="GetWordBitToWord(var482,3,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3763" name="var3763" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7>״̬" note="" func="GetWordBitToWord(var482,4,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3764" name="var3764" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD>Ӵ<EFBFBD><D3B4><EFBFBD>״̬" note="" func="GetWordBitToWord(var482,5,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3765" name="var3765" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var483,0,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3766" name="var3766" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ֱ<><D6B1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬" note="" func="GetWordBitToWord(var483,1,2)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3767" name="var3767" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>״̬" note="" func="GetWordBitToWord(var483,3,3)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3768" name="var3768" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><EFBFBD><DEB9><EFBFBD><EFBFBD>ڷ<EFBFBD>ʽ" note="" func="GetWordBitToWord(var483,6,2)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3769" name="var3769" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="Զ<><D4B6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28>DZ<EFBFBD>)" note="" func="GetWordBitToWord(var483,15,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3769" name="var3769" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22>ɽӵ<C9BD>" note="" func="GetWordBitToWord(var484,0,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3770" name="var3770" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD>" note="" func="GetWordBitToWord(var484,1,2)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3771" name="var3771" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22>ɽӵ<C9BD>ͣ<EFBFBD><CDA3>1" note="" func="GetWordBitToWord(var484,3,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3772" name="var3772" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22>ɽӵ<C9BD>ͣ<EFBFBD><CDA3>2" note="" func="GetWordBitToWord(var484,4,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3773" name="var3773" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22>Ž<EFBFBD>" note="" func="GetWordBitToWord(var484,5,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3774" name="var3774" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ƶ<EFBFBD>ź<EFBFBD>" note="" func="GetWordBitToWord(var484,6,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3775" name="var3775" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22><><EFBFBD><EFBFBD><EFBFBD>澯" note="" func="GetWordBitToWord(var484,7,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3776" name="var3776" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="<22>¶ȸ澯<C8B8><E6BEAF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>澯<EFBFBD><E6BEAF>" note="" func="GetWordBitToWord(var484,8,1)" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3777" name="var3777" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ʵʱ<CAB5><CAB1><EFBFBD><EFBFBD>1" note="" func="" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3778" name="var3778" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ʵʱ<CAB5><CAB1><EFBFBD><EFBFBD>2" note="" func="" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3779" name="var3779" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ʵʱ<CAB5><CAB1><EFBFBD><EFBFBD>3" note="" func="" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3780" name="var3780" zone="ȫ<><C8AB>" almstr="" />
|
||||
<Data iolink="ֻ<><D6BB> 0 1 " desc="ʵʱ<CAB5><CAB1><EFBFBD><EFBFBD>4" note="" func="" unit="mA" type="ģ<><C4A3><EFBFBD><EFBFBD>" flash="" index="3781" name="var3781" zone="ȫ<><C8AB>" almstr="" />
|
||||
</GLList>
|
||||
857
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/H-PCS逆变信息.svg
Normal file
|
After Width: | Height: | Size: 47 KiB |
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<List>
|
||||
<LINK ramid="0" path="../drives/TPC-Linux(32bit)/ModBus<75>豸/modbusTCP" prog="modbusTCP" type="NET" name="modbusTCP" bstop="0" rdy="<22><><EFBFBD><EFBFBD>·" />
|
||||
</List>
|
||||
10
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/NET.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="gbk"?>
|
||||
<NET>
|
||||
<bCrcMode>1</bCrcMode>
|
||||
<bClientMode>0</bClientMode>
|
||||
<sUnitMode>mainSit</sUnitMode>
|
||||
<rbIp1>192.168.1.102</rbIp1>
|
||||
<rbIp2>192.168.1.101</rbIp2>
|
||||
<iHeartTime>5</iHeartTime>
|
||||
<iCycSQLTime>15</iCycSQLTime>
|
||||
</NET>
|
||||
1359
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/PCS1.svg
Normal file
|
After Width: | Height: | Size: 71 KiB |
1321
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/PCS2.svg
Normal file
|
After Width: | Height: | Size: 69 KiB |
1321
3.Document/青海能高储能EMS工程/上位机工程/工控机192.168.1.101/PCS3.svg
Normal file
|
After Width: | Height: | Size: 69 KiB |