第一次提交

Signed-off-by: facat@lab.com <facat@lab.com>
This commit is contained in:
facat@lab.com 2014-11-21 16:54:13 +08:00
commit d810b413a1
29 changed files with 5011 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.pro.user*
*.bak
*.orig

39
CIMforReduceLoss.pro Normal file
View File

@ -0,0 +1,39 @@
QT += core
QT -= gui
TARGET = Qt_AsyCallExtApp
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp \
derivedqthread.cpp \
cimparserbatch.cpp \
readxml/transformerparser.cpp \
readxml/topology.cpp \
readxml/qt_readxml.cpp \
readxml/output5.cpp \
readxml/output4.cpp \
readxml/output3.cpp \
readxml/output2.cpp \
readxml/output1.cpp \
readxml/output.cpp \
readxml/mainfun.cpp \
readxml/linetypeparser.cpp \
readxml/input.cpp \
readxml/DealData.cpp \
readxml/callmain.cpp \
readxml/Interface.cpp \
readxml/output6.cpp \
readxml/output7.cpp
HEADERS += \
derivedqthread.h \
cimparserbatch.h \
readxml/transformerparser.h \
readxml/qt_readxml.h \
readxml/linetypeparser.h \
readxml/head.h

317
cimparserbatch.cpp Normal file
View File

@ -0,0 +1,317 @@
#include "cimparserbatch.h"
#include "derivedqthread.h"
#include <QtDebug>
int callmain(char *arg);
CIMParserBatch::CIMParserBatch()
{
}
void CIMParserBatch::parser(const QString& dir, const QString &scadaDataFilePath)
{
QDir qdir(dir);
QStringList filter;
filter<<"*";
this->mdirList=qdir.entryInfoList(filter,QDir::NoDotAndDotDot | QDir::AllDirs);
this->mite=this->mdirList.constBegin();//后面会用到就是dir文件下的所有文件
this->ReadscadaData(scadaDataFilePath);
//this->ExecuteParserApp(NULL);
//this->GenerateBatchFile("c:/parser.bat");
this->CallFunParser();
}
QString CIMParserBatch::FindXML(const QString& dir)
{
QDir qdir(dir);
QStringList filter;
filter<<"*.xml";
QFileInfoList xmlList;
xmlList=qdir.entryInfoList(filter);
if(xmlList.size()>1)
{
std::cout<<dir.toStdString()<<"has more than one xml file."<<std::endl;
return "";
}
if(xmlList.size()==0)
{
std::cout<<"could not find any xml in "<<dir.toStdString()<<std::endl;
return "";
}
return xmlList.at(0).absoluteFilePath();
}
void CIMParserBatch::ExecuteParserApp(QThread *thread)
{
if(thread!=NULL)
{
thread->deleteLater();
//先把上一次解析得到的文件拷回去
QFileInfoList fileList=this->FindiPsoPrefixedFile("c:/parser");
QFileInfo info;
info=*(this->mite);//原始文件的路径
if(fileList.size()<6)
{
std::cout<<info.baseName().toStdString()<<"parsed, but got fewer files."<<std::endl;
}
QString fileName;
QString desFilePath;
fileName=info.fileName();//原始文件的文件名,其实是文件夹名
desFilePath=info.absoluteFilePath();
desFilePath.replace('/','\\');
QString parseFileName;
QFileInfo parseFileInfo;
QString transNoLoad;
QString parsedFile;//计算文件
for(QFileInfoList::const_iterator ite=fileList.constBegin();
ite!=fileList.constEnd();
ite++
)
{
parseFileInfo=*ite;
parseFileName=parseFileInfo.fileName();
if(parseFileName.contains("TransformerNoLoad"))
{
transNoLoad=desFilePath+"\\iPso_"+fileName+"_TransformerNoLoad.txt";
QFile::remove(transNoLoad);
QFile::copy(parseFileInfo.absoluteFilePath(),transNoLoad);
continue;
}
if(parseFileName.contains("TransformerNoResistance"))
{
continue;
}
if(parseFileName.contains("TransformerInfor"))
{
continue;
}
if(parseFileName.contains("LineInfor"))
{
continue;
}
if(parseFileName.contains("lineZeroResistance"))
{
continue;
}
parsedFile=desFilePath+"\\iPso_"+fileName+".txt";
QFile::remove(parsedFile);
QFile::copy(parseFileInfo.absoluteFilePath(),parsedFile);//TODO:这里会多拷贝一次
//开始安放pqi.txt文件
QFile::remove(desFilePath+"\\pqi.txt");
QFile pqi(desFilePath+"\\pqi.txt");
QString lineName;
if(pqi.open(QIODevice::WriteOnly))
{
lineName=fileName.section('_',0,0);
if(this->mScada.contains(lineName))
{
QTextStream stream(&pqi);
FeederData feederData=this->mScada[lineName];
stream<<feederData.p<<" "<<feederData.q<<" "<<0<<endl;
}
else
{
std::cout<<"pqi of "<<lineName.toStdString()<<" not found."<<std::endl;
}
pqi.close();
}
}
this->mite++;
}
if(this->mite==this->mdirList.constEnd())
{
std::cout<<"job finished."<<std::endl;
return;
}
QString xmlFile;
QString dir;//有xml文件的dir
QFileInfo fileInfo=*(this->mite);
dir=fileInfo.absoluteFilePath();
xmlFile=this->FindXML(dir);
if(xmlFile=="")
{
return;
}
QFile::remove("c:/parser/parser.xml");
QFile::copy(xmlFile,"c:/parser/parser.xml");
std::cout<<"prepare to parse "<<xmlFile.toStdString()<<std::endl;
QFileInfo sizeInfo;
DerivedQThread *_thread;
sizeInfo=QFileInfo(xmlFile);
_thread=new DerivedQThread("E:/lineloss/console/run.bat c:/parser/parser.xml",this);
_thread->connect(_thread,SIGNAL(finishedptr(QThread*)),this,SLOT(ExecuteParserApp(QThread*)));
_thread->start();
}
QFileInfoList CIMParserBatch::FindiPsoPrefixedFile(const QString& dir)
{
QDir qdir(dir);
QStringList filter;
filter<<"iPso_*";
return qdir.entryInfoList(filter);//如果找不到iPso开头的文件返回的QFileInfoList长度为0。
}
void CIMParserBatch::ReadscadaData(const QString& dataPath)
{
QString line;
QStringList sep;
QFile file(dataPath);
if(file.open(QIODevice::ReadOnly))
{
QTextStream stream(&file);
while(!stream.atEnd())
{
line=stream.readLine();
line=line.simplified();
line.trimmed();
sep=line.split(' ');
if(sep.size()<3)
{
std::cout<<"scada file format error!"<<std::endl;
qApp->exit();
}
FeederData feederData;
feederData.p=sep.at(1).toDouble();
feederData.q=sep.at(2).toDouble();
this->mScada.insert(sep.at(0),feederData);
}
file.close();
}
else
{
std::cout<<"scada File not open. This file may not exist."<<std::endl;
}
}
void CIMParserBatch::GenerateBatchFile(const QString& batFilePath)
{
QFile bat(batFilePath);
QString fullFilePath;
QFileInfo info;
QString xmlFile;
if(bat.open(QIODevice::WriteOnly))
{
QTextStream stream(&bat);
while(this->mite!=this->mdirList.constEnd())
{
info=*(this->mite);
fullFilePath=info.absoluteFilePath();
xmlFile=this->FindXML(fullFilePath);
//stream<<"call ";
stream<<"E:/lineloss/console/readxml1.exe ";
stream<<xmlFile<<"\n\r";
this->mite++;
}
bat.close();
}
std::cout<<"job finished."<<std::endl;
}
void CIMParserBatch::CallFunParser()
{
while(this->mite!=this->mdirList.constEnd())
{
QString xmlFile;
QString dir;//有xml文件的dir
QFileInfo fileInfo=*(this->mite);
dir=fileInfo.absoluteFilePath();
xmlFile=this->FindXML(dir);
if(xmlFile=="")
{
return;
}
//QFile::remove("c:/parser/parser.xml");
//QFile::copy(xmlFile,"c:/parser/parser.xml");
std::cout<<"prepare to parse "<<xmlFile.toLocal8Bit().data()<<std::endl;
//qDebug()<<xmlFile<<"\n";
callmain(const_cast<char *>(xmlFile.toStdString().c_str()));
//先把上一次解析得到的文件拷回去
//QFileInfoList fileList=this->FindiPsoPrefixedFile("c:/parser");
QFileInfo info(xmlFile);
// info=*(this->mite);//原始文件的路径
// if(fileList.size()<6)
// {
// std::cout<<info.baseName().toStdString()<<"parserd, but got fewer files."<<std::endl;
// }
// QString fileName;
QString desFilePath;
desFilePath=info.absolutePath();
// fileName=info.fileName();//原始文件的文件名,其实是文件夹名
// desFilePath=info.absoluteFilePath();
desFilePath.replace('/','\\');
// QString parseFileName;
// QFileInfo parseFileInfo;
// QString transNoLoad;
// QString parsedFile;//计算文件
// for(QFileInfoList::const_iterator ite=fileList.constBegin();
// ite!=fileList.constEnd();
// ite++
// )
// {
// parseFileInfo=*ite;
// parseFileName=parseFileInfo.fileName();
// if(parseFileName.contains("变压器无负载"))
// {
// transNoLoad=desFilePath+"\\iPso_"+fileName+"_变压器无负载.txt";
// QFile::remove(transNoLoad);
// QFile::copy(parseFileInfo.absoluteFilePath(),transNoLoad);
// continue;
// }
// if(parseFileName.contains("变压器无阻抗"))
// {
// continue;
// }
// if(parseFileName.contains("变压器信息"))
// {
// continue;
// }
// if(parseFileName.contains("线路信息"))
// {
// continue;
// }
// if(parseFileName.contains("线路零阻抗"))
// {
// continue;
// }
// parsedFile=desFilePath+"\\iPso_"+fileName+".txt";
// QFile::remove(parsedFile);
// QFile::copy(parseFileInfo.absoluteFilePath(),parsedFile);//TODO:这里会多拷贝一次
//开始安放pqi.txt文件
QFile::remove(desFilePath+"\\pqi.txt");
QFile pqi(desFilePath+"\\pqi.txt");
QString lineName;
lineName=info.fileName();
if(pqi.open(QIODevice::WriteOnly))
{
lineName=lineName.section('_',0,0);
if(this->mScada.contains(lineName))
{
QTextStream stream(&pqi);
FeederData feederData=this->mScada[lineName];
stream<<feederData.p<<" "<<feederData.q<<" "<<0<<endl;
}
else
{
std::cout<<"pqi of "<<lineName.toStdString()<<" not found."<<std::endl;
}
pqi.close();
}
this->mite++;
}
std::cout<<"job finished."<<std::endl;
}

34
cimparserbatch.h Normal file
View File

@ -0,0 +1,34 @@
#ifndef CIMPARSERBATCH_H
#define CIMPARSERBATCH_H
#include <QtCore>
#include <QDir>
#include <QStringList>
#include <iostream>
#include <QFile>
#include <QObject>
class CIMParserBatch:public QObject
{
Q_OBJECT
public:
typedef struct
{
double p;
double q;
}FeederData;
CIMParserBatch();
void parser(const QString& dir,const QString& scadaDataFilePath);
private:
QString FindXML(const QString& dir);//返回的是绝对路径
QFileInfoList FindiPsoPrefixedFile(const QString& dir);//得到那些解析得到的文体局,是有前缀的。
void ReadscadaData(const QString& dataPath);
void GenerateBatchFile(const QString& batFilePath);//直接生成一个bat文件算了。
void CallFunParser();
private slots:
void ExecuteParserApp(QThread *);
private:
QFileInfoList::const_iterator mite;//parser函数里用的
QFileInfoList mdirList;
QHash<QString,FeederData> mScada;
};
#endif // CIMPARSERBATCH_H

30
derivedqthread.cpp Normal file
View File

@ -0,0 +1,30 @@
#include "derivedqthread.h"
#include <QDebug>
int callmain(char *args);
DerivedQThread::DerivedQThread(const QString &exe, QObject *parent) :
QThread(parent),mExe(exe)
{
connect(this,SIGNAL(finished()),this,SLOT(customedfinished()));
}
void DerivedQThread::run()
{
QDateTime dateTime;
QTime second;
dateTime=QDateTime::currentDateTime();
second=QTime::currentTime();
QString id;
id=dateTime.toString();
id+=QString::number(second.second());
id+=QString::number(second.msec());
this->mid=QCryptographicHash::hash ( id.toLatin1(), QCryptographicHash::Md5 ).toHex();
//QProcess::execute(this->mExe);
//char s;
//std::string exe=this->mExe.toStdString();
callmain("c:/parser/parser.xml");
}
void DerivedQThread::customedfinished()
{
emit this->finishedptr(this);
}

28
derivedqthread.h Normal file
View File

@ -0,0 +1,28 @@
#ifndef DERIVEDQTHREAD_H
#define DERIVEDQTHREAD_H
#include <QObject>
#include <QProcess>
#include <QThread>
#include <QDateTime>
#include <QCryptographicHash>
class DerivedQThread : public QThread
{
Q_OBJECT
public:
explicit DerivedQThread(const QString &exe, QObject *parent = 0);
void run();
public:
QString mid;
protected:
QString mExe;
signals:
void finishedptr(QThread *);
protected slots:
void customedfinished();
};
#endif // DERIVEDQTHREAD_H

18
main.cpp Normal file
View File

@ -0,0 +1,18 @@
#include <QCoreApplication>
#include "cimparserbatch.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
// QTextCodec::setCodecForCStrings(QTextCodec::codecForName("GBK"));
// QTextCodec::setCodecForLocale(QTextCodec::codecForName("GBK"));
// QTextCodec::setCodecForTr(QTextCodec::codecForName("GBK"));
CIMParserBatch batch;
batch.parser("C:/4","C:/200027_.txt");
//batch.parser("C:/20","C:/scada/040039_.txt");
//batch.parser("C:/20","C:/scada/080004_.txt");
//batch.parser("C:/20","C:/scada/120001_.txt");
//batch.parser("C:/20","C:/scada/160020_.txt");
//batch.parser("C:/20","C:/scada/200027_.txt");
return a.exec();
}

185
readxml/DealData.cpp Normal file
View File

@ -0,0 +1,185 @@
#include "head.h"
#include "transformerparser.h"
#include "linetypeparser.h"
#include "qt_readxml.h"
void Qt_readxml::XmlReaderDealData()
{
qDebug()<<"Get Transformer Power:";
int trans_no=power_transformer.size();
double UN=10.5;
base_power[0].basePower=100;
double SB=base_power[0].basePower;
//double SB=100;
//QString transPowerData="E:\\line loss\\nn06302000.csv";
QString transPowerData="E:\\line loss\\lz00.csv";
QString transParaData="E:\\line loss\\trans.csv";
QString lineParaData="E:\\line loss\\LineType.txt";
if(!QFile::exists(transPowerData))
{
//std::cout<<"nn06302000 "<<"not found."<<std::endl;
std::cout<<"lz00.csv "<<"not found."<<std::endl;
}
if(!QFile::exists(transParaData))
{
std::cout<<"trans "<<"not found."<<std::endl;
}
if(!QFile::exists(lineParaData))
{
std::cout<<"LineType "<<"not found."<<std::endl;
}
for (int i=0;i<trans_no;i++)
{
int a=power_transformer[i].BaseVoltage_res[0].length();
QString b=power_transformer[i].BaseVoltage_res[0];
std::vector<List>::iterator it = find_if(list1.begin(), list1.end(), vector_finder(b.right(a-1)));
power_transformer[i].UB=base_voltage[it->no].nominalVoltage;
double UB=power_transformer[i].UB;
if (!power_transformer[i].ratedMVA)
{
power_transformer[i].ratedMVA=630;
}
double ratedMVA=power_transformer[i].ratedMVA/1000;
if (power_transformer[i].Model.trimmed()=="")
{
power_transformer[i].Model="S11-M";
}
power_transformer[i].APower=TransformerParser::GetTransformerAPower(transPowerData,power_transformer[i].Serial_Number);
power_transformer[i].BPower=TransformerParser::GetTransformerBPower(transPowerData,power_transformer[i].Serial_Number);
power_transformer[i].CPower=TransformerParser::GetTransformerCPower(transPowerData,power_transformer[i].Serial_Number);
power_transformer[i].Pk=TransformerParser::GetDisTransformerPk(transParaData,power_transformer[i].Model);
power_transformer[i].Uk=TransformerParser::GetDisTransformerUk(transParaData,power_transformer[i].Model);
double Pk=power_transformer[i].Pk;
double Uk=power_transformer[i].Uk;
power_transformer[i].AReactivePower=TransformerParser::GetTransformerAReactivePower(transPowerData,power_transformer[i].Serial_Number);
power_transformer[i].BReactivePower=TransformerParser::GetTransformerBReactivePower(transPowerData,power_transformer[i].Serial_Number);
power_transformer[i].CReactivePower=TransformerParser::GetTransformerCReactivePower(transPowerData,power_transformer[i].Serial_Number);
power_transformer[i].P0=TransformerParser::GetDisTransformerP0(transParaData,power_transformer[i].Model);
power_transformer[i].I0=TransformerParser::GetDisTransformerI0(transParaData,power_transformer[i].Model);
double P0=power_transformer[i].P0;
double I0=power_transformer[i].I0;
if (!power_transformer[i].Uk && !power_transformer[i].Pk)
{
QString newModel=power_transformer[i].Model+"-"+QString::number(ratedMVA*1000);
power_transformer[i].Pk=TransformerParser::GetDisTransformerPk(transParaData,newModel);
power_transformer[i].Uk=TransformerParser::GetDisTransformerUk(transParaData,newModel);
power_transformer[i].P0=TransformerParser::GetDisTransformerP0(transParaData,newModel);
power_transformer[i].I0=TransformerParser::GetDisTransformerI0(transParaData,newModel);
Pk=power_transformer[i].Pk;
Uk=power_transformer[i].Uk;
P0=power_transformer[i].P0;
I0=power_transformer[i].I0;
}
if (!power_transformer[i].Uk && !power_transformer[i].Pk)
{
// QString newModel="S11-M";
// power_transformer[i].Pk=TransformerParser::GetDisTransformerPk(transParaData,newModel);
// power_transformer[i].Uk=TransformerParser::GetDisTransformerUk(transParaData,newModel);
// power_transformer[i].P0=TransformerParser::GetDisTransformerP0(transParaData,newModel);
// power_transformer[i].I0=TransformerParser::GetDisTransformerI0(transParaData,newModel);
// Pk=power_transformer[i].Pk;
// Uk=power_transformer[i].Uk;
// P0=power_transformer[i].P0;
// I0=power_transformer[i].I0;
Pk=0.0001;
Uk=0.0001;
P0=0.0001;
I0=0.0001;
}
power_transformer[i].r=(Pk*UB*UB/(1000*ratedMVA*ratedMVA))*SB/(UN*UN);
power_transformer[i].x=(Uk*UB*UB/(100*ratedMVA))*SB/(UN*UN); //在这UN为基准电压UB为额定电压
power_transformer[i].g=(P0/(1000*UB*UB))*(UN*UN)/SB;
power_transformer[i].b=(I0*ratedMVA/(100*UB*UB))*(UN*UN)/SB;
}
qDebug()<<"Get Line Parameters:";
int ac_no=acline_segment.size();
for (int i=0;i<ac_no;i++)
{
int a=acline_segment[i].BaseVoltage_res[0].length();
QString b=acline_segment[i].BaseVoltage_res[0];
std::vector<List>::iterator it = find_if(list1.begin(), list1.end(), vector_finder(b.right(a-1)));
acline_segment[i].UB=base_voltage[it->no].nominalVoltage;
double UB=acline_segment[i].UB;
std::vector<AC_kind>::iterator ac = find_if(ac_kind.begin(), ac_kind.end(), ac_finder(acline_segment[i].GIS_ID));
double length=acline_segment[i].LongLength/(ac->quantity);
acline_segment[i].secLength = length;
if (!length)
{
length=0.3;
acline_segment[i].LongLength=length;
acline_segment[i].secLength = length;
}
if (acline_segment[i].Model.left(4)=="YJV-")
{
acline_segment[i].Model=acline_segment[i].Model.insert(3,"22");
}
else if (acline_segment[i].Model.left(5)=="YJLV-")
{
acline_segment[i].Model=acline_segment[i].Model.insert(4,"22");
}
else if (acline_segment[i].Model.left(9)=="JKLGYJ-10")
{
acline_segment[i].Model=acline_segment[i].Model+"/2";
}
else if (acline_segment[i].Model.left(9)=="JKLGYJ-16")
{
acline_segment[i].Model=acline_segment[i].Model+"/3";
}
else if (acline_segment[i].Model.left(9)=="JKLGYJ-25")
{
acline_segment[i].Model=acline_segment[i].Model+"/4";
}
else if (acline_segment[i].Model.left(9)=="JKLGYJ-35")
{
acline_segment[i].Model=acline_segment[i].Model+"/6";
}
else if (acline_segment[i].Model.left(9)=="JKLGYJ-50")
{
acline_segment[i].Model=acline_segment[i].Model+"/8";
}
else if (acline_segment[i].Model.left(9)=="JKLGYJ-70")
{
acline_segment[i].Model=acline_segment[i].Model+"/10";
}
else if (acline_segment[i].Model.left(9)=="JKLGYJ-95")
{
acline_segment[i].Model=acline_segment[i].Model+"/20";
}
else if (acline_segment[i].Model.left(10)=="JKLGYJ-120")
{
acline_segment[i].Model=acline_segment[i].Model+"/20";
}
else if (acline_segment[i].Model.left(10)=="JKLGYJ-150")
{
acline_segment[i].Model=acline_segment[i].Model+"/20";
}
else if (acline_segment[i].Model.left(10)=="JKLGYJ-185")
{
acline_segment[i].Model=acline_segment[i].Model+"/25";
}
else if (acline_segment[i].Model.left(10)=="JKLGYJ-240")
{
acline_segment[i].Model=acline_segment[i].Model+"/30";
}
else if (acline_segment[i].Model.left(10)=="JKLGYJ-300")
{
acline_segment[i].Model=acline_segment[i].Model+"/50";
}
acline_segment[i].x=(LineTypeParser::GetReactance(lineParaData,acline_segment[i].Model)*length)*SB/(UN*UN);
acline_segment[i].r=(LineTypeParser::GetResistance(lineParaData,acline_segment[i].Model)*length)*SB/(UN*UN);
if (acline_segment[i].r==0 && acline_segment[i].x==0)
{
acline_segment[i].r=0.8*length*SB/(UN*UN);
acline_segment[i].x=0.7*length*SB/(UN*UN);
// acline_segment[i].r=0.01;
// acline_segment[i].x=0.01;
}
total_length=total_length+length;
}
}

240
readxml/Interface.cpp Normal file
View File

@ -0,0 +1,240 @@
#include "head.h"
#include "transformerparser.h"
#include "linetypeparser.h"
#include "qt_readxml.h"
void Qt_readxml::XmlReaderInterface()
{
int subNo = substation.size();
for (int i=0;i<subNo;i++)
{
DisSubstation S;
S.CIMID = substation[i].ID;
S.Description = substation[i].description;
S.Name = substation[i].name;
dis_substation.push_back(S);
}
DisLine L;
QString b = acline_segment[0].MemberOf_EquipmentContainer_res[0];
int a = b.length();
std::vector<List>::iterator it = find_if(list1.begin(), list1.end(), vector_finder(b.right(a-1)));
L.CIMID = circuit[it->no].ID;
L.MemberOf = circuit[it->no].Substations_res[0];
dis_line.push_back(L);
//确定头结点
// int breakerNo = breaker.size();
// int headBus;
// for (int i=0;i<breakerNo;i++)
// {
// if (breaker[i].MemberOf_EquipmentContainer_res.size())
// {
// headBus = breaker[i].flag;
// }
// }
int headBus;
for (int i=0;i<subNo;i++)
{
if (substation[i].GIS_type == "1001")
{
int nodeNo=connectivity_node.size();
for (int j=0;j<nodeNo;j++)
{
if (connectivity_node[j].MemberOf_EquipmentContainer_res.size() && connectivity_node[j].flag)
{
QString a=connectivity_node[j].MemberOf_EquipmentContainer_res[0];
int b = a.length();
if (a.right(b-1)==substation[i].ID)
{
headBus = connectivity_node[j].flag;
break;
}
}
}
}
}
//重新安排节点序列
int lineNo = acline_segment.size();
int k = 1;
busContainer.clear();
busContainer.push_back(headBus);
busbar_section[headBus-1].busSequence = k;
k++;
while (busContainer.size())
{
int containNo=busContainer.size();
for (int i=0;i<containNo;i++)
{
int bus1 = busContainer[0];
busContainer.erase(busContainer.begin());
for (int j=0;j<lineNo;j++)
{
if (acline_segment[j].link_from == bus1)
{
int bus2 = acline_segment[j].link_to;
if (!busbar_section[bus2-1].busSequence)
{
busContainer.push_back(bus2);
busbar_section[bus2-1].busSequence = k;
}
}
else if (acline_segment[j].link_to == bus1)
{
int bus2 = acline_segment[j].link_from;
if (!busbar_section[bus2-1].busSequence)
{
busContainer.push_back(bus2);
busbar_section[bus2-1].busSequence = k;
}
}
}
}
k++;
}
//找到上一段线路
int smallNo;
int smallSequence;
int bus1;
int bus2;
int bus3;
int sequence1;
int sequence2;
int sequence3;
for (int i=0;i<lineNo;i++)
{
bus1 = acline_segment[i].link_from;
bus2 = acline_segment[i].link_to;
sequence1 = busbar_section[bus1-1].busSequence;
sequence2 = busbar_section[bus2-1].busSequence;
if (sequence1<sequence2 && sequence1!=0)
{
smallNo = bus1;
smallSequence = sequence1;
}
else if (sequence2<sequence1 && sequence2!=0)
{
smallNo = bus2;
smallSequence = sequence2;
}
for (int j=0;j<lineNo;j++)
{
if (acline_segment[j].link_from == smallNo)
{
bus3 = acline_segment[j].link_to;
sequence3 = busbar_section[bus3-1].busSequence;
if (sequence3 < smallSequence && sequence3!=0)
{
acline_segment[i].foreheadLine = acline_segment[j].ID;
acline_segment[i].foreheadI = j;
break;
}
}
if (acline_segment[j].link_to == smallNo)
{
bus3 = acline_segment[j].link_from;
sequence3 = busbar_section[bus3-1].busSequence;
if (sequence3 < smallSequence && sequence3!=0)
{
acline_segment[i].foreheadLine = acline_segment[j].ID;
acline_segment[i].foreheadI = j;
break;
}
}
}
}
//求线段深度
for (int i=0;i<lineNo;i++)
{
double depth = acline_segment[i].secLength;
int j = acline_segment[i].foreheadI;
while (j>=0)
{
depth = depth + acline_segment[j].secLength;
j = acline_segment[j].foreheadI;
}
acline_segment[i].depth = depth;
}
//找变压器的连接节段
int transNo = power_transformer.size();
for (int i=0;i<transNo;i++)
{
bus1 = power_transformer[i].link_1;
bus2 = power_transformer[i].link_2;
sequence1 = busbar_section[bus1-1].busSequence;
sequence2 = busbar_section[bus2-1].busSequence;
if(sequence1 == 0 )
{
smallSequence = sequence2;
smallNo = bus2;
}
else
{
smallSequence = sequence1;
smallNo = bus1;
}
for (int j=0;j<lineNo;j++)
{
if (acline_segment[j].link_from == smallNo)
{
bus3 = acline_segment[j].link_to;
sequence3 = busbar_section[bus3-1].busSequence;
if (sequence3 < smallSequence && sequence3!=0)
{
power_transformer[i].foreheadLine = acline_segment[j].ID;
break;
}
}
if (acline_segment[j].link_to == smallNo)
{
bus3 = acline_segment[j].link_from;
sequence3 = busbar_section[bus3-1].busSequence;
if (sequence3 < smallSequence && sequence3!=0)
{
power_transformer[i].foreheadLine = acline_segment[j].ID;
break;
}
}
}
}
for (int i=0;i<lineNo;i++)
{
DisSecNode S;
S.ID = acline_segment[i].ID;
S.Name = acline_segment[i].name;
S.FatherID = acline_segment[i].foreheadLine;
S.LineType = acline_segment[i].Model;
S.UnitR = acline_segment[i].r;
S.B = acline_segment[i].x;
S.G = 0;
S.SecLong = acline_segment[i].secLength;
S.Depth = acline_segment[i].depth;
dis_sec_node.push_back(S);
}
for (int i=0;i<transNo;i++)
{
DisTrans T;
T.ID = power_transformer[i].ID;
T.Name = power_transformer[i].name;
T.SecNode = power_transformer[i].foreheadLine;
T.Ps = power_transformer[i].Pk;
T.P0 = power_transformer[i].P0;
T.Up = 0;
T.Ip = power_transformer[i].I0;
T.RunRate = 0;
T.Type = power_transformer[i].Model;
T.LineID = dis_line[0].CIMID;
T.S = power_transformer[i].ratedMVA;
dis_trans.push_back(T);
}
}

23
readxml/callmain.cpp Normal file
View File

@ -0,0 +1,23 @@
//#include <QApplication>
#include <QtCore>
//#include "./line_loss.h"
#include "mainfun.cpp"
#include <iostream>
int callmain(char * args)
{
//QApplication a(argn,args);
//line_loss w(0);
//w.show();
//std::cout<<argn<<" parameters."<<std::endl;
// if(!QFile::exists(args[1]))
// {
// std::cout<<args[1]<<" not exist."<<std::endl;
// return -1;
// }
//std::cout<<"parseing "<<args[1]<<std::endl;
mainfun(args);
//return a.exec();
return 0;
}

324
readxml/head.h Normal file
View File

@ -0,0 +1,324 @@
#ifndef UIREADER_H
#define UIREADER_H
//#include <QtGui>
#include <QXmlStreamReader>
#include <vector>
#include <assert.h>
#include <math.h>
#include <QIODevice>
#include <QTextStream>
#include <QFile>
#include <iostream>
class total
{
public:
QString ID;
QString description;
QString name;
int flag;
std::vector<QString> Terminal_res;
int island;
};
class List
{
public:
QString ID;
QString name;
int no;
int flag;
};
class AC_kind
{
public:
QString GIS_ID;
int quantity;
int calculateTimes;
};
class Substation:public total
{
public:
std::vector<QString> MemberOf_SubControlArea_res;
QString GIS_type;
};
class Terminal:public total
{
public:
std::vector<QString> ConductingEquipment_res;
std::vector<QString> ConnectivityNode_res;
};
class BaseVoltage:public total
{
public:
double nominalVoltage;
std::vector<QString> BasePower_res;
};
class BasePower:public total
{
public:
double basePower;
};
class ConnectivityNode:public total
{
public:
std::vector<QString> MemberOf_EquipmentContainer_res;
};
class ACLineSegment:public total
{
public:
double LongLength;
double secLength; //每节段长度
int foreheadI; //上一节段是第i号线路
double depth; //节段的深度
QString Model;
std::vector<QString> BaseVoltage_res;
int link_from;
int link_to;
std::vector<QString> MemberOf_EquipmentContainer_res;
double r;
double x;
double UB;
QString GIS_ID;
QString foreheadLine;
};
class LoadBreakSwitch:public total
{
public:
QString normalOpen;
std::vector<QString> MemberOf_EquipmentContainer_res;
std::vector<QString> BaseVoltage_res;
std::vector<QString> Circuits_res;
};
class BusbarSection:public total
{
public:
QString Normal_Voltage;
std::vector<QString> MemberOf_EquipmentContainer_res;
std::vector<QString> BaseVoltage_res;
double PG;
double QG;
double PL;
double QL;
double UB;
int busSequence;
};
class Disconnector:public total
{
public:
QString normalOpen;
std::vector<QString> MemberOf_EquipmentContainer_res;
std::vector<QString> BaseVoltage_res;
std::vector<QString> Circuits_res;
};
class PowerTransformer:public total
{
public:
std::vector<QString> MemberOf_EquipmentContainer_res;
std::vector<QString> Circuits_res;
std::vector<QString> BaseVoltage_res;
QString Serial_Number;
int link_1;
int link_2;
int link_3;
int low;
double ratedMVA;
double APower;
double BPower;
double CPower;
QString Model;
double r;
double x;
double Pk;
double Uk;
double UB;
double AReactivePower;
double BReactivePower;
double CReactivePower;
double g;
double b;
double P0;
double I0;
bool isPublic;
QString foreheadLine;
QString type;
};
class TransformerWinding:public total
{
public:
std::vector<QString> MemberOf_PowerTransformer_res;
std::vector<QString> BaseVoltage_res;
};
class GroundDisconnector:public total
{
public:
QString normalOpen;
std::vector<QString> Circuits_res;
std::vector<QString> BaseVoltage_res;
std::vector<QString> MemberOf_EquipmentContainer_res;
};
class CompositeSwitch:public total
{
public:
QString CompositeSwitchType;
std::vector<QString> Circuits_res;
};
class Circuit:public total
{
public:
std::vector<QString> Substations_res;
};
class Bay:public total
{
public:
std::vector<QString> MemberOf_Substation_res;
std::vector<QString> BaseVoltage_res;
};
class Connector:public total
{
public:
std::vector<QString> MemberOf_EquipmentContainer_res;
int link_from;
int link_to;
};
class Fuse:public total
{
public:
QString normalOpen;
std::vector<QString> BaseVoltage_res;
std::vector<QString> Circuits_res;
};
class Pole:public total
{
public:
std::vector<QString> BaseVoltage_res;
std::vector<QString> Circuits_res;
};
class Breaker:public total
{
public:
int GIS_ID;
std::vector<QString> BaseVoltage_res;
std::vector<QString> MemberOf_EquipmentContainer_res;
};
class vector_finder //得到与ID号相对应的索引
{
public:
vector_finder(QString a):m_i_a(a){}
bool operator ()(const std::vector<List>::value_type &value)
{
return value.ID == m_i_a;
}
private:
QString m_i_a;
};
class ac_finder
{
public:
ac_finder(QString a):m_i_a(a){}
bool operator ()(const std::vector<AC_kind>::value_type &value)
{
return value.GIS_ID == m_i_a;
}
private:
QString m_i_a;
};
class bus_finder
{
public:
bus_finder(int a):m_i_a(a){}
bool operator ()(const std::vector<PowerTransformer>::value_type &value)
{
return value.low == m_i_a;
}
private:
int m_i_a;
};
class DisSubstation
{
public:
QString Name;
QString CIMID;
QString Description;
QString MemberOf;
};
class DisLine
{
public:
QString Name;
QString CIMID;
QString Owner;
QString MemberOf;
};
class DisSecNode
{
public:
QString Name;
QString ID;
QString FatherID;
QString LineType;
QString LineID;
double Depth;
double UnitR;
double SecLong;
double G;
double B;
};
class DisTrans
{
public:
QString ID;
QString Name;
QString SecNode;
double Ps;
double P0;
double Up;
double Ip;
double RunRate;
QString Type;
QString UserType;
QString LineID;
double S;
};
#endif

1162
readxml/input.cpp Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,68 @@
#include "linetypeparser.h"
#include <QFile>
//#include <QMessageBox>
QSharedPointer<LineTypeParser::HashType> LineTypeParser::msharedPointer=QSharedPointer<LineTypeParser::HashType>();
LineTypeParser::LineTypeParser(QObject *parent) :
QObject(parent)
{
}
void LineTypeParser::ReadData(const QString &file)
{
if(!QFile::exists(file))
{
//QMessageBox::warning(0,"警告","线路型号文件不存在!");
return;
}
QFile _file(file);
if(_file.open(QIODevice::ReadOnly))
{
QString line;
QStringList sep;
QTextStream stream(&_file);
while(!stream.atEnd())
{
line=stream.readLine();
sep=line.split(',');
LineParameter linePara;
linePara.x=0.4;
linePara.r=sep.at(8).toDouble();
QHash<QString,LineParameter> *hash=LineTypeParser::msharedPointer.data();//仅仅为了后面使用方便。
QString lineType=sep.at(1);
lineType.remove(0,1);
lineType.remove(lineType.length()-1,1);
(*hash)[lineType.trimmed()]=linePara;
}
_file.close();
}
}
double LineTypeParser::GetReactance(const QString &file, const QString &type)
{
if(LineTypeParser::msharedPointer.isNull())
{
LineTypeParser::msharedPointer=QSharedPointer<LineTypeParser::HashType>(new HashType);
LineTypeParser::ReadData(file);
}
QHash<QString,LineParameter> hash=*LineTypeParser::msharedPointer;//仅仅为了后面使用方便。
return hash[type.trimmed()].x;
}
double LineTypeParser::GetResistance(const QString &file, const QString &type)
{
if(LineTypeParser::msharedPointer.isNull())
{
LineTypeParser::msharedPointer=QSharedPointer<LineTypeParser::HashType>(new HashType);
LineTypeParser::ReadData(file);
}
QHash<QString,LineParameter> hash=*LineTypeParser::msharedPointer;//仅仅为了后面使用方便。
return hash[type.trimmed()].r;
}

33
readxml/linetypeparser.h Normal file
View File

@ -0,0 +1,33 @@
#ifndef LINETYPEPARSER_H
#define LINETYPEPARSER_H
#include <QObject>
#include <QtCore>
#include <QSharedPointer>
#include <QHash>
#include <QStringList>
class LineTypeParser : public QObject
{
Q_OBJECT
typedef struct
{
double x;
double r;
} LineParameter;
typedef QHash<QString,LineParameter> HashType;
private:
static QSharedPointer<HashType> msharedPointer;
public:
static double GetReactance(const QString &file,const QString &type);
static double GetResistance(const QString &file,const QString &type);
private:
explicit LineTypeParser(QObject *parent = 0);
static void ReadData(const QString &file);
signals:
public slots:
};
#endif // LINETYPEPARSR_H

117
readxml/mainfun.cpp Normal file
View File

@ -0,0 +1,117 @@
#include <QtCore/QCoreApplication>
#include <QtCore/QTextCodec>
#include "head.h"
#include "transformerparser.h"
#include "linetypeparser.h"
#include <QFileInfo>
#include <iostream>
#include <fstream>
#include <QTextStream>
//extern vector<QString> ResContainer;
//extern vector<QString> Notfound;
//extern int i1;
//extern int i2;
//extern int i3;
//extern int i4;
//extern int i5;
//extern int i6;
//extern int i7;
//extern int i8;
//extern int i9;
//extern int i10;
//extern int i11;
//extern int i12;
//extern int i13;
//extern int i14;
//extern int i15;
//extern int i16;
//extern int i17;
//extern int i18;
//extern int i19;
#include "qt_readxml.h"
int mainfun(const QString &CIMFile)
{
// QTextCodec::setCodecForCStrings(QTextCodec::codecForName("GBK"));
// QTextCodec::setCodecForLocale(QTextCodec::codecForName("GBK"));
// QTextCodec::setCodecForTr(QTextCodec::codecForName("GBK"));
//QCoreApplication a(argc, argv);
//QTextCodec::setCodecForTr(QTextCodec::codecForName("gb18030"));
//QString CircuitName="朝电914";
std::cout<<"parseing "<<CIMFile.toLocal8Bit().data()<<std::endl;
QFile file(CIMFile);
Qt_readxml reader;
if(file.open(QIODevice::ReadOnly))
{
std::cout<<"File has loaded..."<<std::endl;
reader.XmlReaderreadFile(&file);
reader.XmlReaderTopologyAnalyse();
reader.XmlReaderDealData();
// reader.XmlReaderInterface();
QFileInfo fileInfo(CIMFile);
QFile file_output(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+".txt");
file_output.open(QIODevice::WriteOnly);
reader.XmlReaderwriteFile(&file_output);
file_output.close();//杜孟远
QFile file_output1(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_lineZeroResistance.txt");
file_output1.open(QIODevice::WriteOnly);
reader.XmlReaderzero_rx(&file_output1);
// QFile fi("out.txt");
// fi.open(QIODevice::Append);
// QTextStream re(&fi);
// for(int i=0;i<reader.power_transformer.size();i++)
// {
// PowerTransformer trans=reader.power_transformer.at(i);
// re<<trans.Model<<endl;
// }
// fi.close();
QFile file_output2(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_TransformerNoLoad.txt");
file_output2.open(QIODevice::WriteOnly);
reader.XmlReadernone_trans_pq(&file_output2);
QFile file_output3(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_TransformerNoResistance.txt");
file_output3.open(QIODevice::WriteOnly);
reader.XmlReadernone_trans_rx(&file_output3);
QFile file_output4(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_LineInfor.txt");
file_output4.open(QIODevice::WriteOnly);
reader.XmlReaderline_info(&file_output4);
QFile file_output5(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_TransformerInfor.txt");
file_output5.open(QIODevice::WriteOnly);
reader.XmlReadertrans_info(&file_output5);
QFile file_totalLineLength(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_LineTotalLength.txt");
file_totalLineLength.open(QIODevice::WriteOnly);
reader.XmlReaderTotalLineLenghth(&file_totalLineLength);
QFile file_output6(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_ContactPoint.txt");
file_output6.open(QIODevice::WriteOnly);
reader.XmlReaderContactPoint(&file_output6);
QFile file_output7(fileInfo.path()+"\\iPso_"+fileInfo.baseName()+"_DisnetReconfig.txt");
file_output7.open(QIODevice::WriteOnly);
reader.XmlReaderDisnetReconfig(&file_output7);
file_totalLineLength.close();
file_output1.close();
file_output2.close();
file_output3.close();
file_output4.close();
file_output5.close();
file_output6.close();
file_output7.close();
file.close();
return 0;
}
else
{
std::cout<<"No file to read..."<<std::endl;
return -1;
}
}

768
readxml/nn06302000.csv Normal file
View File

@ -0,0 +1,768 @@
用户编号,测量点名称,时间,P,,,,Q,,,,U,,,I,,,COS,,,,零序电流(A),运行状态,变电站名称,台区编号
,,,Pz(kW),Pa(kW),Pb(kW),Pc(kW),Qz(kVar),Qa(kVar),Qb(kVar),Qc(kVar),Ua(V),Ub(V),Uc(V),Ia(A),Ib(A),Ic(A),Cos,Cosa,Cosb,Cosc,,,,
,天桃路1号公变交流采样,2012-09-25 00:00,1.0996,0.3718,0.4025,0.3252,0.1600,0.0792,0.0601,0.0205,233.1000,233.8000,234.3000,1.6300,1.7400,1.3900,0.9900,0.9800,0.9900,1.0000,0.4600,运行,,01200081
,星湖路2号公变交流采样,2012-09-25 00:00,0.3079,0.1618,0.0655,0.0805,-0.5023,-0.1121,-0.2017,-0.1885,231.4000,243.5000,238.1000,0.8500,0.8700,0.8600,-0.5200,-0.8200,-0.3100,-0.3900,0.5000,故障,,01225337
,星湖北二里1号公变交流采样,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,242.1000,241.9000,241.8000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,0.0000,运行,,01225333
,星湖路3号公变交流采样,2012-09-25 00:00,0.5174,0.1804,0.1906,0.1463,0.0393,0.0243,0.0084,0.0065,224.5000,221.7000,225.0000,0.8100,0.8600,0.6500,1.0000,0.9900,1.0000,1.0000,0.2700,运行,,01225338
,园湖路1号公变交流采样,2012-09-25 00:00,0.0648,0.0183,0.0000,0.0465,0.0195,0.0071,0.0000,0.0124,243.2000,241.3000,239.5000,0.0800,0.0000,0.2000,0.9600,0.9300,1.0000,0.9700,0.1600,运行,,01200240
,星湖北二里2号公变交流采样,2012-09-25 00:00,0.5633,0.2388,0.2261,0.0983,0.0398,-0.0532,0.0702,0.0228,235.1000,241.4000,245.6000,1.0400,0.9800,0.4100,1.0000,-0.9800,0.9500,0.9700,0.1800,运行,,01225334
,星湖北一里2号公变交流采样,2012-09-25 00:00,0.0366,0.0074,0.0195,0.0096,-0.0066,-0.0011,-0.0026,-0.0028,244.3000,243.5000,245.3000,0.0300,0.0800,0.0400,-0.9800,-0.9900,-0.9900,-0.9600,0.0500,运行,,01225336
,天桃路3号公变交流采样,2012-09-25 00:00,0.4350,0.1308,0.1147,0.1894,0.0119,0.0101,0.0102,-0.0084,234.0000,234.7000,233.8000,0.5600,0.4900,0.8100,1.0000,1.0000,1.0000,1.0000,0.2800,运行,,01201902
,建政南路1号公变交流采样,2012-09-25 00:00,1.4087,0.4162,0.4082,0.5842,0.1193,0.0185,0.0365,0.0642,242.1000,242.4000,240.8000,1.7200,1.6900,2.4400,1.0000,1.0000,1.0000,0.9900,0.8300,运行,,01200148
,新民路4号公变交流采样,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,236.2000,236.2000,234.9000,0.0000,0.0000,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,运行,,01225541
,东葛路3号公变交流采样,2012-09-25 00:00,0.2381,0.0915,0.0780,0.0685,0.0069,0.0130,-0.0060,0.0000,242.6000,243.9000,244.0000,0.3800,0.3200,0.2800,1.0000,0.9900,-1.0000,1.0000,0.1300,运行,,01225650
,凌铁村2号公变交流采样,2012-09-25 00:00,1.4758,0.5316,0.4123,0.5318,0.0411,0.0335,-0.0260,0.0336,237.7000,238.7000,237.8000,2.2400,1.7300,2.2400,1.0000,1.0000,-1.0000,1.0000,0.5500,运行,,01200074
,共和路5号公变交流采样,2012-09-25 00:00,0.7514,0.2150,0.3427,0.1936,0.0601,0.0135,0.0343,0.0122,224.2000,222.1000,233.5000,0.9600,1.5500,0.8300,1.0000,1.0000,1.0000,1.0000,0.6400,运行,,01225314
,新民路5号公变交流采样,2012-09-25 00:00,0.1850,0.0417,0.0946,0.0486,-0.0080,-0.0088,0.0084,-0.0076,235.6000,231.2000,233.5000,0.1800,0.4100,0.2100,-1.0000,-0.9800,1.0000,-0.9900,0.2300,运行,,01225542
,建政路3号公变交流采样,2012-09-25 00:00,0.5668,0.1875,0.2042,0.1749,-0.0111,-0.0118,-0.0129,0.0135,243.8000,243.4000,243.4000,0.7700,0.8400,0.7200,-1.0000,-1.0000,-1.0000,1.0000,0.1000,运行,,01200162
,鲤湾路2号公变交流采样,2012-09-25 00:00,0.2654,0.0584,0.1181,0.0889,0.0507,0.0133,0.0184,0.0189,238.9000,238.6000,238.6000,0.2500,0.5000,0.3800,0.9800,0.9800,0.9900,0.9800,0.1900,运行,,01201366
,民族路1号公变交流采样,2012-09-25 00:00,0.4761,0.1551,0.1470,0.1739,0.1048,0.0338,0.0461,0.0247,244.0000,244.2000,243.7000,0.6500,0.6300,0.7200,0.9800,0.9800,0.9500,0.9900,0.1400,运行,,01200088
,东葛路6号公变交流采样,2012-09-25 00:00,0.7692,0.2728,0.2086,0.2877,0.0637,0.0244,0.0265,0.0128,228.1000,228.4000,228.4000,1.2000,0.9200,1.2600,1.0000,1.0000,0.9900,1.0000,0.2700,故障,,01225079
,津头街2号公变交流采样,2012-09-25 00:00,1.3298,0.4086,0.4893,0.4318,0.2066,0.0181,0.0764,0.1119,239.1000,232.4000,234.7000,1.7100,2.1300,1.9000,0.9900,1.0000,0.9900,0.9700,0.1600,运行,,01225312
,南国街4号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01225524
,地质调查所1号公变交流采样,2012-09-25 00:00,0.1520,0.0302,0.0549,0.0667,0.0152,0.0075,0.0024,0.0051,238.1000,238.3000,238.4000,0.1300,0.2300,0.2800,1.0000,0.9700,1.0000,1.0000,0.1400,运行,,00011291
,东葛路7号公变交流采样,2012-09-25 00:00,0.2312,0.0809,0.0797,0.0705,0.0968,0.0126,0.0397,0.0444,240.2000,240.1000,237.7000,0.3400,,,,,,0.8500,,运行,,01225080
,长岗路5号公变交流采样,2012-09-25 00:00,0.7248,0.2768,0.3143,0.1336,0.1956,0.0562,0.0604,0.0789,222.3000,220.6000,133.7000,1.2700,1.4500,1.1600,0.9600,0.9800,0.9800,0.8600,0.3600,运行,,01225057
,建政路1号公变交流采样,2012-09-25 00:00,0.5581,0.2693,0.1094,0.1793,0.0792,0.0320,0.0259,0.0213,244.1000,244.0000,243.8000,1.1100,0.4600,0.7400,0.9900,0.9900,0.9700,0.9900,0.5400,运行,,01200161
,鲤湾路1号公变交流采样,2012-09-25 00:00,0.3258,0.1150,0.1049,0.1058,-0.1377,-0.0514,,,,,,,,,,,,-0.9100,,运行,,01225059
,民族大道1号公变交流采样,2012-09-25 00:00,0.2523,0.0911,0.1014,0.0598,0.0556,0.0115,0.0171,0.0269,241.1000,244.3000,242.2000,0.3800,0.4200,0.2700,0.9800,0.9900,0.9900,0.9100,0.1300,运行,,01200611
,古城路3号公变交流采样,2012-09-25 00:00,0.2739,0.0910,0.1081,0.0746,0.0066,0.0081,-0.0048,0.0033,239.9000,240.1000,240.4000,0.3800,0.4500,0.3100,1.0000,1.0000,-1.0000,1.0000,0.1500,运行,,01225319
,竹溪路3号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01002696
,古城路1号公变交流采样,2012-09-25 00:00,0.3706,0.1446,0.1163,0.1097,0.0963,0.0261,0.0325,0.0375,236.7000,236.4000,236.2000,0.6200,0.5100,0.4900,0.9700,0.9800,0.9600,0.9500,0.1500,运行,,01200180
,星湖北一里1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01225335
,植物路1号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,01227693
,共和路4号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01225313
,津头街1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01200083
,南国街1号公变交流采样,2012-09-25 00:00,0.6718,0.3195,0.0000,0.3523,0.1631,0.0795,0.0000,0.0836,237.6000,238.4000,237.5000,1.3900,0.0000,1.5300,0.9700,0.9700,0.0000,0.9700,0.4800,运行,,01200273
,青山路1号公变交流采样,2012-09-25 00:00,0.0190,0.0000,0.0173,0.0017,-0.0029,0.0000,0.0023,-0.0052,230.1000,230.2000,230.4000,0.0000,0.0700,0.0200,0.9900,0.0000,0.9900,0.3200,0.0300,运行,,01200097
,桃源路1号公变交流采样,2012-09-25 00:00,0.9675,0.2538,0.4038,0.3099,0.2451,0.0677,0.1066,0.0709,234.3000,233.8000,234.1000,1.1300,1.7900,1.3700,0.9700,0.9700,0.9700,0.9800,0.6300,运行,,01200075
,桃源路2号公变交流采样,2012-09-25 00:00,0.4855,0.1963,0.1640,0.1252,0.0922,0.0366,0.0317,0.0239,223.0000,219.5000,222.8000,0.9100,0.7700,0.5800,0.9800,0.9800,0.9800,0.9800,0.2800,运行,,01200091
,桃源路3号公变交流采样,2012-09-25 00:00,0.1109,0.0412,0.0254,0.0443,0.0318,0.0176,0.0084,0.0058,226.6000,226.4000,226.4000,0.2000,0.1200,0.2000,0.9600,0.9200,0.9500,0.9900,0.0300,运行,,01200099
,桃源路4号公变交流采样,2012-09-25 00:00,0.2823,0.0608,0.1245,0.0969,0.0408,0.0161,0.0130,0.0115,225.0000,224.7000,224.6000,0.2900,0.5600,0.4500,0.9900,0.9700,1.0000,0.9900,0.2600,运行,,01200080
,园湖路4号公变交流采样,2012-09-25 00:00,0.0962,0.0464,0.0295,0.0202,0.0378,0.0055,0.0263,0.0059,232.9000,231.3000,231.6000,0.2000,,,,,,0.9600,,运行,,01200164
,新民路3号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01200166
,建政路4号公变交流采样,2012-09-25 00:00,0.8211,0.2364,0.2844,0.3042,0.1572,0.0460,0.0618,0.0442,224.1000,222.4000,222.6000,1.0800,1.3200,1.3900,0.9800,0.9800,0.9800,0.9900,0.3600,运行,,01200163
,建政路5号公变交流采样,2012-09-25 00:00,0.3075,0.1574,0.0752,0.0750,0.0359,0.0124,0.0071,0.0157,224.5000,223.5000,223.2000,0.7200,0.3500,0.3500,0.9900,1.0000,1.0000,0.9800,0.3500,运行,,01225052
,民主路4号公变交流采样,2012-09-25 00:00,0.5073,0.1903,0.1705,0.1462,0.0000,0.0034,0.0023,-0.0068,238.8000,239.2000,239.0000,0.8100,0.7200,0.6200,1.0000,1.0000,1.0000,1.0000,0.1500,运行,,01200165
,思贤路3号公变交流采样,2012-09-25 00:00,1.0175,0.3112,0.4660,0.2402,0.2701,0.0978,0.1162,0.0560,246.7000,232.7000,240.3000,1.3200,2.0900,1.0400,0.9700,0.9500,0.9700,0.9700,0.4300,运行,,01200243
,新竹路2号公变交流采样,2012-09-25 00:00,0.7827,0.3038,0.2878,0.1910,0.2340,0.1191,0.0782,0.0367,239.8000,238.4000,246.0000,1.3600,1.2500,0.7900,0.9600,0.9300,0.9600,0.9800,0.6300,运行,,01200179
,思贤路4号公变交流采样,2012-09-25 00:00,0.2509,0.0956,0.0589,0.0963,0.0190,0.0173,-0.0236,0.0253,242.5000,243.2000,242.5000,0.4000,0.2600,0.4100,1.0000,0.9800,-0.9300,0.9700,0.2500,运行,,01200772
,双拥路1号公变交流采样,2012-09-25 00:00,0.6095,0.1794,0.1959,0.2341,0.0500,0.0079,0.0087,0.0333,239.2000,238.9000,238.7000,0.7500,0.8200,0.9900,1.0000,1.0000,1.0000,0.9900,0.2300,运行,,01200089
,新竹路1号公变交流采样,2012-09-25 00:00,0.4107,0.1033,0.1318,0.1755,0.0386,0.0065,0.0058,0.0262,219.9000,219.6000,218.9000,0.4700,0.6000,0.8100,1.0000,1.0000,1.0000,0.9900,0.2500,运行,,01200182
,新竹路4号公变交流采样,2012-09-25 00:00,0.1005,0.0215,0.0436,,,,0.0033,0.0100,243.2000,242.1000,243.4000,0.0900,,,,,,0.9600,,运行,,01225523
,新竹路3号公变交流采样,2012-09-25 00:00,,,,,,,0.0283,0.0310,235.7000,234.9000,234.9000,0.7300,0.9000,1.1200,0.9900,0.9900,0.9900,0.9900,0.3500,运行,,01225522
,思贤路2号公变交流采样,2012-09-25 00:00,0.1325,0.0572,0.0288,0.0464,0.0311,0.0100,0.0057,0.0154,241.2000,242.9000,243.3000,0.2400,0.1200,0.2000,0.9700,0.9900,0.9800,0.9500,0.1300,运行,,01225526
,双拥路3号公变交流采样,2012-09-25 00:00,0.3805,0.1539,0.1243,0.1022,0.0644,0.0287,0.0311,0.0045,236.9000,237.0000,237.5000,0.6600,0.5400,0.4300,0.9900,0.9800,0.9700,1.0000,0.1500,运行,,01200247
,中山路1号公变交流采样,2012-09-25 00:00,0.9097,0.3832,0.1504,0.3760,0.0997,,,,,,,,,1.5900,0.9900,0.9900,1.0000,0.9900,0.9700,运行,,01200078
,新兴苑5号公变交流采样,2012-09-25 00:00,0.0143,0.0025,0.0044,0.0074,-0.0092,-0.0021,-0.0028,-0.0042,232.1000,231.3000,231.1000,0.0100,0.0200,0.0400,0.8400,1.0000,1.0000,1.0000,0.0200,运行,,01225370
,新民路6号公变交流采样,2012-09-25 00:00,0.4284,0.2345,0.0881,0.1065,0.0869,0.0701,0.0203,-0.0038,241.8000,242.2000,241.9000,1.0200,0.3800,0.4400,0.9800,0.9600,0.9700,1.0000,0.5200,运行,,01200300
,桃源路5号公变交流采样,2012-09-25 00:00,0.4304,0.1310,0.1277,0.1717,0.0928,0.0290,0.0347,0.0290,231.8000,232.0000,231.1000,0.5900,0.5800,0.7700,0.9800,0.9800,0.9600,0.9900,0.1700,运行,,01225361
,教育路1号公变交流采样,2012-09-25 00:00,0.7877,0.2636,0.2651,0.2620,0.2698,0.1112,0.0824,0.0751,221.5000,221.2000,221.8000,1.3100,1.3000,1.2200,0.9500,0.9200,0.9600,0.9600,0.1700,运行,,01200096
,建政路6号公变交流采样,2012-09-25 00:00,0.3059,0.1068,0.0608,0.1384,0.0530,0.0203,0.0092,0.0233,241.4000,245.7000,241.2000,0.4600,0.2700,0.5900,0.9900,0.9800,0.9900,0.9900,0.2900,运行,,01225596
,园湖路东一里1号公变交流采样,2012-09-25 00:00,0.1123,0.0000,0.0840,0.0282,0.0269,0.0000,,,,,,,0.3800,0.1200,0.9700,1.0000,0.9500,-1.0000,0.3800,运行,,01225330
,新竹小区1号公变交流采样,2012-09-25 00:00,0.5403,0.1060,0.1994,0.2349,0.0321,0.0221,0.0100,0.0000,237.0000,237.0000,236.2000,0.4600,0.8500,1.0100,1.0000,0.9800,1.0000,1.0000,0.1600,运行,,01200186
,中山路3号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01200090
,新竹小区4号公变交流采样,2012-09-25 00:00,0.2754,0.1081,0.0817,0.0855,-0.0398,-0.0068,-0.0143,-0.0186,230.0000,229.9000,229.8000,0.4700,0.3600,0.3800,-0.9900,-1.0000,-0.9900,-0.9800,0.1000,运行,,01225041
,新竹小区5号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01225053
,新竹小区7号公变交流采样,2012-09-25 00:00,0.5891,0.1257,0.2814,0.1820,0.0132,-0.0126,0.0177,0.0081,242.5000,234.8000,245.9000,0.5200,1.2000,0.7400,1.0000,-1.0000,1.0000,1.0000,0.5700,运行,,01225055
,新竹小区2号公变交流采样,2012-09-25 00:00,0.5519,0.1778,0.2481,0.1259,0.0863,0.0289,0.0403,0.0170,230.7000,230.4000,230.7000,0.7800,1.0900,0.5500,0.9900,0.9900,0.9900,0.9900,0.4700,运行,,01200185
,建政南路2号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,01225306
,新竹南一里1号公变公变交流采样,2012-09-25 00:00,0.8514,0.2254,0.3325,0.2934,0.3151,0.0898,0.1217,0.1035,237.7000,237.5000,237.4000,1.0200,1.4900,1.3100,0.9400,0.9300,0.9400,0.9400,0.4300,运行,,01200181
,长岗三组1号公变终端交流采样,2012-09-25 00:00,0.9498,0.3542,0.2840,0.3116,0.0616,0.0157,0.0179,0.0279,230.1000,231.2000,233.3000,1.5400,1.2300,1.3400,1.0000,1.0000,1.0000,1.0000,0.3400,运行,,01227459
,津头一组公变终端交流采样,2012-09-25 00:00,0.9621,0.2877,0.3648,0.3096,0.1198,0.0128,0.0759,0.0310,239.8000,231.3000,239.2000,1.2000,1.6100,1.3000,0.9900,1.0000,0.9800,1.0000,0.4100,运行,,01201320
,中雅1号配变交采,2012-09-25 00:00,0.5026,0.3829,0.0317,0.0879,0.0336,0.0316,-0.0029,0.0054,235.2000,236.7000,235.8000,1.6400,0.1400,0.3800,1.0000,1.0000,1.0000,1.0000,1.3800,运行,,01200265
,琅东六、七组公变交采,2012-09-25 00:00,1.5646,0.5114,0.4537,0.5995,-0.1403,-0.0490,-0.0317,-0.0596,241.8000,240.7000,240.4000,2.1300,1.9100,2.5300,-1.0000,-1.0000,-1.0000,-1.0000,0.1700,运行,,01702396
,琅东四、五组公变交采,2012-09-25 00:00,0.6437,0.2005,0.2450,0.2043,0.0877,0.0151,0.0409,0.0317,240.7000,240.0000,240.5000,0.8300,1.0500,0.8700,0.9900,1.0000,0.9900,0.9900,0.5400,运行,,
,葛麻三、四组公变交采,2012-09-25 00:00,2.0195,0.5755,0.6953,0.7462,0.2892,0.0593,0.1120,0.1147,232.5000,232.6000,231.1000,2.5300,3.0700,3.3000,0.9900,1.0000,0.9900,0.9900,0.6700,运行,,01226229
,长岗1、2组1号公变交采,2012-09-25 00:00,0.9736,0.2612,0.3628,0.3369,0.0295,-0.0030,0.0007,0.0279,242.6000,242.1000,241.3000,1.1000,1.5700,1.4600,1.0000,1.0000,1.0000,1.0000,0.4400,运行,,01227463
,长岗1、2组2号公变交采,2012-09-25 00:00,1.0036,0.2951,0.3032,0.4053,-0.0254,-0.0153,-0.0101,0.0000,234.4000,233.7000,233.7000,1.3200,1.3500,1.8000,1.0000,1.0000,1.0000,1.0000,0.1600,运行,,01227464
,长岗1、3组公变交采,2012-09-25 00:00,0.6607,0.2200,0.2019,0.2383,0.0603,0.0177,0.0135,0.0293,242.5000,242.0000,241.6000,0.9300,0.8500,1.0000,1.0000,1.0000,1.0000,0.9900,0.4800,运行,,00022321
,长岗二组1号公变交采,2012-09-25 00:00,1.5141,0.4519,0.4321,0.6301,0.0957,0.0115,0.0503,0.0339,221.2000,221.2000,220.7000,2.0800,2.0200,2.9300,1.0000,1.0000,0.9900,1.0000,0.7100,运行,,01227462
,长岗二组2号公变交采,2012-09-25 00:00,1.1202,-0.2381,0.7426,0.6126,0.4943,0.5258,0.0316,-0.0608,224.1000,229.4000,243.4000,2.7400,3.3100,2.7400,0.9200,-0.4100,1.0000,1.0000,4.5500,运行,,01227465
,葛麻二组新居公变交采,2012-09-25 00:00,0.9257,0.2815,0.3464,0.2904,0.1754,0.0525,0.0631,0.0597,240.9000,239.3000,240.6000,1.1900,1.4900,1.2500,0.9800,0.9800,0.9800,0.9800,0.2300,运行,,00022324
,南湖二组公变交采,,,,,,,,,,,,,,,,,,,,,运行,,01201311
,南湖一组公变交采,,,,,,,,,,,,,,,,,,,,,运行,,01201310
,津头三组公变交采,,,,,,,,,,,,,,,,,,,,,运行,,01201318
,津头二组公变交采,2012-09-25 00:00,1.7286,0.5739,0.5333,0.6227,0.1799,0.0555,0.0701,0.0531,234.3000,235.0000,234.8000,2.4900,2.3200,2.7100,0.9900,1.0000,0.9900,1.0000,1.1600,运行,,00022316
,双拥路5号公变交采,2012-09-25 00:00,0.8482,0.2081,0.2348,0.4065,0.0665,0.0152,0.0110,0.0413,224.2000,224.0000,222.7000,0.9700,1.0700,1.8400,1.0000,1.0000,1.0000,0.9900,0.9800,运行,,01227692
,天桃路2号公变交流采样,2012-09-25 00:00,0.1889,0.0903,0.0541,0.0445,0.1230,0.0463,0.0374,0.0395,220.4000,224.8000,222.5000,0.4600,0.3000,0.2700,0.8400,0.8900,0.8200,0.7500,0.2100,运行,,01200254
,公安村2号配变交采,2012-09-25 00:00,0.2147,0.1239,0.0438,0.0466,0.0230,0.0174,0.0139,-0.0089,226.1000,225.7000,226.2000,0.5600,0.2100,0.2200,0.9900,0.9900,0.9600,0.9900,0.4700,运行,,01225591
,公安村1号配变交采,2012-09-25 00:00,0.1525,0.1045,0.0473,0.0001,0.0101,0.0110,-0.0018,0.0008,226.6000,223.5000,0.0000,0.4700,0.2100,0.2000,1.0000,1.0000,1.0000,1.0000,0.5600,运行,,01225590
,公安村3号配变交采,2012-09-25 00:00,0.2475,0.1293,0.0488,0.0706,0.0241,0.0143,-0.0034,0.0130,225.6000,226.8000,225.9000,0.5800,0.2200,0.3200,1.0000,0.9900,1.0000,0.9800,0.4400,运行,,01225592
,中天世纪花园1号配变,2012-09-25 00:00,0.0905,0.1220,0.0859,-0.1176,0.0182,0.0220,0.0162,-0.0182,243.0000,242.6000,242.0000,0.5100,0.3600,0.5000,0.9900,0.9900,0.9900,0.9900,0.9200,运行,,01003237
,中天世纪花园2号配变,2012-09-25 00:00,0.3842,0.1092,0.1354,0.1430,0.0675,0.0065,0.0269,0.0343,243.0000,242.2000,242.0000,0.4600,0.5800,0.6100,0.9900,1.0000,0.9800,0.9800,0.4200,运行,,01003238
,中天世纪花园3号配变,2012-09-25 00:00,0.4047,0.1104,0.1165,0.1776,0.0212,0.0052,0.0053,0.0106,231.5000,231.2000,229.4000,0.4800,0.5100,0.7800,1.0000,1.0000,1.0000,1.0000,0.5000,运行,,00141399
,中天世纪花园4号配变,,,,,,,,,,,,,,,,,,,,,运行,,00141400
,新竹小区8号公变交流采样,2012-09-25 00:00,0.5410,0.1687,0.2437,0.1286,0.0288,0.0184,0.0104,0.0000,239.6000,239.5000,240.2000,0.7100,1.0200,0.5400,1.0000,0.9900,1.0000,1.0000,0.1500,故障,,01701217
,新竹小区9号公变交流采样,2012-09-25 00:00,0.4365,0.1502,0.1288,0.1575,0.0059,0.0059,0.0000,0.0000,236.6000,236.6000,236.9000,0.6500,0.5500,0.6900,1.0000,1.0000,1.0000,1.0000,0.0300,故障,,01701218
,斯壮花园1号配变交采,2012-09-25 00:00,0.3415,0.0958,0.1186,0.1281,0.0478,0.0044,0.0307,0.0142,231.5000,231.2000,230.9000,0.4200,0.5300,0.5600,0.9900,1.0000,0.9700,0.9900,0.2800,运行,,00017065
,斯壮花园2号配变交采,2012-09-25 00:00,0.3888,0.1585,0.1128,0.1178,0.0402,0.0231,0.0108,0.0062,230.7000,231.1000,230.7000,0.7000,0.5000,0.5200,0.9900,0.9900,1.0000,1.0000,0.4600,运行,,00017066
,大地华城1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01226360
,大地华城2号配变交采,2012-09-25 00:00,0.2427,0.1372,0.0574,0.0483,0.0106,0.0068,0.0024,0.0015,230.9000,231.5000,231.1000,0.6000,0.2600,0.2100,1.0000,1.0000,1.0000,1.0000,0.3900,运行,,01226361
,金花苑配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01002860
,迷你居钻石屋配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01003248
,东波苑1号配变交采,2012-09-25 00:00,0.2270,0.0899,0.0728,0.0644,0.0129,0.0066,0.0035,0.0027,229.1000,229.6000,229.2000,0.4000,0.3200,0.2800,1.0000,1.0000,1.0000,1.0000,0.2100,运行,,01201755
,东波苑2号配变交采,2012-09-25 00:00,0.2033,0.1022,0.0585,0.0422,0.0078,0.0003,0.0039,0.0045,229.2000,229.5000,229.4000,0.4500,0.2600,0.1900,1.0000,1.0000,1.0000,1.0000,0.3900,运行,,01201756
,聚云轩配变,2012-09-25 00:00,0.0933,0.0309,0.0282,0.0342,0.0137,0.0054,0.0074,0.0009,232.8000,232.0000,231.9000,0.1400,0.1300,0.1500,0.9900,0.9900,0.9800,1.0000,0.1100,运行,,01124711
,富城1号配变交采,2012-09-25 00:00,0.1846,0.1017,0.0001,0.0830,0.0309,0.0007,-0.0005,0.0307,231.9000,232.3000,232.1000,0.4400,0.0100,0.3800,0.9900,1.0000,1.0000,0.9400,0.4000,运行,,01225617
,聚雅轩、贵城配变交采,2012-09-25 00:00,0.3455,0.1189,0.0937,0.1326,0.0876,0.0331,0.0280,0.0263,243.2000,243.7000,243.1000,0.5100,0.4000,0.5600,0.9700,0.9600,0.9600,0.9800,0.3300,运行,,01225616
,福兴园1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225511
,康平公寓配变交采,2012-09-25 00:00,0.1440,0.0454,0.0388,0.0596,0.0281,0.0118,0.0157,0.0007,234.8000,235.1000,234.7000,0.2000,0.1800,0.2600,0.9800,0.9700,0.9300,1.0000,0.2300,运行,,01125453
,岭南家园1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,00018767
,岭南家园2号配变交采,2012-09-25 00:00,0.2898,0.1157,0.0904,0.0835,0.0511,0.0178,0.0156,0.0177,236.2000,236.4000,236.5000,0.5000,0.3900,0.3600,0.9800,0.9900,0.9900,0.9800,0.2800,运行,,00018768
,岭南家园3号配变交采,2012-09-25 00:00,0.1587,0.0558,0.0367,0.0666,0.0311,0.0084,0.0029,0.0199,237.1000,237.3000,236.9000,0.2400,0.1600,0.2900,0.9800,0.9900,1.0000,0.9600,0.2100,运行,,00018769
,永凯现代花园1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01226063
,建政路2号公变交流采样,2012-09-25 00:00,0.7320,0.2217,0.2827,0.2276,0.1470,0.0181,0.0648,0.0641,243.6000,239.4000,243.4000,0.9100,1.2000,0.9600,0.9800,1.0000,0.9700,0.9600,0.0400,故障,,01200239
,古城路2号公变交流采样,2012-09-25 00:00,0.4203,0.1403,0.1315,0.1485,0.0690,0.0226,0.0227,0.0237,241.9000,242.4000,243.7000,0.5900,0.5500,0.6100,0.9900,0.9900,0.9900,0.9900,0.0100,故障,,01200255
,新民路1号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01200077
,新竹小区3号公变交流采样,2012-09-25 00:00,0.4068,0.1829,0.0119,0.2120,0.0618,0.0480,-0.0135,0.0273,232.0000,228.5000,235.1000,0.8300,0.0900,0.9300,0.9900,0.9700,0.6600,0.9900,0.2400,故障,,01200220
,新竹小区6号公变交流采样,2012-09-25 00:00,0.3929,0.1521,0.1490,0.0918,0.0191,0.0141,0.0000,0.0050,227.3000,235.7000,233.7000,0.6900,0.6300,0.4000,1.0000,1.0000,1.0000,1.0000,0.1000,故障,,01225054
,园湖路2号公变交流采样,2012-09-25 00:00,0.1778,0.0659,0.0225,0.0894,0.0663,0.0256,0.0063,0.0344,241.4000,241.5000,241.7000,0.2900,0.1000,0.3900,0.9400,0.9300,0.9600,0.9300,0.0800,故障,,01200145
,园湖路3号公变交流采样,2012-09-25 00:00,1.0496,0.4279,0.3298,0.2919,0.2408,0.0950,0.0736,0.0722,238.4000,237.7000,238.5000,1.8600,1.4300,1.2800,0.9700,0.9800,0.9800,0.9700,0.1700,故障,,01200147
,园湖路6号公变交流采样,2012-09-25 00:00,0.0480,0.0000,0.0156,0.0324,-0.0281,0.0000,-0.0281,0.0000,249.3000,247.8000,248.6000,0.0000,0.1200,0.1300,0.8600,0.0000,0.4900,1.0000,0.0000,故障,,01225318
,园湖路7号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01225317
,思贤路1号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01200095
,怡景公寓1号公变交流采样,2012-09-25 00:00,0.1388,0.0379,0.0554,0.0455,-0.0519,-0.0163,-0.0168,-0.0188,230.4000,230.0000,229.6000,0.1800,0.2500,0.2100,0.9400,0.9200,0.9600,0.9200,0.0200,故障,,01225331
,怡景公寓2号公变交流采样,2012-09-25 00:00,0.1714,0.0671,0.0571,0.0472,-0.0499,-0.0185,-0.0166,-0.0148,230.2000,228.8000,231.0000,0.3200,0.2700,0.2200,0.9600,0.9600,0.9600,0.9500,0.0200,故障,,01225332
,新兴苑1号公变交流采样,2012-09-25 00:00,0.2954,0.0999,0.1088,0.0867,0.0458,0.0192,0.0126,0.0139,231.5000,231.2000,231.3000,0.4500,0.4900,0.3800,0.9900,0.9800,0.9900,0.9900,0.3500,故障,,01225366
,新兴苑2号公变交流采样,2012-09-25 00:00,0.2829,0.0980,0.0781,0.1068,0.0435,0.0138,0.0207,0.0087,231.3000,231.6000,231.0000,0.4300,0.3500,0.4700,0.9900,0.9900,0.9700,1.0000,0.3100,故障,,01225367
,新兴苑3号公变交流采样,2012-09-25 00:00,0.2432,0.0868,0.1009,0.0555,0.0285,0.0156,-0.0049,0.0177,230.5000,231.2000,233.4000,0.3900,0.4500,0.2500,0.9900,0.9900,1.0000,0.9500,0.4300,故障,,01225368
,新兴苑4号公变交流采样,2012-09-25 00:00,0.1907,0.0000,0.0971,0.0936,0.0256,0.0000,0.0087,0.0169,225.9000,226.2000,226.1000,0.0000,0.4300,0.4200,0.9900,1.0000,1.0000,0.9800,0.3900,运行,,01225369
,新兴苑6号公变交流采样,2012-09-25 00:00,0.2406,0.0678,0.0906,0.0827,-0.0347,-0.0167,-0.0147,-0.0033,231.6000,228.9000,233.8000,0.3000,0.4000,0.3600,0.9900,0.9700,0.9900,1.0000,0.2100,运行,,01225371
,新兴苑7号公变交流采样,2012-09-25 00:00,0.2664,0.0588,0.1447,0.0644,0.0799,0.0196,0.0416,0.0186,235.8000,233.7000,242.0000,0.2700,0.6500,0.2800,0.9600,0.9500,0.9600,0.9600,0.4000,故障,,01225372
,新兴苑8号公变交流采样,2012-09-25 00:00,0.2160,0.0840,0.0419,0.0940,0.0129,0.0077,-0.0101,0.0148,226.4000,226.0000,225.9000,0.3800,0.2000,0.4300,1.0000,1.0000,0.9700,0.9900,0.4900,运行,,01225373
,新兴苑9号公变交流采样,2012-09-25 00:00,0.1353,0.0533,0.0345,0.0476,0.0255,0.0106,0.0046,0.0102,226.1000,226.0000,226.0000,0.2400,0.1600,0.2200,0.9800,0.9800,1.0000,0.9800,0.1700,运行,,01225374
,新兴苑10号公变交流采样,2012-09-25 00:00,0.1847,0.0785,0.0458,0.0611,0.0097,0.0047,0.0024,0.0026,226.1000,225.9000,225.9000,0.3500,0.2100,0.2700,1.0000,1.0000,1.0000,1.0000,0.2500,故障,,01225375
,澳洲丽园1号公变交流采样,2012-09-25 00:00,0.2240,0.0742,0.0762,0.0751,0.0159,0.0058,0.0063,0.0046,224.8000,224.7000,224.5000,0.3300,0.3400,0.3400,1.0000,1.0000,1.0000,1.0000,0.1800,故障,,01225390
,澳洲丽园2号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01225391
,澳洲丽园3号公变交流采样,2012-09-25 00:00,0.2692,0.1371,0.0650,0.0670,0.0451,0.0184,0.0119,0.0147,235.5000,236.0000,,,,,,,,,,故障,,01225392
,澳洲丽园5号公变交流采样,2012-09-25 00:00,0.2937,0.0859,0.0865,0.1249,0.0646,0.0214,0.0215,0.0243,236.3000,236.1000,235.7000,0.3800,0.3800,0.5400,0.9800,0.9700,0.9700,0.9800,0.3000,故障,,01225393
,澳洲丽园6号公变交流采样,2012-09-25 00:00,0.3066,0.0948,0.0965,0.1165,0.0258,0.0102,0.0109,0.0047,225.0000,225.1000,224.6000,0.4300,0.4300,0.5200,1.0000,1.0000,0.9900,1.0000,0.2600,故障,,01225394
,南宁供电局水科所1号配变交采,2012-09-25 00:00,0.2884,0.0936,0.1058,0.0889,0.0139,0.0057,0.0076,0.0008,225.5000,225.4000,225.2000,0.4100,0.4700,0.3900,1.0000,1.0000,1.0000,1.0000,0.2800,运行,,01200223
,南宁供电局水科所2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01124467
,宁汇新天地1号配变交采,2012-09-25 00:00,0.1743,0.0597,0.0636,0.0540,0.0372,0.0165,0.0102,0.0107,236.4000,236.1000,237.5000,0.2700,0.2800,0.2300,0.9800,0.9800,0.9900,0.9800,0.1600,运行,,01003874
,宁汇新天地2号配变交采,2012-09-25 00:00,0.1448,0.0431,0.0501,0.0533,0.0364,0.0095,0.0106,0.0164,237.2000,237.2000,236.2000,0.1900,0.2100,0.2400,0.9800,0.9900,0.9900,0.9700,0.1200,运行,,01003878
,宁汇新天地3号配变交采,2012-09-25 00:00,0.2151,0.0717,0.0707,0.0721,0.0241,0.0073,0.0100,0.0067,224.9000,225.3000,225.1000,0.3200,0.3200,0.3200,0.9900,1.0000,0.9900,1.0000,0.1300,运行,,01003160
,东葛华都配变交采,2012-09-25 00:00,0.1825,0.0375,0.0839,0.0609,0.0228,0.0035,0.0116,0.0076,226.6000,225.8000,,,,,,,,,,运行,,01059585
,欧景庭园1号配变万通交采,2012-09-25 00:00,0.3149,0.0833,0.1204,0.1111,0.0595,0.0253,0.0197,0.0145,237.4000,236.9000,237.4000,0.3700,0.5200,0.4800,0.9800,0.9600,0.9900,1.0000,0.3400,运行,,01325501
,欧景庭园4号配变万通交采,2012-09-25 00:00,0.3505,0.0000,0.2066,0.1443,0.0368,0.0000,0.0151,0.0217,236.7000,236.5000,236.0000,0.0000,0.8800,0.6200,1.0000,1.0000,1.0000,0.9900,0.7500,运行,,01325504
,欧景庭园2号配变万通交采,2012-09-25 00:00,0.3212,0.0883,0.1110,0.1214,0.0386,0.0021,0.0286,0.0081,237.8000,236.9000,237.0000,0.3700,0.4900,0.5200,0.9900,1.0000,0.9700,1.0000,0.3700,运行,,01325502
,欧景庭园3号配变万通交采,2012-09-25 00:00,0.2864,0.1048,0.0939,0.0880,0.0463,0.0156,0.0176,0.0132,237.7000,237.0000,237.2000,0.4500,0.4100,0.3800,0.9900,0.9900,0.9800,0.9900,0.2600,运行,,01325503
,南国街2号公变交流采样,2012-09-25 00:00,0.0920,0.0745,0.0322,0.0497,0.0506,-0.0126,0.0711,-0.0079,244.3000,242.0000,245.1000,0.3100,0.3300,0.2100,0.8800,0.9900,-0.4100,0.9900,0.1200,运行,,01200101
,南国街3号公变交流采样,2012-09-25 00:00,0.0978,0.0000,0.0306,0.0672,-0.0319,0.0000,-0.0214,-0.0105,0.0000,247.8000,243.8000,0.3800,0.1500,0.2800,0.9500,0.0000,0.8200,0.9900,0.1500,故障,,01200084
,南环路1号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01200086
,南环路2号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01226491
,经文街1号公变交流采样,2012-09-25 00:00,0.4854,0.1915,0.1132,0.1807,0.0486,0.0259,0.0032,0.0195,244.1000,244.5000,244.2000,0.8200,0.4800,0.7600,1.0000,0.9900,1.0000,0.9900,0.1000,故障,,01200092
,七星路1号公变交流采样,2012-09-25 00:00,0.8559,0.2764,0.2899,0.2896,0.1100,0.0000,0.0514,0.0586,243.1000,243.5000,242.6000,1.1300,1.2100,1.2100,0.9900,1.0000,0.9800,0.9800,0.0700,故障,,01200082
,七星路一巷1号公变交流采样,2012-09-25 00:00,0.7605,0.2221,0.2701,0.2683,0.0104,0.0000,0.0104,0.0000,244.4000,244.1000,244.1000,0.9300,1.1200,1.1100,1.0000,1.0000,1.0000,1.0000,0.0600,故障,,01200076
,纬武路1号公变交流采样,2012-09-25 00:00,0.4200,0.1676,0.1032,0.1492,0.0917,0.0298,0.0359,0.0260,231.4000,232.1000,231.8000,0.8000,0.5100,0.7100,0.9800,0.9800,0.9400,0.9900,0.0800,故障,,01200100
,新民路2号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01200079
,凌铁村1号公变交流采样,2012-09-25 00:00,0.6230,0.0000,0.3516,0.2714,0.0045,0.0000,0.0307,-0.0262,0.0000,234.8000,237.4000,1.2400,1.5100,1.1700,1.0000,0.0000,1.0000,1.0000,0.6000,故障,,01200073
,共和路2号公变交流采样,2012-09-25 00:00,0.7446,0.3199,0.1936,0.2311,0.0588,0.0409,0.0092,0.0087,226.0000,227.6000,227.0000,1.4300,0.8600,1.0200,1.0000,0.9900,1.0000,1.0000,0.1600,运行,,01200205
,共和路3号公变交流采样,2012-09-25 00:00,0.8023,0.2635,0.2878,0.2510,0.0189,0.0000,0.0189,0.0000,232.6000,231.7000,233.0000,1.1400,1.2500,1.0800,1.0000,1.0000,1.0000,1.0000,0.0400,故障,,01200153
,商业大院1号公变交流采样,2012-09-25 00:00,0.4942,0.1481,0.1870,0.1591,0.0238,0.0085,0.0061,0.0092,236.2000,236.3000,239.7000,0.6300,0.8000,0.6700,1.0000,1.0000,1.0000,1.0000,0.0400,故障,,01225320
,商业大院2号公变交流采样,2012-09-25 00:00,0.6486,0.1734,0.2603,0.2149,0.0145,0.0000,0.0000,0.0145,227.9000,224.7000,231.8000,0.7900,1.1900,0.9500,1.0000,1.0000,1.0000,1.0000,0.0900,故障,,
,商业大院3号公变交流采样,2012-09-25 00:00,0.4564,0.1647,0.1764,0.1153,0.0313,0.0179,0.0060,0.0074,222.1000,228.8000,229.3000,0.7400,0.7800,0.5000,1.0000,0.9900,1.0000,1.0000,0.1000,故障,,01225322
,商业大院4号公变交流采样,2012-09-25 00:00,0.7177,0.2960,0.2245,0.1972,0.0232,0.0157,0.0000,0.0075,224.1000,224.9000,224.8000,1.3300,1.0100,0.8800,1.0000,1.0000,1.0000,1.0000,0.1400,故障,,01225323
,商业大院5号公变交流采样,2012-09-25 00:00,0.3647,0.1340,0.1435,0.0872,-0.0071,0.0038,0.0000,-0.0109,237.8000,237.0000,236.6000,0.5700,0.6100,0.3800,1.0000,1.0000,1.0000,0.9900,0.0800,故障,,01701671
,星湖路1号公变交流采样,2012-09-25 00:00,0.2497,0.0490,0.1203,0.0804,-0.6908,-0.2348,-0.2182,-0.2378,240.5000,236.2000,242.0000,0.9800,1.0200,1.0000,0.3400,0.2000,0.4800,0.3200,0.0900,故障,,01200253
,世纪商都配变交采,2012-09-25 00:00,0.0544,0.0236,0.0167,0.0141,0.0062,0.0000,0.0021,-0.0041,236.0000,235.9000,235.4000,0.1000,0.0700,0.0600,0.9900,1.0000,0.9900,0.9600,0.0100,运行,,00141433
,武警广西边防总队宿舍配变交采,2012-09-25 00:00,0.2616,0.0837,0.1222,0.0557,0.0080,0.0039,0.0041,0.0000,227.8000,227.8000,228.6000,0.3700,0.5300,0.2400,1.0000,1.0000,1.0000,1.0000,0.0800,运行,,01200826
,枫林蓝岸3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01226317
,绿城画卷2号配变呈辉交采,,,,,,,,,,,,,,,,,,,,,运行,,01200410
,荣和山水美地1号配变荣和交采,,,,,,,,,,,,,,,,,,,,,运行,,01003384
,水利电业集团2号配变交采,2012-09-25 00:00,0.2569,0.0877,0.1252,0.0440,0.0097,0.0000,0.0071,0.0026,220.6000,220.6000,221.8000,0.4000,0.5700,0.2000,1.0000,1.0000,1.0000,1.0000,0.1000,运行,,00150278
,天一园2号配变(长和)交采,2012-09-25 00:00,0.2102,0.0774,0.0638,0.0690,0.0158,0.0031,0.0045,0.0082,223.7000,224.2000,224.9000,0.3400,0.2800,0.3100,1.0000,1.0000,1.0000,0.9900,0.0200,运行,,01003872
,东景花园3号配变交采,2012-09-25 00:00,0.2477,0.0650,0.1038,0.0789,0.0021,0.0021,0.0000,0.0000,227.3000,227.3000,227.5000,0.2800,0.4500,0.3500,1.0000,1.0000,1.0000,1.0000,0.0400,运行,,00020357
,公安消防支队配变交采,2012-09-25 00:00,0.2361,0.1042,0.0891,0.0428,0.0320,0.0144,0.0067,0.0109,235.1000,235.2000,237.0000,0.4400,0.3800,0.1800,0.9900,0.9900,1.0000,0.9700,0.0800,运行,,00020390
,水利电业集团3号配变交采,2012-09-25 00:00,0.1077,0.0703,0.0211,0.0163,0.0165,-0.0027,0.0466,-0.0274,220.4000,221.9000,220.1000,0.3200,0.2300,0.1700,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,00150279
,青年国际3号配变龙基交采,,,,,,,,,,,,,,,,,,,,,运行,,00018765
,金旺角2号配变交采,2012-09-25 00:00,0.3042,0.0758,0.1257,0.1027,0.0568,0.0185,0.0142,0.0241,234.9000,234.7000,235.5000,0.3300,0.5300,0.4500,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,0100002437
,荣和山水美地2号配变荣和交采,2012-09-25 00:00,0.2030,0.0541,0.0694,0.0795,0.0515,0.0083,0.0222,0.0210,227.0000,226.3000,227.1000,0.2400,0.3200,0.3700,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,01003385
,龙盘小区3号配变交采,2012-09-25 00:00,0.1384,0.0455,0.0692,0.0237,0.0009,0.0000,0.0000,0.0009,225.6000,226.4000,225.6000,0.2000,0.3100,0.1000,0.0000,0.0000,0.0000,0.0000,0.0500,运行,,00150282
,金湖帝景1号配变安得房产交采,2012-09-25 00:00,6.3633,2.1934,2.2939,1.8760,0.4689,0.1115,0.3574,0.0000,228.4000,227.2000,228.4000,0.3100,0.3400,0.2600,1.0000,1.0000,0.9900,1.0000,0.0100,运行,,01226609
,水利电业集团1号配变交采,2012-09-25 00:00,0.2769,0.1566,0.0834,0.0369,0.0211,0.0098,0.0045,0.0068,221.2000,220.1000,221.7000,0.7100,0.3800,0.1600,1.0000,1.0000,1.0000,0.9800,0.1600,运行,,00150277
,大自然花园5号配变交采,2012-09-25 00:00,0.2797,0.0953,0.0981,0.0863,0.0045,0.0000,0.0045,0.0000,227.7000,228.4000,228.0000,0.4300,0.4400,0.3800,1.0000,1.0000,1.0000,1.0000,0.0200,运行,,01201519
,天一园1号配变(长和)交采,2012-09-25 00:00,0.0884,0.0278,0.0167,0.0439,0.1700,0.0517,0.0276,0.0907,223.5000,224.3000,224.3000,0.2600,0.1500,0.4500,0.4600,0.4700,0.5200,0.4400,0.0800,运行,,01003871
,民航汇春1号配变交采,2012-09-25 00:00,0.2243,0.0646,0.1036,0.0561,0.0268,0.0060,0.0129,0.0079,223.1000,223.5000,232.5000,0.2900,0.4700,0.2400,0.9900,1.0000,0.9900,0.9900,0.0600,运行,,00248191
,金湖帝景3号配变安得房产交采,2012-09-25 00:00,0.0857,0.0319,0.0333,0.0205,-0.0080,-0.0030,0.0000,-0.0050,228.3000,228.0000,228.9000,0.1500,0.1400,0.1000,1.0000,1.0000,1.0000,0.9700,0.0100,运行,,01226611
,香港花园1号配变交采,2012-09-25 00:00,0.4212,0.1660,0.1165,0.1387,0.0389,0.0159,0.0140,0.0090,224.9000,228.2000,224.2000,0.7400,0.5200,0.6200,1.0000,1.0000,0.9900,1.0000,0.0500,运行,,01224976
,圣展独立公社配变(长江)交采,,,,,,,,,,,,,,,,,,,,,运行,,00215232
,新新家园6号配变房产总公司交采,,,,,,,,,,,,,,,,,,,,,运行,,01201263
,汇春名庭2号配变交采,2012-09-25 00:00,0.3629,0.1566,0.1174,0.0889,0.1003,0.0417,0.0346,0.0240,238.4000,238.2000,238.4000,0.6800,0.5100,0.3900,0.0000,0.0000,0.0000,0.0000,0.0800,运行,,01225613
,新新家园4号配变房产总公司交采,2012-09-25 00:00,0.4254,0.1301,0.1686,0.1267,0.0576,0.0068,0.0221,0.0287,226.8000,225.6000,225.4000,0.5700,0.7500,0.5700,0.9900,1.0000,0.9900,0.9800,0.0300,运行,,01201261
,新新家园7号配变房产总公司交采,2012-09-25 00:00,0.3782,0.1671,0.0992,0.1119,0.0379,0.0171,0.0060,0.0148,225.4000,226.0000,225.9000,0.7300,0.4300,0.4900,1.0000,0.9900,1.0000,0.9900,0.1000,运行,,01201262
,金旺角1号配变交采,2012-09-25 00:00,0.0030,0.0000,0.0024,0.0006,0.0814,0.0001,0.0789,0.0024,233.8000,236.3000,233.5000,0.2000,0.2800,0.2700,0.0400,0.0000,0.0300,0.2700,0.0400,运行,,0100002436
,东景花园1号配变交采,2012-09-25 00:00,0.2480,0.0774,0.0854,0.0852,0.0072,0.0029,0.0000,0.0043,227.5000,226.9000,228.1000,0.3400,0.3800,0.3900,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,00020355
,香港花园3号配变交采,2012-09-25 00:00,0.2185,0.0000,0.1297,0.0888,0.0452,0.0000,0.0285,0.0167,219.9000,231.7000,226.6000,0.0000,0.5800,0.4100,0.0000,0.0000,0.0000,0.0000,0.1700,运行,,01224978
,东方商务港1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01229328
,民生路5号公变交采,2012-09-25 00:00,0.4859,0.1561,0.1822,0.1476,0.1033,0.0339,0.0325,0.0369,243.8000,245.4000,246.2000,0.6600,0.7600,0.6200,0.9800,0.9800,0.9800,0.9700,0.0400,故障,,01200158
,城市杰座1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,00249685
,民生路4号公变交采,2012-09-25 00:00,0.8242,0.2938,0.2705,0.2599,0.1439,0.0568,0.0263,0.0608,231.9000,232.3000,231.8000,1.3000,1.1800,1.1500,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,01200152
,上东国际2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,0100002941
,大自然花园1号配变交采,2012-09-25 00:00,0.3050,0.1192,0.0951,0.0907,0.0153,0.0046,0.0107,0.0000,227.8000,229.2000,228.0000,0.5200,0.4200,0.3900,1.0000,1.0000,0.9900,1.0000,0.0200,运行,,00020751
,大自然花园6号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01201520
,沁景苑3号配变华海交采,2012-09-25 00:00,0.2359,0.0968,0.0606,0.0785,0.0261,0.0096,0.0030,0.0135,236.4000,237.0000,235.5000,0.4100,0.2600,0.3400,0.9900,1.0000,1.0000,0.9900,0.0500,运行,,01225437
,半山丽园4号配变交采,2012-09-25 00:00,0.2005,0.0898,0.0513,0.0594,0.0196,0.0087,0.0109,0.0000,229.4000,229.8000,229.2000,0.3900,0.2300,0.2600,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,00051976
,亿利城2号配变(亿利房产)交采,2012-09-25 00:00,0.2595,0.0926,0.0929,0.0740,0.0297,0.0059,0.0116,0.0122,227.6000,228.0000,228.2000,0.4100,0.4100,0.3300,0.9900,1.0000,0.9900,0.9900,0.0200,运行,,00018675
,区地质局1号公变交采,,,,,,,,,,,,,,,,,,,,,故障,,00086078
,枫林蓝岸4号配变交采,2012-09-25 00:00,0.1416,0.0571,0.0304,0.0541,0.0240,0.0142,0.0038,0.0060,232.2000,231.9000,232.1000,0.2500,0.1300,0.2300,0.9900,0.9700,0.9900,0.9900,0.0200,运行,,01226318
,航洋国际3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01228196
,区地质局2号公变交采,2012-09-25 00:00,0.3024,0.0951,0.1005,0.1068,0.0527,0.0145,0.0200,0.0182,228.7000,227.5000,226.4000,0.4300,0.4500,0.4900,0.9900,0.9900,0.9800,0.9900,0.0200,故障,,00086079
,龙盘小区2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,00150281
,区地质局3号公变交采,2012-09-25 00:00,0.2016,0.0567,0.0756,0.0693,0.0527,0.0163,0.0190,0.0174,228.3000,228.2000,226.8000,0.2600,0.3500,0.3100,0.9700,0.9600,0.9700,0.9700,0.0200,故障,,00086080
,东葛路2号公变交采,,,,,,,,,,,,,,,,,,,,,故障,,01200183
,集美新村1号配变交采,2012-09-25 00:00,0.2801,0.0898,0.1038,0.0865,0.0229,0.0000,0.0166,0.0063,227.4000,228.3000,226.7000,0.4000,0.4700,0.3900,1.0000,1.0000,0.9900,1.0000,0.0200,运行,,01225578
,琅园房产2号公变交采,2012-09-25 00:00,0.0351,0.0000,-0.0351,0.0000,0.0000,0.0000,0.0000,0.0000,228.0000,227.0000,227.9000,0.3300,0.4500,0.4000,1.0000,0.0000,-1.0000,0.0000,0.1700,故障,,01700469
,南宁机关车队金浦配变交采,2012-09-25 00:00,0.2094,0.0583,0.0580,0.0931,0.0305,0.0078,0.0104,0.0123,232.6000,229.3000,229.5000,0.2600,0.2600,0.4100,0.9900,0.9900,0.9800,0.9900,0.0500,运行,,01225440
,绿城画卷1号配变呈辉交采,2012-09-25 00:00,0.1724,0.0549,0.0644,0.0531,0.0064,0.0000,0.0021,0.0043,225.6000,227.3000,225.0000,0.2500,0.2900,0.2300,1.0000,1.0000,1.0000,1.0000,0.0100,运行,,01200409
,逸园小区3号配变双鹿房产交采,2012-09-25 00:00,0.1352,0.0491,0.0476,0.0385,-0.0076,-0.0049,0.0027,0.0000,227.7000,227.8000,227.6000,0.2200,0.2100,0.1600,1.0000,0.9900,1.0000,1.0000,0.0100,运行,,01226019
,集美新村2号配变交采,2012-09-25 00:00,0.1489,0.0747,0.0329,0.0413,0.0290,0.0109,0.0118,0.0063,238.2000,239.5000,238.2000,0.3200,0.1400,0.1700,0.9800,0.9900,0.9400,0.9900,0.0400,运行,,01225407
,汇春名庭1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01324983
,民主路1号公变交采,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,231.4000,230.2000,230.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,故障,,01200159
,民主路3号公变交采,2012-09-25 00:00,0.0018,0.0951,0.0000,0.0969,-0.3331,-0.1671,0.0000,-0.1660,228.5000,228.8000,229.1000,0.8400,0.0000,0.8400,0.0000,0.0000,0.0000,0.0000,0.5600,故障,,01200167
,民主路2号公变交采,2012-09-25 00:00,0.0046,0.0000,0.1691,0.1737,-0.5984,0.0000,-0.3004,-0.2980,229.9000,231.6000,230.5000,0.0000,1.4900,1.4900,0.0000,0.0000,0.0000,0.0000,0.5000,故障,,01200160
,逸园小区2号配变双鹿房产交采,,,,,,,,,,,,,,,,,,,,,运行,,00208002
,亿利城1号配变(亿利房产)交采,2012-09-25 00:00,0.1783,0.0742,0.0668,0.0373,0.0224,0.0081,0.0112,0.0031,227.8000,228.1000,227.7000,0.3200,0.2900,0.1700,0.9900,0.9900,0.9900,1.0000,0.0400,运行,,00018674
,时代俊园配变交采,2012-09-25 00:00,0.2413,0.0733,0.0852,0.0828,0.0205,0.0067,0.0063,0.0075,227.9000,227.6000,227.6000,0.3200,0.3700,0.3600,1.0000,1.0000,1.0000,1.0000,0.0100,运行,,01000540
,凤岭上座1号配变交采,2012-09-25 00:00,0.2562,0.0646,0.0704,0.1212,0.0265,0.0054,0.0113,0.0098,240.4000,239.7000,239.3000,0.2700,0.3000,0.5100,0.0000,0.0000,0.0000,0.0000,0.0800,运行,,01228725
,汇春广场1号配变交采,2012-09-25 00:00,0.3571,0.1113,0.1163,0.1295,0.0542,0.0175,0.0163,0.0204,226.4000,226.7000,227.0000,0.4900,0.5200,0.5600,0.0000,0.0000,0.0000,0.0000,0.0100,运行,,00075952
,城市杰座2号配变天驰交采,2012-09-25 00:00,0.1956,0.1241,0.0000,0.0715,0.0432,0.0524,0.0000,0.0092,237.8000,237.8000,237.4000,0.3400,0.3200,0.3100,0.9800,0.9200,0.0000,0.9900,0.1900,运行,,00249686
,逸园小区1号配变双鹿房产交采,2012-09-25 00:00,0.1434,0.0543,0.0420,0.0471,0.0076,0.0000,-0.0017,0.0093,227.2000,227.7000,227.8000,0.2300,0.1800,0.2200,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,00208001
,龙盘小区4号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,00150283
,市规管局配变交采,2012-09-25 00:00,0.1060,0.0492,0.0151,0.0418,0.0214,0.0033,0.0096,0.0085,230.7000,231.1000,230.4000,0.2100,0.0800,0.1900,0.9800,1.0000,0.8600,0.9800,0.2100,运行,,01124934
,元亨陶陶居配变交采,2012-09-25 00:00,0.1458,0.0480,0.0421,0.0558,0.0139,0.0086,0.0032,0.0021,225.9000,225.8000,226.1000,0.2200,0.1900,0.2500,1.0000,0.9900,1.0000,1.0000,0.1600,运行,,01225521
,平安佳园1号公变交流采样,2012-09-25 00:00,0.1065,0.0335,0.0424,0.0304,0.0030,-0.0009,0.0001,0.0038,225.2000,224.8000,224.9000,0.1500,0.1900,0.1400,1.0000,1.0000,1.0000,1.0000,0.1300,故障,,00017828
,平安佳园2号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,00017829
,红河花园1号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,00117474
,红河花园2号公变交流采样,2012-09-25 00:00,0.0935,0.0419,0.0157,0.0367,-0.0020,-0.0036,0.0015,-0.0001,226.0000,225.3000,225.6000,0.1800,0.0700,0.1700,1.0000,1.0000,1.0000,1.0000,0.1800,故障,,00117475
,开投恶滩发电公司1号公变交流采样,2012-09-25 00:00,0.2564,0.1448,0.0819,0.0297,-0.0285,0.0088,-0.0158,-0.0214,227.2000,227.3000,227.9000,0.6400,0.3700,0.1600,0.9900,1.0000,0.9800,0.8100,0.5000,故障,,00053111
,碧云苑1号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,00019889
,天然居1号公变交采,2012-09-25 00:00,0.1190,0.0440,0.0393,0.0357,0.0197,0.0089,0.0055,0.0055,231.3000,231.5000,231.1000,0.2000,0.1700,0.1600,0.9900,0.9900,1.0000,1.0000,0.1500,故障,,01002913
,秀山花园1号公变交流采样,2012-09-25 00:00,0.3495,0.0795,0.1452,0.1247,0.0726,0.0179,0.0280,0.0267,226.4000,221.9000,227.1000,0.3700,0.6700,0.5700,0.9800,0.9800,0.9800,0.9800,0.4400,故障,,01225339
,秀山花园2号公变交流采样,2012-09-25 00:00,0.4333,0.2114,0.1326,0.0888,0.0452,0.0154,0.0278,0.0044,221.5000,228.7000,224.7000,0.9600,0.6000,0.4200,0.9900,1.0000,0.9800,1.0000,0.4500,故障,,01225340
,秀山花园3号公变交流采样,2012-09-25 00:00,0.3044,0.1416,0.0626,0.0971,0.0346,0.0179,0.0128,0.0022,224.7000,226.8000,222.9000,0.6500,0.2900,0.4400,0.9900,0.9900,0.9800,1.0000,0.4400,故障,,01225341
,秀山花园4号公变交流采样,2012-09-25 00:00,0.2274,0.0623,0.0759,0.0892,0.0227,0.0070,0.0076,0.0080,226.7000,222.6000,224.4000,0.2800,0.3500,0.4100,1.0000,0.9900,1.0000,1.0000,0.2900,故障,,01225342
,秀山花园5号公变交流采样,2012-09-25 00:00,0.2386,0.0849,0.0900,0.0630,0.0360,0.0271,0.0061,0.0055,222.9000,225.1000,227.6000,0.4000,0.4100,0.2800,0.9900,0.9600,1.0000,1.0000,0.3500,故障,,01225343
,秀山花园6号公变交流采样,2012-09-25 00:00,0.2184,0.0576,0.0856,0.0765,0.0353,0.0193,0.0087,0.0073,225.7000,222.7000,227.2000,0.2700,0.3900,0.3400,0.9900,0.9500,1.0000,1.0000,0.2800,故障,,01225344
,经文街2号公变交流采样,2012-09-25 00:00,0.3079,0.0992,0.1071,0.1016,0.0223,0.0185,-0.0056,0.0094,244.9000,243.9000,243.6000,0.4200,0.4500,0.4200,1.0000,0.9800,1.0000,1.0000,0.0300,故障,,01701943
,枫林蓝岸2号配变交采,2012-09-25 00:00,0.1637,0.0609,0.0610,0.0417,-0.0053,-0.0041,0.0002,-0.0014,225.5000,225.8000,,,,,,,,,,运行,,01226316
,龙盘小区1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,00150280
,汇东国际2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01226785
,公务员小区3号配变交采,2012-09-25 00:00,0.2144,0.0913,0.0741,0.0490,0.0490,0.0248,0.0214,0.0028,240.0000,240.3000,240.3000,0.3900,0.3200,0.2000,0.9700,0.9600,0.9600,1.0000,0.0500,运行,,01225433
,公安局兴宁区分局配变交采,2012-09-25 00:00,0.2042,0.0516,0.0475,0.1051,0.0377,0.0067,0.0081,0.0229,241.7000,244.0000,241.3000,0.2100,0.2000,0.4400,0.9800,0.9900,0.9900,0.9800,0.0800,运行,,01000937
,南宁地区公安局交警支队配变交采,2012-09-25 00:00,0.2421,0.1050,0.0976,0.0395,0.0155,0.0032,0.0082,-0.0041,230.8000,223.2000,230.5000,0.4600,0.4400,0.1700,1.0000,1.0000,1.0000,0.9900,0.0900,运行,,01003374
,东景花园2号配变终端,2012-09-25 00:00,0.2431,0.1051,0.0866,0.0514,0.0041,0.0090,0.0000,-0.0049,227.5000,227.5000,227.8000,0.4600,0.3800,0.2200,0.0000,0.0000,0.0000,0.0000,0.0700,运行,,00020356
,光明日报配变交采,2012-09-25 00:00,0.1639,0.0859,0.0403,0.0377,0.0095,0.0043,0.0031,0.0021,236.3000,238.0000,237.0000,0.3600,0.1700,0.1600,0.0000,0.0000,0.0000,0.0000,0.0600,运行,,01226069
,望江公寓配变交采,2012-09-25 00:00,0.3937,0.1793,0.0911,0.1233,-0.1012,-0.0252,-0.0241,0.0519,229.9000,228.8000,228.1000,0.7700,0.4100,0.5900,0.9700,0.9900,0.9700,0.9200,0.1400,运行,,01325617
,滨湖公务员住宅9号配变交采,2012-09-25 00:00,0.0589,0.0436,0.0105,0.0048,0.0096,0.0071,0.0013,0.0038,240.4000,240.8000,240.9000,0.1800,0.0400,0.0300,0.9900,0.9900,0.9900,0.7800,0.0500,运行,,01225434
,凤翔花园2号配变交采,2012-09-25 00:00,0.2755,0.1477,0.1233,0.0045,0.0074,0.0000,0.0000,0.0074,225.2000,225.4000,215.7000,0.6500,0.5400,0.0400,1.0000,1.0000,1.0000,0.5200,0.1900,运行,,01226210
,南湖苑1号配变(国凯实业)交采,2012-09-25 00:00,0.1572,0.0000,0.0944,0.0628,0.0143,0.0000,0.0035,0.0108,227.3000,225.4000,226.7000,0.0000,0.4200,0.2800,1.0000,0.0000,1.0000,0.9900,0.1100,运行,,01225383
,汇东国际1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01226784
,枫林蓝岸1号配变交采,2012-09-25 00:00,0.4042,0.1725,0.1167,0.1148,0.0405,0.0129,0.0111,0.0163,224.4000,225.1000,,,,,,,,,,运行,,01226315
,凤翔花园3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01227193
,金浦路琅东小区配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225413
,公务员小区2号配变交采,2012-09-25 00:00,0.2031,0.0865,0.0683,0.0483,0.0374,0.0123,0.0030,0.0281,240.0000,241.4000,240.5000,0.3600,0.2800,0.2300,0.9800,0.9900,1.0000,0.8600,0.0800,运行,,01225432
,汇东国际3号配变交采,2012-09-25 00:00,0.2756,0.0844,0.1168,0.0744,-0.0736,-0.0196,-0.0280,-0.0260,240.1000,239.4000,239.9000,0.3600,0.5000,0.3300,0.9700,0.9700,0.9700,0.9400,0.0600,运行,,01226786
,香港花园4号配变交采,2012-09-25 00:00,0.1504,0.1246,0.0000,0.0258,-0.0681,-0.1590,0.0000,0.0909,225.8000,233.1000,219.4000,0.8900,0.0000,0.4300,0.0000,0.0000,0.0000,0.0000,0.4400,运行,,01224979
,倚林佳园3号配变交采,,,,,,,,,,,,,,,,,,,,,故障,,01227738
,拆迁办公室祥宾路CD地块配变交采,2012-09-25 00:00,0.5936,0.2001,0.1622,0.2315,0.1021,0.0357,0.0284,0.0380,240.3000,240.9000,240.0000,0.8700,0.7100,0.9900,0.9900,0.9800,0.9900,0.9900,0.5700,运行,,01002350
,沁景苑1号配变华海交采,2012-09-25 00:00,0.2041,0.0767,0.0744,0.0530,0.0365,0.0157,0.0107,0.0101,236.1000,236.7000,236.5000,0.3300,0.3100,0.2300,0.9800,0.9800,0.9900,0.9800,0.0300,运行,,01225435
,天广和1号配变(天广和房产)交采,2012-09-25 00:00,0.2840,0.0866,0.1021,0.0953,0.0205,0.0120,0.0031,0.0054,226.3000,226.0000,225.8000,0.4000,0.4500,0.4200,1.0000,0.9900,1.0000,1.0000,0.0200,运行,,01201502
,金湖帝景2号配变安得房产交采,2012-09-25 00:00,0.1793,0.0639,0.0635,0.0519,0.0086,0.0023,0.0109,0.0000,227.9000,227.7000,228.3000,0.2800,0.2800,0.2300,1.0000,1.0000,0.9900,1.0000,0.0000,运行,,01226610
,凤翔花园5号配变交采,2012-09-25 00:00,0.4408,0.1299,0.1966,0.1143,0.0050,0.0000,0.0000,0.0050,225.3000,225.4000,225.5000,0.5700,0.8700,0.5100,1.0000,1.0000,1.0000,1.0000,0.1000,运行,,01228322
,公务员小区1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225431
,凤翔花园1号配变交采,2012-09-25 00:00,0.2734,0.1336,0.1398,0.0000,0.0174,0.0081,0.0093,0.0000,225.6000,225.4000,0.0000,0.5900,0.6300,0.4600,1.0000,1.0000,1.0000,0.0000,0.2600,运行,,01226209
,双拥路4号公变交流采样,,,,,,,,,,,,,,,,,,,,,故障,,01227691
,中山路2号公变交流采样,2012-09-25 00:00,0.8966,0.2492,0.3099,0.3375,0.0848,0.0000,0.0000,0.0848,244.0000,244.6000,242.7000,1.0100,1.2700,1.4100,1.0000,1.0000,1.0000,0.9700,0.0800,故障,,01200087
,竹溪路4号公变交流采样,2012-09-25 00:00,0.2161,0.0594,0.0823,0.0750,0.0171,0.0067,0.0113,0.0013,232.7000,228.0000,232.3000,0.2700,0.3700,0.3300,1.0000,1.0000,0.9900,1.0000,0.2800,故障,,01225661
,南湖之都1号公变交流采样,2012-09-25 00:00,0.0448,0.0050,0.0179,0.0219,-0.0025,-0.0012,-0.0003,-0.0010,230.5000,230.0000,230.3000,0.0400,0.0800,0.1000,1.0000,1.0000,1.0000,1.0000,0.1100,故障,,00017026
,南湖之都2号公变交流采样,2012-09-25 00:00,0.1390,0.0453,0.0508,0.0425,0.0097,-0.0002,0.0081,0.0018,230.2000,229.8000,230.2000,0.2000,0.2300,0.1800,1.0000,1.0000,0.9900,1.0000,0.1600,故障,,00017027
,葛麻一、四组公变交采,2012-09-25 00:00,1.1233,0.3611,0.3925,0.3697,0.0991,0.0228,0.0529,0.0233,231.8000,231.5000,231.4000,1.5600,1.7100,1.6000,1.0000,1.0000,0.9900,1.0000,0.1900,运行,,0160002309
,琅东11、14组公变交采,2012-09-25 00:00,0.8147,0.2631,0.2454,0.3062,0.0100,0.0100,0.0000,0.0000,239.4000,239.8000,239.1000,1.1100,1.0300,1.2900,1.0000,1.0000,1.0000,1.0000,0.0600,运行,,0160002310
,荣和三组团1号配变荣和交采,2012-09-25 00:00,0.1653,0.0688,0.0429,0.0536,0.0156,0.0062,0.0046,0.0050,226.0000,226.0000,226.0000,0.3100,0.1800,0.2400,1.0000,1.0000,1.0000,1.0000,0.1900,运行,,00075946
,荣和三组团2号配变荣和交采,,,,,,,,,,,,,,,,,,,,,运行,,00075947
,荣和二组团1号配变荣和交采,,,,,,,,,,,,,,,,,,,,,运行,,00075944
,荣和五组团1号配变荣和交采,2012-09-25 00:00,0.3152,0.0813,0.1177,0.1170,0.0236,0.0098,0.0063,0.0076,226.9000,226.2000,226.6000,0.3600,0.5300,0.5300,1.0000,1.0000,1.0000,1.0000,0.3500,运行,,00148854
,荣和五组团2号配变荣和交采,2012-09-25 00:00,0.3052,0.0928,0.1071,0.1052,0.0320,0.0069,0.0141,0.0109,226.8000,227.1000,226.6000,0.4200,0.4800,0.4700,0.9900,1.0000,0.9900,1.0000,0.2500,运行,,00148855
,荣和五组团3号配变荣和交采,2012-09-25 00:00,0.2964,0.1012,0.0863,0.1090,0.0213,0.0116,0.0053,0.0045,226.0000,226.4000,225.7000,0.4600,0.3900,0.4900,1.0000,0.9900,1.0000,1.0000,0.2700,运行,,00148856
,荣和房产六组团1号配变荣和交采,2012-09-25 00:00,0.3151,0.1224,0.0983,0.0938,0.0239,0.0121,0.0063,0.0056,226.7000,226.3000,226.7000,0.5500,0.4400,0.4200,1.0000,1.0000,1.0000,1.0000,0.2600,运行,,01201059
,荣和房产六组团2号配变荣和交采,,,,,,,,,,,,,,,,,,,,,运行,,01201060
,荣和房产六组团3号配变荣和交采,,,,,,,,,,,,,,,,,,,,,运行,,01201061
,荣和房产六组团4号配变荣和交采,2012-09-25 00:00,0.2986,0.0953,0.0999,0.1042,0.0131,0.0040,0.0036,0.0054,226.0000,226.6000,226.9000,0.4300,0.4400,0.4700,1.0000,1.0000,1.0000,1.0000,0.2200,运行,,01201062
,香格里拉花园1号配变(聚源房产)交采,2012-09-25 00:00,0.1854,0.0701,0.0493,0.0661,0.0210,0.0114,0.0019,0.0078,222.0000,222.5000,223.6000,0.6400,0.4400,0.6000,0.9900,0.9900,1.0000,0.9900,0.3600,运行,,-1111
,香格里拉花园2号配变(聚源房产)交采,2012-09-25 00:00,0.1842,0.0779,0.0654,0.0410,0.0070,0.0042,-0.0008,0.0026,229.1000,228.6000,230.0000,0.3400,0.2900,0.1800,1.0000,1.0000,1.0000,1.0000,0.2900,运行,,00215210
,香格里拉花园3号配变(聚源房产)交采,2012-09-25 00:00,0.1785,0.0473,0.0598,0.0710,0.0138,0.0027,-0.0012,0.0105,233.6000,234.0000,234.7000,0.2100,0.2600,0.3100,1.0000,1.0000,1.0000,0.9900,0.2200,运行,,00215211
,香格里拉花园4号配变(聚源房产)交采,,,,,,,,,,,,,,,,,,,,,运行,,00215212
,香格里拉花园6号配变(聚源房产)交采,2012-09-25 00:00,0.1762,0.0593,0.0784,0.0384,0.0183,0.0076,0.0071,0.0036,234.6000,233.8000,235.4000,0.2600,0.3400,0.1600,1.0000,1.0000,1.0000,1.0000,0.2600,运行,,00215213
,香格里拉花园7号配变(聚源房产)交采,2012-09-25 00:00,0.3067,0.0939,0.1152,0.0981,0.0433,0.0101,0.0071,0.0260,223.3000,222.6000,223.9000,0.4300,0.5200,0.4600,0.9900,1.0000,1.0000,0.9700,0.2800,运行,,00019879
,香格里拉花园8号配变(聚源房产)交采,2012-09-25 00:00,0.1500,0.0495,0.0426,0.0579,0.0602,0.0223,0.0156,0.0230,234.9000,234.2000,235.4000,0.1900,0.1600,0.2100,0.9600,0.9800,0.9300,0.9900,0.1400,运行,,00019880
,香榭里一期3号配变(东方)交采,2012-09-25 00:00,0.2047,0.0643,0.0696,0.0713,0.0320,0.0090,0.0135,0.0093,231.6000,229.6000,231.0000,0.2800,0.3100,0.3100,0.9900,0.9900,0.9800,0.9900,0.1400,运行,,00017102
,香榭里花园6号配变交采,2012-09-25 00:00,0.2176,0.1516,0.0667,0.0000,0.0278,0.0176,0.0101,0.0000,218.1000,220.2000,219.7000,0.7000,0.3100,0.0000,0.9900,0.9900,0.9900,1.0000,0.6100,运行,,00215247
,香榭里一期1号配变(东方)交采,,,,,,,,,,,,,,,,,,,,,运行,,00017100
,香榭里花园4号配变交采,,,,,,,,,,,,,,,,,,,,,故障,,00085138
,香榭里一期2号配变(东方)交采,2012-09-25 00:00,0.2689,0.0770,0.1193,0.0725,0.0221,0.0022,0.0189,0.0010,221.0000,218.6000,220.5000,0.3500,0.5500,0.3300,1.0000,1.0000,0.9900,1.0000,0.3900,运行,,00017101
,教育路2号公变交采,2012-09-25 00:00,0.3504,0.1172,0.1321,0.1033,0.0220,0.0100,0.0066,0.0054,231.6000,231.5000,231.4000,0.5100,0.5800,0.4500,1.0000,1.0000,1.0000,1.0000,0.2700,故障,,01003607
,竹青苑配变(卓恒房产)交采,2012-09-25 00:00,0.3542,0.1127,0.1064,0.1346,0.0528,0.0154,0.0237,0.0137,235.8000,234.8000,234.6000,0.4900,0.4700,0.5900,0.9900,0.9900,0.9800,1.0000,0.3200,运行,,00084295
,南湖碧园10号配变碧园交采,,,,,,,,,,,,,,,,,,,,,运行,,01225429
,安友小区配变交采,2012-09-25 00:00,1.6643,0.5257,0.5771,0.5581,0.2211,0.0940,0.0768,0.0509,233.2000,232.7000,233.4000,2.3300,2.5500,2.4300,0.9900,0.9800,0.9900,1.0000,1.1500,运行,,01700682
,塞纳维拉花园2号配变(翠都房产)交采,,,,,,,,,,,,,,,,,,,,,运行,,01200542
,塞纳维拉花园1号配变(翠都房产)交采,,,,,,,,,,,,,,,,,,,,,运行,,01200541
,南湖碧园9号配变碧园交采,2012-09-25 00:00,0.1873,0.0656,0.0751,0.0465,0.0249,0.0093,0.0113,0.0043,229.5000,229.4000,229.1000,0.2900,0.3300,0.2100,0.9900,0.9900,0.9900,1.0000,0.2300,运行,,01225428
,山水花都秀竹花园2号配变(泛华)交采,2012-09-25 00:00,0.2211,0.0847,0.0573,0.0782,0.0389,0.0108,0.0117,0.0183,236.5000,236.5000,237.0000,0.3700,0.2500,0.3400,0.9900,0.9900,0.9900,0.9800,0.2600,运行,,00141429
,山水花都秀竹花园3号配变(泛华)交采,2012-09-25 00:00,0.0609,0.0647,0.0630,-0.0672,0.0037,0.0100,0.0052,-0.0120,236.5000,236.8000,236.2000,0.2800,0.2700,0.2900,1.0000,0.9900,1.0000,0.9900,0.5700,运行,,00141428
,韵景华庭配变终端交采,2012-09-25 00:00,0.4301,0.1404,0.1568,0.1331,0.0649,0.0182,0.0291,0.0181,225.9000,225.1000,225.2000,0.6300,0.7100,0.6000,0.9900,0.9900,0.9900,0.9900,0.3000,运行,,01003417
,青秀花园1号配变(地产业总公司)交采,2012-09-25 00:00,0.1961,0.0766,0.0865,0.0331,0.0264,0.0121,0.0040,0.0103,227.3000,226.9000,227.1000,0.3500,0.3900,0.1600,0.9900,0.9900,1.0000,0.9600,0.4000,运行,,00000011
,在水一方1号配变交采,2012-09-25 00:00,0.2244,0.0899,0.0597,0.0755,0.0067,0.0027,0.0032,0.0010,225.3000,225.7000,225.6000,0.4000,0.2700,0.3400,1.0000,1.0000,1.0000,1.0000,0.2700,运行,,01228726
,在水一方4号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01228729
,在水一方2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01228727
,世纪家园配变(浩洋房地产)交采,2012-09-25 00:00,0.2045,0.0684,0.0729,0.0634,0.0409,0.0177,0.0142,0.0089,228.2000,227.7000,228.2000,0.3100,0.3300,0.2800,0.9800,0.9700,0.9800,0.9900,0.1600,运行,,01003977
,名都苑1号配变港昌交采,2012-09-25 00:00,0.0917,0.0252,0.0276,0.0389,-0.0548,-0.0213,-0.0203,-0.0130,227.0000,227.4000,226.5000,0.1500,0.1500,0.1800,0.8600,0.7700,0.8100,0.9500,0.1200,运行,,01227144
,欧景城市广场3号配变(万怡)交采,2012-09-25 00:00,0.2132,0.0628,0.0856,0.0650,0.0137,0.0042,0.0042,0.0053,227.3000,226.4000,226.6000,0.2800,0.3800,0.2900,1.0000,1.0000,1.0000,1.0000,0.2100,运行,,01003689
,香榭里花园5号配变交采,2012-09-25 00:00,0.1724,0.0550,0.0497,0.0677,0.0199,0.0062,0.0018,0.0119,219.6000,218.1000,219.3000,0.2500,0.2300,0.3200,0.9900,1.0000,1.0000,0.9900,0.1800,运行,,00185505
,锦光花苑1号配变交采,2012-09-25 00:00,0.0851,-0.0886,0.0952,0.0781,0.0117,-0.0166,0.0160,0.0124,238.2000,237.4000,237.7000,0.3800,0.4100,0.3400,0.9900,0.9800,0.9900,0.9900,0.7600,运行,,00000017
,人寿保险2号配变交采,2012-09-25 00:00,0.1759,0.0423,0.0744,0.0594,-0.0031,-0.0023,0.0024,-0.0033,227.8000,227.7000,227.5000,0.1900,0.3300,0.2600,1.0000,1.0000,1.0000,1.0000,0.2600,运行,,01226872
,锦光花苑2号配变交采,2012-09-25 00:00,0.2400,0.0898,0.0540,0.0964,0.0451,0.0164,0.0102,0.0184,238.6000,238.0000,237.5000,0.3900,0.2400,0.4200,0.9800,0.9800,0.9800,0.9800,0.3200,运行,,00000018
,右江花园配变交采,,,,,,,,,,,,,,,,,,,,,运行,,0100002848
,蓝山上城5号配变华海交采,2012-09-25 00:00,0.2845,0.1474,0.0611,0.0760,0.0273,0.0160,0.0131,-0.0018,224.8000,224.8000,,,,,,,,,,运行,,01226073
,佳得鑫水晶城3号配变交采,2012-09-25 00:00,0.1807,0.0542,0.0877,0.0412,0.0258,0.0035,0.0251,-0.0027,233.0000,232.3000,233.0000,0.2400,0.3900,0.1800,1.0000,1.0000,0.9900,1.0000,0.3300,运行,,01125517
,蓝山上城4号配变华海交采,2012-09-25 00:00,0.2904,0.0763,0.1474,0.0665,-0.0012,-0.0003,0.0029,-0.0038,224.8000,224.5000,,,,,,,,,,运行,,01226074
,蓝山上城6号配变华海交采,2012-09-25 00:00,0.2260,0.0942,0.0794,0.0524,0.0277,0.0226,0.0070,-0.0019,224.9000,224.8000,,,,,,,,,,运行,,01226072
,和实水榭花都1号配变交采,2012-09-25 00:00,0.1991,0.0882,0.0568,0.0546,0.0136,0.0087,0.0012,0.0037,228.4000,227.9000,228.2000,0.3900,0.2500,0.2400,1.0000,1.0000,1.0000,1.0000,0.2700,运行,,00184005
,名都苑3号配变(港昌)交采,2012-09-25 00:00,0.0662,0.0257,0.0238,0.0166,0.0107,0.0042,0.0037,0.0026,231.0000,230.7000,232.1000,0.1100,0.1100,0.0700,0.9900,0.9900,1.0000,1.0000,0.0700,运行,,01225439
,名都苑2号配变港昌交采,2012-09-25 00:00,0.0775,0.0253,0.0281,0.0238,0.0006,-0.0065,0.0057,0.0013,226.7000,225.7000,226.1000,0.1200,0.1300,0.1000,1.0000,0.9800,0.9900,1.0000,0.1000,运行,,01228049
,和实水榭花都2号配变交采,2012-09-25 00:00,0.3051,0.1208,0.1055,0.0797,0.0554,0.0248,0.0175,0.0129,228.4000,227.5000,228.2000,0.5500,0.4900,0.3600,0.9800,0.9800,0.9900,0.9900,0.3500,运行,,00184007
,丽景豪庭2号配变交采,2012-09-25 00:00,0.2438,0.0876,0.1567,0.0000,0.0261,0.0090,0.0173,0.0000,236.2000,235.7000,236.0000,0.3800,0.6700,0.0000,1.0000,1.0000,0.9900,1.0000,0.5900,运行,,01226474
,丽景豪庭4号配变(中茵房产)交采,2012-09-25 00:00,0.3512,0.1325,0.1027,0.1129,0.0346,0.0177,0.0026,0.0139,236.7000,236.2000,236.1000,0.5600,0.4400,0.4900,1.0000,0.9900,1.0000,0.9900,0.3200,运行,,01226476
,丽景豪庭3号配变(中茵房产)交采,2012-09-25 00:00,0.3617,0.1678,0.0963,0.0975,0.0415,0.0192,0.0179,0.0044,236.7000,236.7000,237.0000,0.7200,0.4200,0.4100,0.9900,0.9900,0.9900,1.0000,0.4600,运行,,01226475
,丽景豪庭1号配变(中茵房产)交采,2012-09-25 00:00,0.4148,0.1725,0.1278,0.1143,0.0317,0.0154,0.0088,0.0074,237.3000,237.2000,237.4000,0.7300,0.5400,0.4800,0.9900,0.9900,0.9900,0.9900,0.0000,运行,,01226473
,山水花都秀竹花园1号配变(泛华)交采,,,,,,,,,,,,,,,,,,,,,运行,,00141427
,区二轻大院1号配变交采,2012-09-25 00:00,0.3123,0.1442,0.0881,0.0802,0.0768,0.0272,0.0244,0.0254,224.3000,224.5000,224.1000,0.6600,0.4100,0.3800,0.9700,0.9800,0.9600,0.9500,0.4900,运行,,00019872
,南湖碧园8号配变碧园交采,2012-09-25 00:00,0.2497,0.0881,0.0513,0.1107,0.0478,0.0162,0.0138,0.0179,228.8000,229.4000,229.3000,0.3900,0.2400,0.4900,0.9800,0.9800,0.9700,0.9900,0.3600,运行,,01225427
,南湖碧园7号配变碧园交采,2012-09-25 00:00,0.1225,0.0353,0.0672,0.0199,0.0311,-0.0412,0.0151,0.0571,230.0000,229.8000,228.4000,0.2400,0.3000,0.2700,0.9700,0.6500,0.9800,0.3300,0.5500,运行,,01225426
,区二轻大院3号配变交采,2012-09-25 00:00,0.2830,0.1149,0.0915,0.0767,0.0365,0.0165,0.0087,0.0112,224.8000,224.4000,225.4000,0.5200,0.4200,0.3400,0.9900,0.9900,1.0000,0.9900,0.3300,运行,,00019874
,金湖湾1号配变(金源房产)交采,,,,,,,,,,,,,,,,,,,,,运行,,01003609
,金湖湾2号配变(金源房产)交采,2012-09-25 00:00,0.1646,0.0482,0.0480,0.0684,0.0473,0.0125,0.0176,0.0171,236.0000,235.5000,235.8000,0.2100,0.2200,0.3000,0.9600,0.9700,0.9400,0.9700,0.1800,运行,,01003610
,药监局1号配变交采,2012-09-25 00:00,0.3119,0.1186,0.0783,0.1158,0.0821,0.0260,0.0240,0.0319,240.3000,239.7000,239.6000,0.5100,0.3500,0.5000,0.9700,0.9800,0.9600,0.9600,0.3200,运行,,01200403
,紫光阁配变(卓恒)交采,2012-09-25 00:00,0.1646,0.0426,0.0570,0.0647,0.0326,0.0103,0.0103,0.0119,232.7000,244.2000,251.4000,0.1900,0.2400,0.2600,0.9800,0.9800,0.9900,0.9800,0.1600,运行,,01034953
,南湖翠苑1号配变交采,2012-09-25 00:00,0.2430,0.0580,0.0824,0.1025,0.0379,0.0117,0.0130,0.0132,241.7000,241.9000,241.1000,0.2500,0.3500,0.4300,0.9900,0.9800,0.9900,0.9900,0.2900,运行,,00151918
,现代大厦1号配变龙基置业交采,2012-09-25 00:00,0.1206,0.0664,0.0291,0.0251,0.0278,0.0174,0.0031,0.0072,239.9000,240.9000,239.8000,0.2900,0.1300,0.1100,0.9700,0.9700,1.0000,0.9600,0.2900,运行,,01226621
,丰华利花苑配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225608
,佳得鑫水晶城4号配变交采,2012-09-25 00:00,0.1218,0.0384,0.0413,0.0426,0.0069,0.0012,0.0037,0.0020,233.2000,232.5000,232.4000,0.1700,0.1800,0.1900,1.0000,1.0000,1.0000,1.0000,0.1300,运行,,01125518
,佳得鑫水晶城1号配变交采,2012-09-25 00:00,0.2562,0.0954,0.0782,0.0837,0.0420,0.0170,0.0142,0.0108,232.6000,232.1000,232.4000,0.4200,0.3500,0.3700,0.9900,0.9900,0.9800,0.9900,0.2100,运行,,01125515
,展厦房产一户一表配变交采,2012-09-25 00:00,0.2003,0.0818,0.0445,0.0726,0.0012,0.0038,-0.0075,0.0049,225.0000,225.1000,224.8000,0.3700,0.2100,0.3300,1.0000,1.0000,0.9900,1.0000,0.3200,运行,,01201562
,北纬28号配变交采,2012-09-25 00:00,0.2763,0.1159,0.0944,0.0659,0.0532,0.0209,0.0149,0.0174,242.6000,242.9000,242.5000,0.5000,0.4000,0.2900,0.9800,0.9900,0.9900,0.9700,0.3100,运行,,01059584
,航洋国际2号配变交采,2012-09-25 00:00,0.0460,0.0162,0.0144,0.0154,-0.0030,0.0010,-0.0020,-0.0021,227.7000,227.5000,227.8000,0.0800,0.0700,0.0800,1.0000,1.0000,1.0000,1.0000,0.0900,运行,,01228195
,现代大厦2号配变龙基置业交采,,,,,,,,,,,,,,,,,,,,,运行,,01226622
,佳得鑫水晶城2号配变交采,2012-09-25 00:00,0.1680,0.0725,0.0638,0.0316,0.0545,0.0265,0.0158,0.0120,232.3000,232.2000,232.3000,0.3400,0.2900,0.1500,0.9500,0.9400,0.9700,0.9400,0.3100,运行,,01125516
,蓝山上城3号配变华海交采,,,,,,,,,,,,,,,,,,,,,运行,,01226075
,蓝山上城2号配变华海交采,,,,,,,,,,,,,,,,,,,,,运行,,01226076
,南湖景园3号配变万昌交采,2012-09-25 00:00,0.2264,0.0643,0.0806,0.0814,0.0131,0.0070,0.0046,0.0014,224.6000,224.8000,224.2000,0.2900,0.3600,0.3600,1.0000,1.0000,1.0000,1.0000,0.1800,运行,,00249680
,梦之岛花园3号配变馨梦房产交采,2012-09-25 00:00,0.1935,0.0715,0.0776,0.0443,-0.0070,-0.0080,0.0017,-0.0006,225.7000,225.3000,,,,,,,,,,运行,,01200616
,梦之岛花园2号配变馨梦房产交采,2012-09-25 00:00,0.1391,0.0745,0.0000,0.0646,0.0085,0.0025,0.0000,0.0061,224.8000,224.4000,224.9000,0.3400,0.0000,0.2900,1.0000,1.0000,1.0000,1.0000,0.4800,运行,,01200615
,蓝山上城1号配变华海交采,,,,,,,,,,,,,,,,,,,,,运行,,01226077
,南湖景园4号配变万昌交采,2012-09-25 00:00,0.2467,0.0760,0.0833,0.0898,0.0143,0.0013,0.0032,0.0098,224.6000,224.4000,224.2000,0.3400,0.3700,0.4100,1.0000,1.0000,1.0000,1.0000,0.2100,运行,,00249677
,梦之岛花园1号配变馨梦房产交采,2012-09-25 00:00,0.1840,0.0787,0.0481,0.0572,0.0037,0.0042,-0.0002,-0.0003,225.6000,225.6000,,,,,,,,,,运行,,01200614
,南湖景园2号配变万昌交采,2012-09-25 00:00,0.1826,0.0576,0.0681,0.0567,0.0102,0.0033,0.0039,0.0028,224.7000,224.6000,224.1000,0.2500,0.3000,0.2600,1.0000,1.0000,1.0000,1.0000,0.1700,运行,,00249678
,南湖景园1号配变万昌交采,,,,,,,,,,,,,,,,,,,,,运行,,00249679
,钻石年代2号配变(春之草房产)交采,2012-09-25 00:00,0.3163,0.1384,0.1179,0.0599,0.0491,0.0176,0.0166,0.0149,234.8000,233.2000,234.3000,0.6000,0.5200,0.2700,0.9900,0.9900,0.9900,0.9700,0.0700,运行,,01227040
,金花茶花苑1号配变交采,2012-09-25 00:00,0.1681,0.0587,0.0409,0.0682,0.0165,0.0041,0.0055,0.0068,246.2000,243.2000,238.1000,0.2400,0.1700,0.2900,1.0000,1.0000,1.0000,1.0000,0.2100,运行,,01225510
,金水房产金鑫楼配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225651
,七星路2号公变交采,2012-09-25 00:00,0.7684,0.3600,0.1915,0.2169,0.0205,0.0000,0.0205,0.0000,232.2000,232.4000,231.5000,1.5600,0.8400,0.9500,1.0000,1.0000,0.9900,1.0000,0.2000,故障,,01701820
,外事办广园路配变交采,2012-09-25 00:00,0.3560,0.1080,0.1013,0.1466,0.0532,0.0099,0.0348,0.0085,243.4000,242.6000,243.3000,0.4500,0.4400,0.6100,0.9900,1.0000,0.9500,1.0000,0.4400,运行,,01700460
,幸福家园2号配变(世纪顺鑫)交采,2012-09-25 00:00,0.2069,0.0622,0.0748,0.0703,0.0243,0.0078,0.0053,0.0113,231.6000,230.8000,231.4000,0.2800,0.3300,0.3100,0.9900,0.9900,1.0000,0.9900,0.2300,故障,,00085185
,平湖花园1号配变交采,2012-09-25 00:00,0.1915,0.0003,0.1114,0.0797,0.0209,-0.0004,0.0160,0.0052,229.5000,229.0000,229.1000,0.0100,0.5000,0.3600,0.9900,1.0000,0.9900,1.0000,0.4900,故障,,00082586
,方园公寓二区1号配变交采,2012-09-25 00:00,0.2513,0.1797,0.0016,0.0699,-0.0450,0.0331,0.0003,-0.0786,239.1000,240.4000,,,,,,,,,,运行,,01225512
,华亿大厦1号配变交采,2012-09-25 00:00,0.2757,0.0935,0.0887,0.0933,0.0341,0.0135,0.0075,0.0132,228.8000,228.9000,229.8000,0.4200,0.3900,0.4100,0.9900,0.9900,1.0000,0.9900,0.2200,运行,,00085180
,美路庭园1号配变交采,2012-09-25 00:00,0.1779,0.0863,0.0559,0.0358,0.0338,0.0169,0.0085,0.0081,238.5000,239.0000,239.2000,0.3700,0.2400,0.1600,0.9800,0.9800,0.9900,0.9800,0.3100,运行,,01125568
,钻石年代1号配变(春之草房产)交采,2012-09-25 00:00,0.1907,0.0980,0.0520,0.0409,0.0353,0.0154,0.0122,0.0078,234.9000,233.6000,234.7000,0.4300,0.2300,0.1800,0.9800,0.9900,0.9800,0.9900,0.3500,运行,,01227032
,龙凤庭配变交采,2012-09-25 00:00,0.2854,0.0988,0.1115,0.0746,0.0336,0.0087,0.0082,0.0165,237.0000,236.7000,237.1000,0.4300,0.4800,0.3200,0.9900,1.0000,1.0000,0.9800,0.3200,运行,,0100002760
,青年国际4号配变龙基交采,,,,,,,,,,,,,,,,,,,,,运行,,00018766
,南湖碧园4号配变碧园交采,2012-09-25 00:00,0.2678,0.0878,0.1043,0.0757,0.0249,0.0056,0.0147,0.0045,229.9000,230.0000,,,,,,,,,,运行,,01225423
,泸桂园中楼1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225509
,润华2号配变润华交采,2012-09-25 00:00,0.1778,0.0383,0.0599,0.0796,0.0064,0.0004,0.0024,0.0035,226.9000,227.2000,226.6000,0.1700,0.2700,0.3600,1.0000,1.0000,1.0000,1.0000,0.2600,运行,,00281485
,佳运公寓配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225438
,骏景苑1号配变交采,2012-09-25 00:00,0.4468,0.1456,0.1752,0.1258,0.0830,0.0369,0.0113,0.0348,237.7000,237.2000,237.3000,0.6400,0.7500,0.5500,0.9800,0.9700,1.0000,0.9600,0.4400,运行,,01000213
,在水一方5号配变交采,2012-09-25 00:00,0.2095,0.0785,0.0763,0.0546,0.0127,0.0070,0.0018,0.0037,225.2000,224.8000,225.6000,0.3600,0.3400,0.2500,1.0000,1.0000,1.0000,1.0000,0.2800,运行,,01228730
,在水一方3号配变交采,2012-09-25 00:00,0.1638,0.0494,0.0579,0.0564,0.0126,0.0033,0.0000,0.0093,225.9000,224.6000,225.1000,0.2200,0.2600,0.2500,1.0000,1.0000,1.0000,0.9900,0.0100,运行,,01228728
,金源配变(金源房产)交采,2012-09-25 00:00,0.3739,0.1464,0.1086,0.1195,0.0221,0.0027,0.0081,0.0114,226.7000,226.2000,226.2000,0.6500,0.4900,0.5300,1.0000,1.0000,1.0000,1.0000,0.3700,运行,,00085952
,润华1号配变润华交采,2012-09-25 00:00,0.2025,0.0361,0.0931,0.0735,-0.0321,-0.0127,-0.0101,-0.0091,227.4000,226.7000,226.9000,0.1700,0.4200,0.3300,0.9900,0.9500,0.9900,0.9900,0.3800,运行,,00281484
,半山丽园1号配变交采,2012-09-25 00:00,0.1451,0.0398,0.0534,0.0518,0.0146,0.0030,0.0054,0.0061,239.0000,238.5000,238.5000,0.1700,0.2300,0.2200,1.0000,1.0000,1.0000,0.9900,0.1400,运行,,01002097
,和美春天1号配变交采,2012-09-25 00:00,0.2018,0.0753,0.0743,0.0522,0.0157,0.0107,0.0001,0.0050,225.2000,225.0000,225.1000,0.3400,0.3400,0.2400,1.0000,0.9900,1.0000,1.0000,0.3100,运行,,01200539
,和美春天2号配变交采,2012-09-25 00:00,0.0951,0.0346,0.0277,0.0327,-0.0024,0.0001,-0.0048,0.0024,225.0000,224.4000,225.3000,0.1600,0.1300,0.1500,1.0000,1.0000,1.0000,1.0000,0.1400,运行,,01200540
,和美春天3号配变交采,2012-09-25 00:00,0.1475,0.0783,0.0202,0.0489,0.0424,0.0299,-0.0009,0.0135,235.6000,235.7000,236.2000,0.3600,0.0900,0.2200,0.9600,0.9400,1.0000,0.9600,0.3600,运行,,01201837
,半山丽园5号配变交采,2012-09-25 00:00,0.1753,0.0559,0.0665,0.0528,-0.0010,-0.0008,0.0012,-0.0014,226.8000,226.1000,226.6000,0.2500,0.3000,0.2300,1.0000,1.0000,1.0000,1.0000,0.1700,运行,,00051977
,半岛香格里拉2号配变泓和房产交采,2012-09-25 00:00,0.2307,0.0552,0.0933,0.0821,0.0097,0.0050,-0.0018,0.0065,231.5000,230.6000,230.4000,0.2400,0.4100,0.3600,1.0000,1.0000,1.0000,1.0000,0.2900,运行,,01227880
,半山丽园2号配变交采,2012-09-25 00:00,0.1329,0.0000,0.0607,0.0725,0.0110,0.0000,0.0074,0.0035,227.0000,227.2000,227.6000,0.0000,0.2700,0.3200,1.0000,1.0000,0.9900,1.0000,0.4600,运行,,00215205
,半岛香格里拉1号配变交采,2012-09-25 00:00,0.3290,0.1203,0.1199,0.0869,0.0053,0.0076,-0.0002,-0.0023,225.1000,225.3000,224.8000,0.5400,0.5400,0.3900,1.0000,1.0000,1.0000,1.0000,0.4500,运行,,00086656
,新竹路北二里1号配变交采,2012-09-25 00:00,0.2701,0.0666,0.1267,0.0777,0.0536,0.0068,0.0378,0.0098,230.4000,229.2000,230.1000,0.3000,0.5800,0.3600,0.9800,1.0000,0.9600,0.9900,0.3600,运行,,01225573
,市人民检察院配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01100142
,祥宾路南供宿舍配变交采,2012-09-25 00:00,0.0976,0.0011,0.0985,-0.0020,0.0011,-0.0012,0.0027,-0.0004,0.0000,227.8000,0.0000,0.3200,0.4400,0.3900,1.0000,1.0000,1.0000,1.0000,0.2100,运行,,00086076
,南湖碧园6号配变碧园交采,2012-09-25 00:00,0.2174,0.1048,0.0938,0.0190,0.0167,0.0091,0.0052,0.0024,229.1000,229.0000,229.1000,0.4600,0.4100,0.0900,1.0000,1.0000,1.0000,1.0000,0.3600,运行,,01225425
,万昌溪园1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01225563
,凤和花园配变交采,2012-09-25 00:00,0.2670,0.0805,0.0961,0.0913,0.0146,0.0024,-0.0022,0.0148,224.9000,224.1000,224.5000,0.3600,0.4300,0.4300,1.0000,1.0000,1.0000,1.0000,0.0100,运行,,01227700
,南湖碧园5号配变碧园交采,2012-09-25 00:00,0.2643,0.0778,0.1103,0.0768,0.0444,0.0179,0.0180,0.0084,229.0000,229.1000,228.8000,0.3500,0.4900,0.3400,0.9900,0.9800,0.9900,1.0000,0.2100,运行,,01225424
,丝绸公司1号配变交采,2012-09-25 00:00,0.1938,0.0806,0.0480,0.0654,0.0313,0.0140,0.0103,0.0072,221.7000,222.6000,222.1000,0.3700,0.2200,0.3000,0.9900,0.9900,0.9900,1.0000,0.2100,运行,,00020116
,时代公寓配变交采,2012-09-25 00:00,0.1918,0.0464,0.0558,0.0897,0.0275,0.0053,0.0060,0.0161,232.8000,228.6000,227.5000,0.2100,0.2500,0.4100,0.9900,1.0000,0.9900,0.9900,0.3300,运行,,01225566
,建行园湖支行配变交采,2012-09-25 00:00,0.2565,0.0519,0.0914,0.1132,0.0630,0.0183,0.0129,0.0317,241.7000,241.1000,241.3000,0.2300,0.3900,0.4900,0.9700,0.9400,0.9900,0.9600,0.3200,运行,,01201239
,青年国际1号配变龙基交采,,,,,,,,,,,,,,,,,,,,,运行,,00018763
,幸福家园1号配变(世纪顺鑫)交采,,,,,,,,,,,,,,,,,,,,,运行,,01226283
,竹苑二区1号配变交采,2012-09-25 00:00,0.2043,0.0891,0.0584,0.0567,0.0177,0.0054,0.0134,-0.0010,222.1000,221.0000,224.1000,0.4100,0.2800,0.2600,1.0000,1.0000,0.9800,1.0000,0.3500,运行,,01225636
,南湖国际2号配变九鼎房产交采,,,,,,,,,,,,,,,,,,,,,运行,,00207994
,华业园1号配变交采,2012-09-25 00:00,0.3138,0.1341,0.1067,0.0736,-0.0088,-0.0006,0.0124,-0.0204,225.2000,224.8000,225.3000,0.6000,0.4800,0.3400,1.0000,1.0000,1.0000,0.9700,0.3200,运行,,00020098
,左岸青园1号配变交采,2012-09-25 00:00,0.3240,0.1290,0.0881,0.1063,0.0374,0.0114,0.0164,0.0101,226.2000,226.0000,226.2000,0.5700,0.4000,0.4700,0.9900,1.0000,0.9800,1.0000,0.3200,运行,,00085183
,南湖国际1号配变九鼎房产交采,2012-09-25 00:00,0.0921,-0.0519,0.0817,0.0616,0.0835,0.0647,0.0118,0.0071,240.8000,240.6000,240.9000,0.3500,0.3500,0.2600,0.7500,0.6300,0.9900,1.0000,0.2400,运行,,00207993
,市工业供销公司1号配变交采,2012-09-25 00:00,0.2034,0.1269,0.0415,0.0351,0.0341,0.0145,0.0309,-0.0113,238.3000,238.9000,243.1000,0.5500,0.2200,0.1600,0.9900,0.9900,0.8000,0.9600,0.5700,运行,,01225567
,逸景园小区1号配变斯壮物业交采,2012-09-25 00:00,0.1117,0.1369,-0.1000,0.0745,0.0420,0.0244,-0.0118,0.0294,230.1000,230.1000,229.5000,0.6100,0.4400,0.3500,0.9400,0.9900,0.9900,0.9300,1.0000,运行,,01225441
,中鼎温馨家园2号配变交采,2012-09-25 00:00,0.3005,0.0959,0.1095,0.0940,0.0804,0.0240,0.0268,0.0297,229.6000,230.2000,229.4000,0.4300,0.4900,0.4300,0.9700,0.9700,0.9700,0.9500,0.2400,运行,,00018630
,凤岭商住小区1号配变交采,2012-09-25 00:00,0.2493,0.0791,0.1011,0.0692,0.0260,-0.0031,0.0098,0.0197,227.3000,226.1000,226.4000,0.3500,0.4500,0.3200,0.9900,1.0000,1.0000,0.9600,0.1600,运行,,00020387
,凤岭商住小区2号配变交采,2012-09-25 00:00,0.1106,0.0242,0.0341,0.0525,0.0015,-0.0001,-0.0018,0.0033,226.9000,226.7000,226.7000,0.1100,0.1500,0.2300,1.0000,1.0000,1.0000,1.0000,0.1700,运行,,00020388
,中鼎温馨家园1号配变交采,2012-09-25 00:00,0.1913,0.0555,0.0806,0.0550,-0.0126,0.0010,-0.0034,-0.0097,230.3000,229.7000,229.7000,0.2400,0.3500,0.2400,1.0000,1.0000,1.0000,0.9900,0.1800,运行,,01002449
,逸景园小区2号配变斯壮物业交采,2012-09-25 00:00,0.2158,0.0964,0.0786,0.0408,0.0254,0.0146,0.0113,-0.0006,229.8000,230.0000,230.7000,0.4300,0.3500,0.1800,0.9900,0.9900,0.9900,1.0000,0.3500,运行,,01225442
,中鼎温馨家园3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01000871
,南湖聚宝苑配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01000324
,逸景园小区3号配变斯壮物业交采,2012-09-25 00:00,0.2356,0.1111,0.0758,0.0489,0.0391,0.0195,0.0129,0.0067,230.3000,230.0000,229.9000,0.5000,0.3400,0.2200,0.9900,0.9900,0.9900,1.0000,0.3900,运行,,01225443
,青年国际2号配变龙基交采,,,,,,,,,,,,,,,,,,,,,运行,,00018764
,三元苑1号配变交采,2012-09-25 00:00,0.0922,0.0355,0.0164,0.0404,0.0204,0.0151,-0.0012,0.0064,242.9000,243.5000,241.7000,0.1600,0.0800,0.1800,0.9800,0.9200,1.0000,0.9900,0.1800,运行,,01225513
,凯丰大厦配变交采,2012-09-25 00:00,0.1321,0.0523,0.0624,0.0174,0.0229,0.0077,0.0159,-0.0008,237.2000,236.2000,237.0000,0.2300,0.2900,0.0800,0.9900,0.9900,0.9700,1.0000,0.2800,运行,,01059544
,蓝天小区1号配变交采,2012-09-25 00:00,0.0857,0.0886,0.0555,-0.0579,0.0088,0.0078,0.0049,-0.0041,226.8000,226.5000,226.9000,0.4000,0.2500,0.2600,0.9900,1.0000,1.0000,1.0000,0.6000,运行,,01200642
,三元苑2号配变交采,2012-09-25 00:00,0.0729,0.0275,0.0099,0.0354,0.0311,-0.0327,0.0493,0.0145,230.3000,230.4000,230.1000,0.1900,0.2200,0.1700,0.9200,0.6400,0.2000,0.9300,0.3900,运行,,01225525
,中行香江花园1号配变中行交采,,,,,,,,,,,,,,,,,,,,,运行,,00086112
,区政府新民宿舍配变交采,2012-09-25 00:00,0.0001,0.0000,0.0000,0.0001,-0.0002,-0.0001,-0.0001,0.0000,231.8000,232.0000,231.8000,0.0000,0.0000,0.0000,0.6200,1.0000,1.0000,1.0000,0.0100,运行,,01700418
,中行香江花园2号配变中行交采,,,,,,,,,,,,,,,,,,,,,运行,,00086113
,市土地管理局配变交采,2012-09-25 00:00,0.2345,0.0862,0.0618,0.0869,0.0620,0.0173,0.0213,0.0233,224.0000,223.3000,219.3000,0.3900,0.3000,0.4100,0.9700,0.9800,0.9500,0.9700,0.2700,运行,,01124356
,国土资源局1号配变交采,2012-09-25 00:00,0.1977,0.0640,0.0649,0.0688,0.0212,0.0040,0.0015,0.0156,242.9000,242.5000,242.8000,0.2800,0.2800,0.3000,0.9900,1.0000,1.0000,0.9800,0.2600,运行,,01101251
,广电技术配变交采,2012-09-25 00:00,0.2035,0.0710,0.0578,0.0741,-0.0045,-0.0016,-0.0087,0.0058,231.3000,231.2000,230.3000,0.3100,0.2600,0.3300,1.0000,1.0000,0.9900,1.0000,0.2200,运行,,01000947
,区林化工业公司1号配变交采,2012-09-25 00:00,0.2157,0.0925,0.0578,0.0656,0.0257,0.0079,0.0093,0.0085,222.0000,224.6000,222.0000,0.4300,0.2700,0.3100,0.9900,1.0000,0.9900,0.9900,0.3400,运行,,01225571
,园湖苑配变交采,2012-09-25 00:00,0.1617,0.0788,0.0566,0.0263,0.0093,0.0000,0.0071,0.0021,231.8000,231.6000,230.6000,0.3500,0.2500,0.1200,1.0000,1.0000,0.9900,1.0000,0.3000,运行,,01228854
,方洲公寓1号配变交采,2012-09-25 00:00,0.1418,0.0381,0.0549,0.0487,0.0565,0.0161,0.0231,0.0172,237.8000,237.6000,,,,,,,,,,运行,,01225381
,荣和二组团2号配变荣和交采,,,,,,,,,,,,,,,,,,,,,运行,,00075945
,沁景苑2号配变交采,2012-09-25 00:00,0.2228,0.0000,0.1049,0.1179,0.0358,0.0000,0.0115,0.0243,240.0000,240.7000,239.2000,0.0000,0.4400,0.5000,0.9900,0.0000,0.9900,0.9800,0.1400,运行,,01225436
,明湖花园配变交采,2012-09-25 00:00,0.3023,0.0932,0.0901,0.1194,0.0839,0.0310,0.0248,0.0280,226.5000,224.2000,224.1000,0.4400,0.4200,0.5500,0.9600,0.9500,0.9600,0.9700,0.2500,运行,,01225382
,新新家园8号配变房产总公司交采,2012-09-25 00:00,0.4276,0.1579,0.1417,0.1464,0.0159,0.0052,0.0124,-0.0019,225.1000,224.9000,225.1000,0.6800,0.6400,0.6600,1.0000,1.0000,1.0000,1.0000,0.4600,运行,,01226612
,新新家园9号配变房产总公司交采,2012-09-25 00:00,0.2952,0.0910,0.0880,0.1159,-0.0092,-0.0081,-0.0004,-0.0008,226.0000,225.6000,225.7000,0.4100,0.3900,0.5200,1.0000,1.0000,1.0000,1.0000,0.3100,运行,,01226614
,南湖明珠1号配变(浩洋房产)交采,2012-09-25 00:00,0.1799,0.0673,0.0793,0.0336,0.0279,0.0116,0.0106,0.0056,221.9000,224.7000,226.0000,0.3100,0.3600,0.1500,0.9900,0.9900,0.9900,0.9900,0.3100,运行,,01225564
,都市100配变交采,2012-09-25 00:00,0.3213,0.0983,0.1183,0.1057,0.0335,0.0086,0.0107,0.0140,226.3000,225.9000,224.8000,0.4400,0.5300,0.4700,0.9900,1.0000,1.0000,0.9900,0.2900,运行,,00017028
,区卫生厅1号配变交采,2012-09-25 00:00,0.3485,0.1505,0.0959,0.1021,0.0545,0.0183,0.0249,0.0111,223.2000,224.4000,224.2000,1.3700,0.8900,0.9300,0.9900,0.9900,0.9700,0.9900,0.5800,运行,,01225632
,嘉园小区2号配变交采,2012-09-25 00:00,0.0365,0.0183,0.0085,0.0096,-0.0041,0.0001,-0.0073,0.0033,236.6000,237.1000,235.4000,0.1100,0.0600,0.0600,0.9900,1.0000,0.7700,1.0000,0.1500,运行,,01225517
,嘉园小区3号配变交采,2012-09-25 00:00,0.2079,0.0748,0.0556,0.0776,-0.0335,0.0186,-0.0615,0.0094,231.0000,230.9000,231.5000,0.3400,0.3700,0.3400,0.9900,0.9700,0.6800,0.9900,0.3900,运行,,01225518
,嘉园小区4号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01000124
,星和园1号配变交采,2012-09-25 00:00,0.3155,0.1144,0.1128,0.0907,0.0572,0.0341,0.0131,0.0099,242.1000,242.2000,241.8000,0.5000,0.4700,0.3800,0.9800,0.9600,0.9900,0.9900,0.4000,运行,,01225507
,嘉园小区1号配变交采,2012-09-25 00:00,0.2159,0.1002,0.0980,0.0181,0.0201,0.0252,-0.0097,0.0044,233.9000,233.7000,241.1000,0.4500,0.4300,0.0800,1.0000,0.9700,1.0000,0.9900,0.4900,运行,,01225515
,星和园2号配变交采,2012-09-25 00:00,0.3291,0.1125,0.1069,0.1094,0.0788,0.0300,0.0203,0.0285,242.6000,242.4000,242.1000,0.4800,0.4500,0.4700,0.9700,0.9700,0.9800,0.9700,0.2600,运行,,01225508
,大自然花园2号配变交采,2012-09-25 00:00,0.4238,0.1474,0.1549,0.1215,0.0247,0.0079,0.0045,0.0123,227.9000,227.4000,228.4000,0.6000,0.6300,0.4900,1.0000,1.0000,1.0000,0.9900,0.0400,运行,,00051813
,东升阁配变交采,2012-09-25 00:00,0.1526,0.0533,0.0430,0.0575,0.0164,0.0048,0.0016,0.0098,237.8000,237.7000,237.8000,0.2300,0.1800,0.2500,0.9900,1.0000,1.0000,0.9900,0.1800,运行,,01125506
,东坡阁配变交采,2012-09-25 00:00,0.1950,0.0618,0.0663,0.0669,0.0136,0.0024,0.0060,0.0051,237.9000,237.1000,237.4000,0.2600,0.2800,0.2900,1.0000,1.0000,1.0000,1.0000,0.1800,运行,,01125507
,东日阁配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01003688
,龙晴庭配变(中房翡翠园)交采,2012-09-25 00:00,0.3564,0.1161,0.0770,0.1632,0.0302,0.0125,-0.0072,0.0248,226.1000,226.3000,,,,,,,,,,运行,,01003294
,龙吟庭配变(中房翡翠园)交采,2012-09-25 00:00,0.2534,0.0938,0.0633,0.0964,0.0227,0.0109,0.0060,0.0055,238.0000,238.0000,237.1000,0.4000,0.2700,0.4100,1.0000,0.9900,1.0000,1.0000,0.2900,运行,,01200602
,拥湖庭配变(中房翡翠园)交采,2012-09-25 00:00,0.2331,0.0699,0.0709,0.0934,0.0151,0.0083,0.0062,0.0007,238.0000,238.9000,238.2000,0.3000,0.3000,0.3900,1.0000,0.9900,1.0000,1.0000,0.2500,运行,,01226178
,西星阁配变(中房翡翠园)交采,2012-09-25 00:00,0.2534,0.0781,0.0904,0.0848,0.0345,0.0025,0.0183,0.0134,237.4000,236.9000,237.3000,0.3400,0.3900,0.3700,0.9900,1.0000,0.9800,0.9900,0.2600,运行,,01200868
,西云阁配变(中房翡翠园)交采,2012-09-25 00:00,0.1993,0.0708,0.0763,0.0523,0.0267,0.0194,0.0012,0.0056,237.2000,236.6000,237.3000,0.3100,0.3100,0.2200,0.9900,0.9600,1.0000,1.0000,0.2900,运行,,01200869
,大自然花园4号配变交采,2012-09-25 00:00,0.3413,0.1160,0.1142,0.1111,0.0293,0.0133,0.0046,0.0113,226.4000,226.9000,226.0000,0.5300,0.5200,0.5100,1.0000,0.9900,1.0000,1.0000,0.2400,运行,,01200720
,大自然花园3号配变交采,2012-09-25 00:00,0.1065,0.0281,0.0396,0.0385,0.0088,0.0005,0.0007,0.0075,238.5000,238.9000,238.6000,0.1200,0.1700,0.1700,1.0000,1.0000,1.0000,0.9900,0.1300,运行,,01003699
,美路庭园2号配变交通房产交采,2012-09-25 00:00,0.0110,0.0628,-0.0928,0.0411,-0.0092,0.0058,-0.0183,0.0034,238.8000,237.9000,238.7000,0.2700,0.4000,0.1800,0.7600,1.0000,0.9800,1.0000,0.6300,运行,,01125569
,机械厅1号配变交采,2012-09-25 00:00,0.2039,0.0842,0.0651,0.0544,0.0318,0.0161,0.0115,0.0042,226.9000,227.0000,227.2000,0.3800,0.2900,0.2400,0.9900,0.9800,0.9900,1.0000,0.2600,运行,,01225561
,恒龙花园配变交采,2012-09-25 00:00,0.3503,0.1135,0.1429,0.0939,0.0409,0.0075,0.0197,0.0140,230.7000,230.2000,230.2000,0.5000,0.6300,0.4200,0.9900,1.0000,0.9900,0.9900,0.3500,运行,,01225519
,天成府1号配变交采,2012-09-25 00:00,0.3926,0.1374,0.1259,0.1292,0.0697,0.0230,0.0241,0.0230,230.3000,230.9000,229.6000,0.6100,0.5600,0.5700,0.9800,0.9900,0.9800,0.9800,0.2400,运行,,01225520
,安宇花园1号配变交采,2012-09-25 00:00,0.2283,0.0777,0.0670,0.0838,0.0470,0.0167,0.0127,0.0180,231.5000,231.3000,229.3000,0.3400,0.3000,0.3800,0.9800,0.9800,0.9800,0.9800,0.2200,运行,,01225514
,区生产资料总公司配变交采,2012-09-25 00:00,0.2217,0.0813,0.0705,0.0704,0.0666,0.0195,0.0359,0.0112,233.4000,232.4000,232.3000,0.3600,0.3500,0.3100,0.9600,0.9700,0.8900,0.9900,0.2600,运行,,01225569
,石油局2号配变交采,2012-09-25 00:00,0.2922,0.0743,0.1061,0.1122,0.0933,0.0242,0.0275,0.0415,241.2000,240.2000,239.8000,0.3300,0.4600,0.5000,0.9500,0.9500,0.9700,0.9400,0.4000,运行,,01200777
,石油局3号配变交采,2012-09-25 00:00,0.2811,0.0959,0.0909,0.0932,0.0599,0.0208,0.0218,0.0172,240.8000,240.5000,241.0000,0.4200,0.3900,0.4000,0.9800,0.9800,0.9700,0.9900,0.2500,运行,,
,石油局4号配变交采,2012-09-25 00:00,0.3720,0.1317,0.1412,0.0992,0.0430,0.0200,0.0143,0.0092,228.6000,229.1000,228.8000,0.5900,0.6300,0.4400,0.9900,0.9900,1.0000,1.0000,0.4100,运行,,01200779
,宁阳大厦配变交采,2012-09-25 00:00,0.2327,0.1426,0.0000,0.0900,0.0222,0.0114,0.0000,0.0108,226.6000,226.4000,226.4000,0.6400,0.0000,0.4100,1.0000,1.0000,1.0000,0.9900,0.5900,运行,,00149863
,城市花园白领公寓1号配变交采,2012-09-25 00:00,0.4381,0.1026,0.1944,0.1413,0.0891,0.0251,0.0427,0.0213,223.3000,223.6000,224.0000,0.9400,1.8200,1.2800,0.9800,0.9700,0.9800,0.9900,0.9100,运行,,01201029
,城市花园白领公寓2号配变交采,2012-09-25 00:00,0.3535,0.1173,0.1131,0.1231,0.0504,0.0203,0.0135,0.0166,223.0000,224.0000,223.9000,1.0700,1.0200,1.1200,0.9900,0.9900,0.9900,0.9900,0.5000,运行,,01201030
,太平洋保险南宁分公司配变交采,2012-09-25 00:00,0.2620,0.0570,0.0763,0.1290,0.0510,0.0080,0.0187,0.0242,237.4000,242.2000,233.9000,0.2500,0.3300,0.5600,0.9800,0.9900,0.9700,0.9800,0.4200,运行,,01124884
,城市之光1号配变交采,2012-09-25 00:00,0.5152,0.1594,0.1956,0.1604,0.1400,0.0478,0.0504,0.0421,235.6000,236.5000,235.5000,0.7100,0.8700,0.7100,0.9600,0.9600,0.9700,0.9700,0.4900,运行,,01001793
,城市之光2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01001794
,城市综合管理办公室配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01125248
,泽峰苑1号配变(高峰房产)交采,,,,,,,,,,,,,,,,,,,,,运行,,01225494
,锦和花园配变(和基房产)交采,2012-09-25 00:00,0.2358,0.0640,0.0900,0.0822,0.0608,0.0118,0.0255,0.0234,235.8000,233.0000,235.2000,0.2800,0.4100,0.3700,0.9700,0.9900,0.9600,0.9600,0.2300,运行,,01225644
,金城苑配变(高峰房产)交采,2012-09-25 00:00,0.2820,0.1057,0.0909,0.0873,0.0458,0.0197,0.0134,0.0127,233.2000,236.4000,235.5000,0.9200,0.7800,0.7600,0.9900,0.9800,0.9900,0.9900,0.5000,运行,,01225495
,万町大厦配变交采,2012-09-25 00:00,0.1785,0.0869,0.0413,0.0503,0.0066,-0.0039,-0.0082,0.0169,235.7000,236.0000,235.6000,0.3700,0.1800,0.2300,1.0000,1.0000,0.9900,0.9500,0.1900,运行,,01000864
,武警水电第一总队配变交采,2012-09-25 00:00,0.2125,0.0778,0.0803,0.0549,0.0342,0.0133,0.0145,0.0062,232.3000,231.9000,232.4000,0.3400,0.3500,0.2400,0.9900,0.9900,0.9900,1.0000,0.2200,运行,,01124671
,通邑苑1号配变交采,2012-09-25 00:00,0.2421,0.0676,0.0852,0.0893,0.0310,0.0092,0.0055,0.0165,238.2000,238.7000,237.8000,0.2900,0.3700,0.3900,0.9900,0.9900,1.0000,0.9800,0.2700,运行,,01000731
,通邑苑2号配变交采,2012-09-25 00:00,0.2360,0.0879,0.0599,0.0889,0.0412,0.0136,0.0127,0.0151,238.5000,237.7000,238.0000,0.3700,0.2600,0.3800,0.9900,0.9900,0.9800,0.9900,0.2500,运行,,01225505
,通邑苑3号配变交采,,,,,,,,,,,,,,,,,,,,,测试,,01225506
,格兰云天配变交采,2012-09-25 00:00,0.3572,0.1382,0.1301,0.0892,0.0392,0.0219,0.0153,0.0017,226.3000,226.7000,226.7000,0.6200,0.5800,0.4000,0.9900,0.9900,0.9900,1.0000,0.4500,运行,,01225618
,明豪配变交采,2012-09-25 00:00,0.2481,0.0756,0.0879,0.0845,0.0726,0.0266,0.0141,0.0316,237.2000,238.7000,238.5000,0.6800,0.7500,0.7600,0.9600,0.9400,0.9900,0.9400,0.3800,运行,,01002322
,华星城住宅1号配变交采,2012-09-25 00:00,0.1705,0.0735,0.0406,0.0564,0.0219,0.0122,0.0052,0.0044,228.8000,228.7000,228.5000,0.3300,0.1800,0.2500,0.9900,0.9900,1.0000,1.0000,0.2200,运行,,01225595
,华星时代广场1号配变交采,2012-09-25 00:00,0.5597,0.2062,0.1755,0.1788,0.1049,0.0312,0.0430,0.0308,231.4000,230.9000,231.1000,0.9000,0.7800,0.7700,0.9800,0.9900,0.9700,0.9900,0.2400,运行,,00017009
,华星时代广场2号配变交采,2012-09-25 00:00,0.1206,0.0403,0.0404,0.0398,-0.0213,-0.0080,-0.0064,-0.0071,231.9000,231.3000,231.5000,0.1800,0.1800,0.1800,0.9900,0.9900,0.9900,0.9900,0.1500,运行,,00017010
,欧景城市广场2号配变(万怡)交采,2012-09-25 00:00,0.3417,0.1449,0.1459,0.0509,0.0307,0.0106,0.0148,0.0053,226.8000,226.1000,226.7000,0.6500,0.6600,0.2300,1.0000,1.0000,1.0000,1.0000,0.4600,运行,,01003488
,欧景城市广场1号配变(万怡)交采,2012-09-25 00:00,0.4138,0.1626,0.2247,0.0262,0.0433,0.0107,0.0288,0.0041,226.7000,226.1000,227.2000,0.7300,1.0100,0.1200,0.9900,1.0000,0.9900,1.0000,0.7700,运行,,01003487
,寓隆公寓配变(寓隆房地产)交采,2012-09-25 00:00,0.1758,0.0432,0.0507,0.0819,0.0191,0.0061,0.0040,0.0089,232.3000,231.0000,230.8000,0.1900,0.2200,0.3600,1.0000,0.9900,1.0000,1.0000,0.2700,运行,,01067253
,人寿保险1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01226871
,富丽华庭1号配变鼎巨交采,2012-09-25 00:00,0.0509,-0.0882,0.0608,0.0796,0.0114,-0.0085,0.0053,0.0146,227.1000,226.7000,226.9000,0.4000,0.2700,0.3600,0.9800,1.0000,1.0000,0.9800,0.6800,运行,,01225498
,富丽华庭2号配变鼎巨交采,2012-09-25 00:00,0.2103,0.0728,0.0625,0.0749,0.0264,0.0135,0.0065,0.0063,227.5000,227.4000,,,,,,,,,,运行,,01225499
,紫荆花园1号配变交采,2012-09-25 00:00,0.1887,0.0849,0.0592,0.0423,0.0346,0.0173,0.0105,0.0068,230.4000,229.1000,231.3000,0.3800,0.2700,0.1900,0.9800,0.9800,0.9900,0.9900,0.2800,运行,,01225414
,紫荆花园2号配变交采,2012-09-25 00:00,0.1179,0.0356,0.0298,0.0523,0.0244,0.0043,0.0072,0.0129,230.8000,229.3000,231.1000,0.1600,0.1300,0.2400,0.9800,1.0000,0.9800,0.9700,0.1800,运行,,01225415
,华星时代广场3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,00017011
,区粮食局配变交采,2012-09-25 00:00,0.4306,0.1704,0.1437,0.1168,0.0837,0.0244,0.0362,0.0237,234.2000,230.5000,238.1000,0.7600,0.6500,0.5300,0.9800,0.9900,0.9700,0.9800,0.4300,运行,,01124422
,城市花园4号配变交采,2012-09-25 00:00,0.4207,0.1329,0.1449,0.1428,0.0149,-0.0008,0.0057,0.0100,224.6000,225.0000,,,,,,,,,,运行,,01228535
,春晖花园1号公变交采,2012-09-25 00:00,0.2432,0.0806,0.0800,0.0829,0.0097,0.0004,0.0058,0.0036,236.2000,235.9000,235.8000,0.3400,0.3400,0.3500,1.0000,1.0000,1.0000,1.0000,0.1900,故障,,0100002223
,春晖花园2号公变交采,2012-09-25 00:00,0.2258,0.0678,0.0913,0.0667,0.0115,0.0031,0.0068,0.0015,236.6000,235.1000,236.3000,0.2900,0.3900,0.2900,1.0000,1.0000,1.0000,1.0000,0.2300,故障,,0100002224
,春晖花园3号公变交采,2012-09-25 00:00,0.2693,0.0821,0.0804,0.1072,0.0105,0.0033,0.0024,0.0047,236.6000,235.6000,235.7000,0.3500,0.3500,0.4600,1.0000,1.0000,1.0000,1.0000,0.2800,故障,,0100002225
,春晖花园4号公变交采,2012-09-25 00:00,0.3561,0.1263,0.1494,0.0818,0.0105,0.0006,0.0100,-0.0002,236.6000,235.7000,236.1000,0.5400,0.6400,0.3500,1.0000,1.0000,1.0000,1.0000,0.3900,故障,,0100002226
,春晖花园B区1号配变交采,,,,,,,,,,,,,,,,,,,,,故障,,0100002227
,希尔顿1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01229871
,希尔顿2号配变交采,2012-09-25 00:00,0.2788,0.1079,0.0992,0.0718,0.0221,0.0084,0.0133,0.0004,226.1000,225.8000,225.7000,0.4800,0.4400,0.3200,1.0000,1.0000,0.9900,1.0000,0.2200,运行,,01229872
,民航民族1号配变交采,2012-09-25 00:00,0.3516,0.1231,0.1319,0.0957,0.0765,0.0247,0.0244,0.0274,229.7000,231.2000,230.4000,1.1000,1.1700,0.8700,0.9800,0.9800,0.9800,0.9600,0.4700,运行,,00248188
,航洋国际1号配变交采,2012-09-25 00:00,0.1034,0.0393,0.0364,0.0309,0.0183,0.0041,0.0092,0.0049,228.1000,227.7000,228.3000,0.1800,0.1700,0.1400,0.9900,1.0000,0.9700,0.9900,0.1500,运行,,01228194
,航洋国际4号配变交采,,,,,,,,,,,,,,,,,,,,,测试,,01228197
,市委统战部配变交采,2012-09-25 00:00,0.2392,0.0898,0.0833,0.0670,0.0110,0.0051,0.0031,0.0026,237.1000,236.9000,236.8000,0.3900,0.3600,0.2900,1.0000,1.0000,1.0000,1.0000,0.3000,运行,,01226220
,倚林佳园1号配变交采,2012-09-25 00:00,0.1723,0.0625,0.0404,0.0694,-0.0246,-0.0137,0.0039,-0.0148,227.8000,226.9000,227.4000,0.2900,0.1800,0.3200,0.9900,0.9800,1.0000,0.9800,0.3400,运行,,01227736
,倚林佳园4号配变交采,2012-09-25 00:00,0.1235,0.0338,0.0509,0.0390,-0.0207,-0.0042,0.0002,-0.0167,227.8000,228.2000,227.8000,0.1500,0.2300,0.1900,0.9900,1.0000,1.0000,0.9200,0.2400,运行,,01227739
,倚林佳园2号配变交采,2012-09-25 00:00,0.2670,0.1240,0.0700,0.0778,0.0185,0.0075,0.0100,0.0014,227.3000,227.0000,227.2000,0.5500,0.3200,0.3500,1.0000,1.0000,0.9900,1.0000,0.4000,运行,,01227737
,荣和四组团1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,荣和四组团2号配变交采,2012-09-25 00:00,0.2774,0.1059,0.1094,0.0648,0.0155,0.0070,0.0052,0.0037,226.2000,225.8000,226.4000,0.4700,0.4900,0.2900,1.0000,1.0000,1.0000,1.0000,0.3500,运行,,
,荣和四组团3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,荣和四组团4号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,荣和四组团5号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,中国银行1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,00019227
,铭湖经典配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01003505
,东林阁配变(沪桂)交采,,,,,,,,,,,,,,,,,,,,,运行,,00020228
,凤翔花园4号配变交采,2012-09-25 00:00,0.2334,0.0765,0.0976,0.0592,0.0174,0.0052,0.0089,0.0032,236.1000,235.8000,,,,,,,,,,运行,,01228323
,领东尚层配变交采,2012-09-25 00:00,0.2694,0.0965,0.1047,0.0679,0.0565,0.0310,0.0152,0.0103,224.5000,224.9000,224.8000,0.4500,0.4700,0.3100,0.9800,0.9500,0.9900,0.9900,0.3600,运行,,0100002071
,拆迁办公室祥宾路AB地块配变交采,2012-09-25 00:00,0.9603,0.2778,0.2618,0.4207,0.1241,0.0391,0.0287,0.0563,240.4000,240.2000,239.5000,1.2100,1.1200,1.8000,0.0000,0.0000,0.0000,0.0000,0.2000,故障,,01002351
,青青雅苑配变交采,2012-09-25 00:00,0.2160,0.0622,0.0895,0.0645,0.0348,0.0071,0.0140,0.0136,229.2000,228.9000,227.7000,0.2800,0.4100,0.3000,0.9900,1.0000,0.9900,0.9800,0.3700,运行,,01225574
,轻工公司1号配变交采,2012-09-25 00:00,0.1411,0.0729,0.0308,0.0372,0.0205,0.0076,0.0039,0.0089,228.5000,233.4000,230.4000,0.6500,0.2700,0.3400,0.9900,1.0000,1.0000,0.9800,0.4400,运行,,01002940
,信托南湖配变交采,2012-09-25 00:00,0.0697,0.0162,0.0410,0.0125,0.0036,0.0003,0.0030,0.0002,231.0000,228.5000,229.8000,0.0800,0.1900,0.0600,1.0000,1.0000,1.0000,1.0000,0.2100,运行,,00084981
,湖景花园1号配变交采,2012-09-25 00:00,0.4635,0.1536,0.1382,0.1718,0.1850,0.0665,0.0585,0.0599,229.3000,231.0000,229.3000,0.7400,0.6600,0.8000,0.9900,1.0000,0.9900,1.0000,0.3200,运行,,01001808
,长岗三组2号公变交采,2012-09-25 00:00,0.6640,0.1830,0.2631,0.2179,0.2006,0.0734,0.0490,0.0782,236.7000,234.9000,236.5000,0.8300,1.1300,0.9700,-0.9600,-0.9300,-0.9800,-0.9400,0.1200,运行,,0160003291
,上东国际4号配变交采,2012-09-25 00:00,0.3017,0.1137,0.0952,0.0929,0.0033,0.0033,0.0008,-0.0006,225.8000,226.5000,225.4000,0.5100,0.4400,0.4300,1.0000,1.0000,1.0000,1.0000,0.4700,运行,,0100002943
,南湖国际3号配变交采,2012-09-25 00:00,0.2485,0.0819,0.0956,0.0712,0.0085,0.0010,0.0085,-0.0010,229.3000,229.2000,229.9000,0.7200,0.8400,0.6200,1.0000,1.0000,1.0000,1.0000,0.4700,运行,,0100002292
,南湖国际4号配变交采,2012-09-25 00:00,0.2372,0.1003,0.0798,0.0575,0.0119,0.0061,0.0042,0.0019,229.8000,229.5000,229.8000,0.4400,0.3500,0.2500,1.0000,1.0000,1.0000,1.0000,0.2900,运行,,0100002293
,西虹阁配变交采,2012-09-25 00:00,0.2050,0.0720,0.0758,0.0572,0.0038,-0.0011,-0.0013,0.0057,237.4000,237.1000,237.8000,0.3100,0.3200,0.2400,1.0000,1.0000,1.0000,1.0000,0.1900,运行,,0100002908
,龙祥庭配变交采,2012-09-25 00:00,0.3413,0.1509,0.1166,0.0746,0.0179,0.0100,-0.0020,0.0098,237.3000,237.6000,236.8000,0.6400,0.4900,0.3200,1.0000,1.0000,1.0000,0.9900,0.4000,运行,,0100002762
,富丽华庭3号配变鼎巨交采,,,,,,,,,,,,,,,,,,,,,运行,,01225500
,中行麻村1号配变交采,2012-09-25 00:00,0.4272,0.1448,0.1092,0.1733,0.0922,0.0248,0.0341,0.0332,240.8000,240.6000,240.4000,0.6100,0.4800,0.7400,0.9800,0.9900,0.9600,0.9800,0.3700,运行,,00149873
,石油局1号配变交采,2012-09-25 00:00,0.3164,0.0925,0.0856,0.1382,0.0884,0.0266,0.0279,0.0336,240.4000,240.8000,240.2000,0.4100,0.3800,0.5900,0.9600,0.9600,0.9500,0.9700,0.3700,运行,,01200776
,和实水榭花都3号配变交采,2012-09-25 00:00,0.2534,0.0724,0.0787,0.1012,0.0174,0.0066,0.0078,0.0028,228.4000,228.7000,228.0000,0.3200,0.3500,0.4500,1.0000,1.0000,1.0000,1.0000,0.2700,运行,,00184006
,力天大厦配变(桂建业房产)交采,2012-09-25 00:00,0.5347,0.2028,0.1614,0.1714,0.1183,0.0488,0.0354,0.0341,226.6000,227.4000,226.6000,0.9300,0.7300,0.7800,0.9800,0.9700,0.9800,0.9800,0.4300,运行,,01201327
,建政南路3号公变交采,2012-09-25 00:00,1.8021,0.5984,0.6329,0.5708,0.1596,0.0384,0.0656,0.0556,229.8000,229.4000,229.5000,2.6100,2.7900,2.5100,1.0000,1.0000,0.9900,1.0000,0.0500,故障,,0100003908
,民乐路1号公变交采,2012-09-25 00:00,0.7622,0.2570,0.2081,0.2971,0.1133,0.0512,0.0215,0.0406,243.3000,243.6000,243.1000,1.1000,0.8800,1.2600,0.9900,0.9800,0.9900,0.9900,0.0800,故障,,01702041
,柳沙丽园1号配变交采,2012-09-25 00:00,0.2288,0.0578,0.0855,0.0853,0.0103,0.0000,0.0134,-0.0030,237.8000,237.5000,237.1000,0.2500,0.3700,0.3700,1.0000,1.0000,0.9900,1.0000,0.2800,运行,,0100003299
,柳沙丽园2号配变交采,2012-09-25 00:00,0.2942,0.0968,0.0786,0.1187,0.0051,0.0031,-0.0018,0.0037,237.3000,237.9000,237.2000,0.4200,0.3400,0.5100,1.0000,1.0000,1.0000,1.0000,0.4200,运行,,0100003955
,半岛融园6号公变交采,2012-09-25 00:00,0.2390,0.0928,0.0868,0.0597,-0.0017,0.0045,-0.0012,-0.0049,225.0000,224.7000,224.7000,0.4200,0.3900,0.2700,1.0000,1.0000,1.0000,1.0000,0.3100,故障,,0100003150
,半岛融园3号公变交采,2012-09-25 00:00,0.2481,0.0928,0.0729,0.0811,-0.0040,-0.0009,0.0015,-0.0042,224.6000,224.6000,224.8000,0.4200,0.3200,0.3600,1.0000,1.0000,1.0000,1.0000,0.2300,故障,,0100002955
,半岛融园4号公变交采,,,,,,,,,,,,,,,,,,,,,故障,,0100002956
,半岛融园5号公变交采,2012-09-25 00:00,0.2033,0.0740,0.0904,0.0403,0.0027,0.0016,-0.0002,0.0011,225.0000,224.7000,224.4000,0.3300,0.4000,0.1800,1.0000,1.0000,1.0000,1.0000,0.3300,故障,,0100002957
,半岛融园1号公变交采,2012-09-25 00:00,0.2023,0.0785,0.0790,0.0455,-0.0082,-0.0013,-0.0076,0.0007,224.5000,224.8000,224.4000,0.3500,0.3600,0.2000,1.0000,1.0000,1.0000,1.0000,0.2500,故障,,0100002953
,半岛融园2号公变交采,,,,,,,,,,,,,,,,,,,,,故障,,0100002954
,凯旋世纪1号配变交采,2012-09-25 00:00,0.0526,0.0208,0.0119,0.0199,0.0049,0.0021,0.0049,-0.0021,232.4000,232.3000,232.3000,0.0900,0.0600,0.0900,1.0000,1.0000,0.9300,1.0000,0.0400,运行,,0100002586
,凯旋世纪2号配变交采,2012-09-25 00:00,0.0625,0.0198,0.0246,0.0181,0.0032,0.0005,-0.0004,0.0032,232.1000,232.0000,232.2000,0.0900,0.1100,0.0800,1.0000,1.0000,1.0000,0.9900,0.0300,运行,,0100002589
,琅东八组公变交采,2012-09-25 00:00,0.6979,0.2607,0.1862,0.2509,0.1019,0.0529,0.0265,0.0224,239.5000,240.9000,239.7000,1.1100,0.7800,1.0500,0.9900,0.9800,0.9900,1.0000,0.2000,运行,,0160005989
,上海滩公馆1号配变交采,2012-09-25 00:00,0.2093,0.0587,0.0889,0.0610,0.0087,0.0009,-0.0006,0.0074,239.5000,238.5000,238.6000,0.2500,0.3700,0.2600,1.0000,1.0000,1.0000,1.0000,0.2100,运行,,01700780
,上海滩公馆2号配变交采,2012-09-25 00:00,0.1396,0.0620,0.0316,0.0460,-0.0481,-0.0143,-0.0178,-0.0159,239.0000,239.3000,238.8000,0.2700,0.1500,0.2000,0.9400,0.9800,0.8900,0.9500,0.2000,运行,,01700781
,青湖中心1号配变交采,2012-09-25 00:00,0.0816,0.0250,0.0300,0.0268,-0.0061,0.0009,-0.0027,-0.0043,237.5000,237.7000,237.2000,0.1100,0.1300,0.1200,1.0000,1.0000,1.0000,0.9900,0.1200,运行,,0100003542
,青湖中心2号配变交采,2012-09-25 00:00,0.0717,0.0233,0.0312,0.0171,0.0107,0.0008,0.0069,0.0029,237.1000,236.5000,237.1000,0.1000,0.1400,0.0800,0.9900,1.0000,0.9800,1.0000,0.1000,运行,,0100003543
,上东国际1号配变交采,2012-09-25 00:00,0.0793,0.0244,0.0248,0.0300,-0.0096,-0.0059,-0.0018,-0.0018,226.8000,226.4000,226.5000,0.1200,0.1200,0.1400,0.9900,0.9800,1.0000,1.0000,0.1600,运行,,0100002940
,上东国际3号配变交采,2012-09-25 00:00,0.2600,0.0853,0.0977,0.0771,0.0107,0.0023,0.0062,0.0022,226.1000,225.5000,225.7000,0.3800,0.4300,0.3400,1.0000,1.0000,1.0000,1.0000,0.2000,运行,,0100002942
,民生路7号公变交采,2012-09-25 00:00,0.2586,0.0756,0.1207,0.0625,0.0730,0.0316,0.0275,0.0138,238.5000,238.0000,238.4000,0.3500,0.5400,0.2700,0.9600,0.9200,0.9800,0.9800,0.3600,运行,,01225090
,东葛路1号公变交采,2012-09-25 00:00,0.0006,0.0000,0.0005,0.0000,0.0003,0.0000,0.0003,0.0000,233.0000,232.7000,,,,,,,,,,运行,,01200184
,东葛路5号公变交采,2012-09-25 00:00,0.1446,0.0487,0.0392,0.0606,0.0442,0.0088,0.0147,0.0205,226.3000,225.5000,225.5000,0.2200,0.1900,0.2800,0.9600,0.9900,0.9400,0.9500,0.2100,运行,,01225078
,南湖3组公变交采,2012-09-25 00:00,0.8076,0.1912,0.2683,0.3480,-0.0409,-0.0085,-0.0169,-0.0154,224.9000,223.9000,223.2000,0.8500,1.2000,1.5600,1.0000,1.0000,1.0000,1.0000,0.5500,运行,,
,市民主党派配变交采,2012-09-25 00:00,0.0691,0.0201,0.0348,0.0145,0.0199,0.0039,0.0089,0.0072,243.0000,242.7000,244.2000,0.0900,0.1500,0.0700,0.9600,0.9800,0.9700,0.8900,0.0700,运行,,01101104
,人防生活区配变交采,2012-09-25 00:00,0.1986,0.0562,0.0905,0.0528,0.0422,0.0115,0.0151,0.0156,240.1000,239.9000,240.2000,0.2400,0.3900,0.2300,0.9800,0.9800,0.9900,0.9600,0.0700,运行,,01225642
,东葛路4号公变交采,2012-09-25 00:00,1.0192,0.3712,0.3072,0.3391,0.1248,0.0580,0.0439,0.0257,225.7000,225.8000,225.7000,1.6800,1.3900,1.5200,0.9900,0.9900,0.9900,1.0000,0.1600,运行,,01225077
,市房改办配变交采,2012-09-25 00:00,0.2397,0.0716,0.0693,0.0988,0.0821,0.0145,0.0358,0.0318,242.2000,242.2000,241.9000,0.3000,0.3200,0.4300,0.9500,0.9800,0.8900,0.9500,0.0500,运行,,01125445
,东方明珠花园配变交采,2012-09-25 00:00,0.3195,0.1068,0.1028,0.1159,0.0712,0.0137,0.0276,0.0309,240.3000,239.7000,240.0000,0.4600,0.4500,0.5000,0.9800,0.9900,0.9700,0.9700,0.0200,运行,,01003901
,琅园房产3号配变交采,2012-09-25 00:00,0.3980,0.1548,0.0993,0.1417,0.0541,0.0197,0.0195,0.0142,238.0000,237.9000,238.5000,0.6600,0.4300,0.6000,0.9900,0.9900,0.9800,1.0000,0.1600,运行,,01700468
,生殖健康中心配变交采,2012-09-25 00:00,0.2483,0.0722,0.0936,0.0864,0.1032,0.0309,0.0340,0.0384,238.0000,238.1000,237.9000,0.3500,0.4200,0.4000,0.9300,0.9100,0.9400,0.9100,0.1000,运行,,01225360
,明臣置业1号配变交采,2012-09-25 00:00,0.0343,0.0086,0.0067,0.0194,0.0235,-0.0192,-0.0098,0.0525,238.3000,239.3000,238.7000,0.0900,0.0500,0.2400,0.8200,0.3900,0.5700,0.3500,0.2200,运行,,0100003210
,腾云阁配变交采,2012-09-25 00:00,0.2502,0.1012,0.0696,0.0787,0.0054,0.0045,0.0000,0.0000,237.7000,238.1000,238.4000,0.4300,0.3000,0.3400,1.0000,1.0000,1.0000,1.0000,0.1100,运行,,0100003883
,上海滩公馆3号配变交采,2012-09-25 00:00,0.1725,0.0707,0.0567,0.0466,0.0161,0.0047,0.0049,0.0073,239.3000,239.4000,238.8000,0.3000,0.2400,0.2000,1.0000,1.0000,1.0000,0.9900,0.0900,运行,,0100003828
,上海滩公馆4号配变交采,2012-09-25 00:00,0.1784,0.0687,0.0435,0.0656,0.0212,0.0110,0.0000,0.0095,239.7000,239.5000,239.4000,0.2900,0.1800,0.2800,0.9900,0.9900,1.0000,0.9900,0.0300,运行,,0100003829
,竹溪路1号公变交采,2012-09-25 00:00,0.4093,0.1080,0.1366,0.1592,0.0677,0.0165,0.0232,0.0269,225.2000,225.3000,224.6000,0.5000,0.6300,0.7300,0.9900,0.9900,0.9900,0.9900,0.2000,运行,,01225411
,区建材局宿舍配变交采,2012-09-25 00:00,0.0370,0.0005,0.0354,0.0008,0.0193,0.0000,0.0187,0.0000,232.7000,231.6000,232.2000,0.0000,0.1700,0.0000,0.8800,1.0000,0.8800,1.0000,0.1700,运行,,01001956
,金龙理想1号配变交采,2012-09-25 00:00,0.2020,0.0734,0.0580,0.0673,0.0000,0.0015,0.0000,-0.0015,226.1000,226.0000,226.2000,0.3300,0.2600,0.3000,1.0000,1.0000,1.0000,1.0000,0.0500,运行,,0100002069
,金龙理想2号配变交采,2012-09-25 00:00,0.1912,0.0524,0.0706,0.0685,0.0073,0.0000,0.0008,0.0057,237.5000,237.0000,237.2000,0.2300,0.3000,0.2900,1.0000,1.0000,1.0000,1.0000,0.0500,运行,,0100002070
,华盛小区配变交采,2012-09-25 00:00,0.3206,0.0864,0.1194,0.1140,0.0564,0.0261,0.0165,0.0139,231.5000,231.6000,231.4000,0.3900,0.5300,0.5000,0.9900,0.9600,0.9900,0.9900,0.1500,运行,,01002936
,金旺角3号配变交采,2012-09-25 00:00,0.2620,0.1195,0.0750,0.0677,0.0406,0.0204,0.0128,0.0072,233.9000,234.3000,234.8000,0.5200,0.3300,0.3000,0.9900,0.9900,0.9900,0.9900,0.2000,运行,,0100002438
,浩天广场配变交采,2012-09-25 00:00,0.1919,0.0411,0.0769,0.0734,0.0296,0.0096,0.0103,0.0096,242.0000,241.7000,241.7000,0.1800,0.3200,0.3100,0.9900,0.9700,0.9900,0.9900,0.1500,运行,,0100003379
,七星路2配变交采,2012-09-25 00:00,0.0565,0.0203,0.0182,0.0179,0.0543,0.0164,0.0199,0.0179,225.7000,225.7000,225.2000,0.1200,0.1200,0.1100,0.7200,0.7800,0.6800,0.7100,0.0100,运行,,01003977
,市经委配变交采,2012-09-25 00:00,0.2599,0.0884,0.0747,0.0927,0.0365,0.0151,0.0138,0.0071,231.4000,231.2000,230.0000,0.4000,0.3300,0.4100,0.9900,0.9900,0.9800,1.0000,0.0600,运行,,
,城市花园3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,01227135
,国贸中心1号配变交采,2012-09-25 00:00,0.3090,0.1250,0.1053,0.0784,0.0503,0.0198,0.0129,0.0147,239.0000,238.6000,238.6000,0.5400,0.4500,0.3400,0.9900,0.9900,0.9900,0.9800,0.1900,运行,,0100003837
,国贸中心2号配变交采,2012-09-25 00:00,0.1764,0.0741,0.0516,0.0536,0.0161,0.0020,0.0080,0.0000,239.1000,238.7000,238.4000,0.3200,0.2300,0.2300,1.0000,1.0000,0.9900,1.0000,0.0800,运行,,0100003839
,国贸中心3号配变交采,2012-09-25 00:00,0.2193,0.0657,0.0732,0.0813,0.0202,0.0053,0.0068,0.0074,239.1000,238.6000,238.2000,0.2800,0.3200,0.3300,1.0000,1.0000,1.0000,1.0000,0.0500,运行,,0100003841
,宁汇富仕园1号配变交采,2012-09-25 00:00,0.1368,0.0378,0.0305,0.0682,0.0198,0.0073,0.0037,0.0083,240.2000,240.4000,240.2000,0.1600,0.1300,0.2900,0.9900,0.9800,0.9900,0.9900,0.1000,运行,,01225657
,英歌坡2号公变交采,2012-09-25 00:00,0.4479,0.1805,0.1442,0.1227,0.0875,0.0456,0.0190,0.0225,249.5000,248.4000,248.1000,0.7600,0.6000,0.5100,0.9800,0.9700,0.9900,0.9800,0.4300,运行,,0101019740
,半岛融园7号公变交采,2012-09-25 00:00,0.2821,0.1112,0.1033,0.0685,-0.0047,-0.0036,-0.0049,0.0027,225.3000,225.5000,224.8000,0.5000,0.4600,0.3100,1.0000,1.0000,1.0000,1.0000,0.3700,故障,,0100003151
,雍华庭公变交流采样,2012-09-25 00:00,3.1072,3.2343,3.6669,2.7596,1.2143,0.4573,0.4824,0.2746,226.2000,225.9000,226.0000,0.9300,1.5800,0.8000,0.0000,0.0000,0.0000,0.0000,0.2800,运行,,2021167
,丽景花园1号公变交流采样,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,237.9000,237.1000,236.4000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,20001241
,东方广场2号公变交流采样,2012-09-25 00:00,0.4344,0.1490,0.1513,0.1341,0.0727,0.0205,0.0343,0.0179,232.2000,231.5000,231.3000,0.6600,0.6900,0.6000,0.0000,0.0000,0.0000,0.0000,0.0100,运行,,20Z2019
,东方广场1号公变交流采样,2012-09-25 00:00,0.4959,0.1635,0.1856,0.1468,0.0655,0.0222,0.0287,0.0146,231.9000,230.6000,231.3000,0.7300,0.8300,0.6500,0.0000,0.0000,0.0000,0.0000,0.0500,运行,,20Z2017
,彩虹家园2号公变交流采样,2012-09-25 00:00,0.4801,0.1533,0.1273,0.1995,0.0586,0.0166,0.0151,0.0269,231.3000,232.1000,231.3000,0.6600,0.5500,0.8800,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,2021146
,彩虹家园3号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,2021151
,彩虹家园4号公变交流采样,2012-09-25 00:00,0.1765,0.0446,0.0623,0.0696,0.0240,0.0116,0.0053,0.0071,236.4000,236.7000,236.7000,0.2000,0.2600,0.3000,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,2021141
,仙葫枫景公变交流采样,2012-09-25 00:00,0.2879,0.1341,0.0899,0.0639,0.0394,0.0193,0.0112,0.0089,237.8000,238.2000,238.0000,0.5700,0.3800,0.2700,0.0000,0.0000,0.0000,0.0000,0.0800,运行,,2005696
,宝城花园小区1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20000171
,丽景花园2号公变交流采样,2012-09-25 00:00,5.9958,1.8705,1.7692,2.3561,-0.0615,0.1950,-0.2565,0.0000,237.8000,238.3000,238.2000,0.1300,0.1300,0.1700,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,20001242
,丽景花园3号公变交流采样,2012-09-25 00:00,0.0794,0.0330,0.0179,0.0285,0.0226,0.0031,0.0031,0.0164,237.1000,237.3000,237.1000,0.1400,0.0700,0.1400,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,20001244
,联发国际村1号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,20002257
,联发国际村2号公变交流采样,2012-09-25 00:00,0.5834,0.2399,0.1965,0.1470,0.0228,0.0135,0.0093,0.0000,228.1000,228.7000,228.7000,1.0600,0.8700,0.6500,0.0000,0.0000,0.0000,0.0000,0.1100,运行,,20Z2069
,联发国际村3号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z2072
,联发国际村4号公变交流采样,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,234.7000,234.9000,234.3000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,20Z2065
,联发国际村5号公变交流采样,2012-09-25 00:00,0.3267,0.1123,0.1229,0.0915,-0.0089,0.0000,-0.0089,0.0000,229.1000,228.6000,228.3000,0.4800,0.5300,0.4000,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,20001852
,润和谷公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2021140
,昌泰3号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z2043
,滨江别墅1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20001502
,滨江别墅2号公变交流采样,2012-09-25 00:00,0.0923,0.0188,0.0540,0.0194,-0.0035,-0.0029,0.0008,-0.0014,233.1000,232.5000,232.6000,0.0900,0.2300,0.0900,1.0000,0.9900,1.0000,1.0000,0.2400,运行,,20001515
,滨江别墅3号公变交流采样,2012-09-25 00:00,0.2741,0.1746,0.0567,0.0428,0.0839,0.0330,0.0238,0.0271,235.9000,235.5000,244.4000,0.7400,0.2600,0.2000,0.0000,0.0000,0.0000,0.0000,0.1800,运行,,2021144
,滨江别墅4号公变交流采样,2012-09-25 00:00,0.0810,0.0094,0.0483,0.0233,0.0028,0.0002,0.0016,0.0010,239.0000,237.2000,241.3000,0.0400,0.2000,0.0900,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,2021158
,海茵一期别墅1号公变交流采样,2012-09-25 00:00,0.0596,0.0310,0.0174,0.0112,-0.0055,0.0000,-0.0035,-0.0020,236.6000,236.8000,236.4000,0.1300,0.0700,0.0500,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,2002456
,海茵一期别墅2号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2002455
,利源商住城1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20000856
,利源商住城2号公变交流采样,2012-09-25 00:00,0.9864,0.2642,0.3839,0.3383,0.1519,0.0352,0.0611,0.0556,237.1000,236.4000,235.9000,1.1400,1.6700,1.4700,0.0000,0.0000,0.0000,0.0000,0.1400,运行,,20000860
,利源商住城3号公变交流采样,2012-09-25 00:00,0.2876,0.1050,0.0683,0.1143,0.0278,0.0096,0.0000,0.0182,237.6000,237.6000,236.5000,0.4500,0.3000,0.5000,0.0000,0.0000,0.0000,0.0000,0.0700,运行,,20000861
,利源商住城4号公变交流采样,2012-09-25 00:00,0.4770,0.1376,0.1693,0.1701,0.0296,0.0096,0.0148,0.0052,237.9000,237.3000,237.1000,0.6100,0.7200,0.7300,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,20000864
,利源商住城5号公变交流采样,2012-09-25 00:00,0.5528,0.2193,0.1451,0.1884,0.0668,0.0293,0.0138,0.0237,235.9000,237.7000,236.4000,0.9500,0.6300,0.8200,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,20000863
,海茵香榭怡园2号公变交流采样,2012-09-25 00:00,0.1914,0.0992,0.0383,0.0539,0.0061,0.0071,-0.0030,0.0020,237.9000,239.4000,238.9000,0.4200,0.1600,0.2300,0.0000,0.0000,0.0000,0.0000,0.0800,运行,,20Z2053
,海茵香榭怡园3号公变交流采样,2012-09-25 00:00,0.1436,0.0514,0.0431,0.0491,0.0034,0.0017,0.0017,0.0000,238.6000,239.3000,238.4000,0.2200,0.1800,0.2100,0.0000,0.0000,0.0000,0.0000,0.0100,运行,,20Z2054
,上水人家1号公变交流采样,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,238.8000,238.4000,238.2000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,20003208
,上水人家2号公变交流采样,2012-09-25 00:00,0.8794,0.3396,0.2776,0.2622,0.1591,0.0542,0.0528,0.0521,237.6000,237.5000,237.6000,1.4500,1.1900,1.1400,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,20Z2984
,荣昌1号公变交流采样,2012-09-25 00:00,0.6916,0.2061,0.2753,0.2102,0.1624,0.0484,0.0641,0.0499,225.6000,225.1000,225.3000,0.9500,1.2500,0.9700,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,2021050
,昌泰2号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,20Z2080
,蓉茉二区2号公变交流采样,2012-09-25 00:00,0.2255,0.0808,0.0751,0.0696,0.0230,0.0048,0.0108,0.0074,228.2000,226.9000,227.6000,0.3500,0.3400,0.3100,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,20003197
,建政路7号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,0100005554
,花陈公变交流采样,2012-09-25 00:00,0.3600,0.0510,0.0700,0.2390,0.0955,0.0105,0.0270,0.0580,234.0000,242.6000,226.2000,0.2200,0.3100,1.1000,0.0000,0.0000,0.0000,0.0000,0.2900,运行,,2002005
,大通公变交流采样,2012-09-25 00:00,0.2144,0.0449,0.0843,0.0852,0.0525,0.0341,0.0000,0.0184,238.8000,240.7000,235.1000,0.2400,0.3500,0.3700,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,2002007
,定禁坡公变交流采样,2012-09-25 00:00,0.8615,0.3320,0.2602,0.2693,0.4667,0.1723,0.1529,0.1415,231.8000,236.8000,241.4000,1.6200,1.2900,1.2800,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,2002166
,福庆旧坡公变交流采样,2012-09-25 00:00,0.0898,0.0038,0.0403,0.0457,0.0440,0.0027,0.0280,0.0133,239.1000,237.9000,236.4000,0.0200,0.2100,0.2000,0.0000,0.0000,0.0000,0.0000,0.0800,运行,,2002588
,牛湾小坡公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2002577
,坛么新坡公变交流采样,2012-09-25 00:00,0.2013,0.0465,0.0722,0.0826,0.0441,0.0218,0.0119,0.0104,237.4000,238.0000,238.3000,0.2300,0.3400,0.3700,0.0000,0.0000,0.0000,0.0000,0.0500,运行,,2002574
,坛么旧坡公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2002575
,坛板大坡公变交流采样,2012-09-25 00:00,0.0836,0.0177,0.0477,0.0182,0.0182,0.0031,0.0064,0.0087,237.7000,238.7000,238.0000,0.0800,0.2000,0.0900,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,2002571
,蓉茉一区2号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2021004
,蓉茉一区4号公变交流采样,2012-09-25 00:00,1.6827,0.6054,0.6963,0.3810,0.2058,0.1601,0.0711,-0.0254,224.0000,225.4000,224.7000,2.8000,3.1300,1.7700,0.0000,0.0000,0.0000,0.0000,0.5900,运行,,2021099
,蓉茉二区5号公变交流采样,2012-09-25 00:00,0.2321,0.0713,0.0860,0.0748,0.0255,0.0099,0.0103,0.0053,224.9000,225.4000,225.3000,0.3200,0.3900,0.3400,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,2021183
,仙湖桥南小区公变交流采样,2012-09-25 00:00,0.5720,0.2103,0.1304,0.2313,0.1575,0.0586,0.0170,0.0819,234.5000,234.6000,233.4000,0.9200,0.5500,1.0400,0.0000,0.0000,0.0000,0.0000,0.1600,运行,,2002472
,大明印刷厂公变交流采样,2012-09-25 00:00,0.3848,0.1141,0.1562,0.1145,0.0289,0.0039,0.0175,0.0075,229.5000,229.8000,229.4000,0.5000,0.7000,0.5100,0.0000,0.0000,0.0000,0.0000,0.0600,运行,,2002930
,矿产小区公变交流采样,2012-09-25 00:00,0.1097,0.0392,0.0410,0.0295,-0.0018,0.0039,-0.0067,0.0010,229.0000,230.8000,229.7000,0.1700,0.1700,0.1300,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,2002931
,银葫小区1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2002728
,农行小区公变交流采样,2012-09-25 00:00,0.2092,0.0686,0.0786,0.0620,-0.0092,-0.0092,0.0072,-0.0072,229.8000,229.5000,229.2000,0.3000,0.3300,0.2600,0.0000,0.0000,0.0000,0.0000,0.0100,运行,,2002934
,计划发展局公变交流采样,2012-09-25 00:00,0.1611,0.0660,0.0509,0.0442,-0.1880,-0.0737,-0.0748,-0.0395,241.4000,241.5000,241.1000,0.4100,0.3800,0.2400,0.0000,0.0000,0.0000,0.0000,0.0700,运行,,2002771
,技术监督局公变交流采样,2012-09-25 00:00,0.1454,0.0549,0.0631,0.0274,-0.0107,-0.0042,0.0020,-0.0085,241.9000,241.1000,242.2000,0.2300,0.2600,0.1200,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,2021114
,那窝公变交流采样,2012-09-25 00:00,1.4425,0.5843,0.3223,0.5359,0.2460,0.0955,0.0613,0.0892,234.8000,236.6000,235.0000,2.5400,1.4000,2.3000,0.0000,0.0000,0.0000,0.0000,0.3400,运行,,2002586
,那律公变交流采样,2012-09-25 00:00,0.0378,0.0048,0.0048,0.0282,0.0009,-0.0005,-0.0009,0.0023,234.1000,236.4000,234.8000,0.0200,0.0200,0.1200,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,2002687
,蓉茉一区5号公变交流采样,2012-09-25 00:00,0.3316,0.1961,0.0659,0.0696,-0.0511,0.0000,-0.0197,-0.0314,234.6000,240.9000,237.2000,0.8600,0.2900,0.3400,0.0000,0.0000,0.0000,0.0000,0.1700,运行,,2021185
,广播电视局公变交流采样,2012-09-25 00:00,0.5890,0.2289,0.2698,0.0903,0.0398,0.0362,0.0307,-0.0271,225.0000,225.7000,225.7000,1.0200,1.2100,0.4200,0.0000,0.0000,0.0000,0.0000,0.2800,运行,,2021066
,土地局小区公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2021018
,荣昌2号公变交流采样,2012-09-25 00:00,0.9765,0.3284,0.2767,0.3714,0.1427,0.0181,0.0727,0.0519,236.7000,237.9000,236.0000,1.3900,1.2000,1.6000,0.0000,0.0000,0.0000,0.0000,0.1800,运行,,2021058
,金腾生态园公变交流采样,2012-09-25 00:00,0.4113,0.1345,0.0744,0.2024,0.0296,-0.0041,0.0092,0.0245,228.8000,233.7000,229.7000,0.6100,0.3300,0.8900,0.0000,0.0000,0.0000,0.0000,0.1900,运行,,20Z2998
,审计局公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z2995
,金葫2号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2021074
,金葫4号公变交流采样,2012-09-25 00:00,0.9031,0.4119,0.3630,0.1282,0.0870,0.0302,0.0420,0.0148,215.4000,243.2000,239.4000,1.9400,1.5400,0.5600,0.0000,0.0000,0.0000,0.0000,0.3900,运行,,2021075
,那窝新坡公变交流采样,2012-09-25 00:00,0.2991,0.0937,0.1139,0.0915,0.0428,0.0131,0.0076,0.0221,241.2000,240.4000,240.7000,0.3900,0.4700,0.3900,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,2021077
,应高公变交流采样,2012-09-25 00:00,0.7747,0.2975,0.2846,0.1926,0.2642,0.1139,0.0718,0.0785,238.2000,238.6000,239.1000,1.3600,1.2300,0.8900,0.0000,0.0000,0.0000,0.0000,0.1800,运行,,2002591
,牛湾大坡1号公变交流采样,2012-09-25 00:00,0.1087,0.0379,0.0191,0.0517,-0.0334,-0.0097,-0.0136,-0.0101,229.1000,228.9000,228.6000,0.1700,0.1000,0.2400,0.9500,0.9700,0.8100,0.9800,0.1600,运行,,2002576
,花里公变交流采样,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,2002573
,坛板新坡公变交流采样,2012-09-25 00:00,0.1427,0.0466,0.0440,0.0521,-0.8331,-0.2819,-0.2541,-0.2971,237.3000,230.9000,235.5000,1.2000,1.1100,1.2800,0.0000,0.0000,0.0000,0.0000,0.0500,运行,,2002572
,南宁外事办公变交流采样,2012-09-25 00:00,0.2384,0.0626,0.0891,0.0867,0.0822,0.0196,0.0258,0.0368,236.7000,227.6000,236.1000,0.2800,0.4100,0.3900,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,2021106
,马山公变交流采样,2012-09-25 00:00,0.1844,0.1211,0.0138,0.0495,-0.0026,0.0142,-0.0200,0.0032,239.4000,239.5000,239.5000,0.5200,0.1500,0.2300,0.0000,0.0000,0.0000,0.0000,0.1600,运行,,2002002
,子垒公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2002167
,曾屋二队公变交流采样,2012-09-25 00:00,0.7118,0.3294,0.2214,0.1610,-0.0944,-0.0257,-0.0326,-0.0361,225.7000,226.3000,226.3000,1.4800,1.0000,0.7600,0.0000,0.0000,0.0000,0.0000,0.2100,运行,,20Z2973
,蓉茉二区3号公变交流采样,2012-09-25 00:00,0.7283,0.2620,0.2205,0.2458,0.0259,0.0000,0.0155,0.0104,236.8000,236.6000,236.1000,1.1000,0.9300,1.0500,0.0000,0.0000,0.0000,0.0000,0.0500,运行,,2021094
,新村2号公变交流采样,2012-09-25 00:00,0.2521,0.1278,0.0836,0.0407,0.0137,0.0000,0.0039,0.0098,234.7000,236.5000,235.6000,0.5400,0.3500,0.1800,0.0000,0.0000,0.0000,0.0000,0.1000,运行,,20000787
,新村公变交流采样,2012-09-25 00:00,0.4029,0.1218,0.0899,0.1912,-0.0561,-0.0218,-0.0343,0.0000,235.9000,236.5000,235.8000,0.5200,0.4100,0.8100,0.0000,0.0000,0.0000,0.0000,0.1300,运行,,2021046
,天池山1号公变交流采样,2012-09-25 00:00,0.0609,0.0263,0.0222,0.0124,-0.0142,-0.0087,-0.0024,-0.0031,233.2000,233.2000,233.0000,0.1100,0.0900,0.0500,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,2021067
,天池山2号公变交流采样,2012-09-25 00:00,0.1046,0.0313,0.0425,0.0308,0.0303,0.0094,0.0085,0.0124,237.2000,239.3000,238.0000,0.1300,0.1800,0.1400,0.0000,0.0000,0.0000,0.0000,0.0100,运行,,20Z2010
,天池山3号公变交流采样,2012-09-25 00:00,0.6769,3.9946,2.2520,0.9839,4.2644,1.1998,1.8713,1.1933,238.0000,237.5000,236.4000,0.3000,0.4200,0.5000,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,20Z2032
,天池山5号公变交流采样,2012-09-25 00:00,0.0419,0.0137,0.0111,0.0171,-0.0072,-0.0026,-0.0046,0.0000,227.2000,227.1000,226.3000,0.0600,0.0500,0.0700,0.0000,0.0000,0.0000,0.0000,0.0100,运行,,20001258
,天池山4号公变交流采样,2012-09-25 00:00,0.2171,0.0547,0.0851,0.0773,-0.0028,0.0000,0.0000,-0.0028,233.3000,232.8000,231.0000,0.2300,0.3600,0.3400,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,2021182
,天池山7号公变交流采样,2012-09-25 00:00,0.2712,0.0947,0.0953,0.0812,0.0105,0.0000,0.0045,0.0060,238.7000,238.1000,236.8000,0.4100,0.4100,0.3500,0.0000,0.0000,0.0000,0.0000,0.0100,运行,,20003125
,天池山9号公变交流采样,2012-09-25 00:00,0.2326,0.0682,0.1032,0.0612,-0.0029,0.0028,-0.0057,0.0000,238.3000,237.2000,237.4000,0.2900,0.4400,0.2600,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,20002801
,天池山6号公变交流采样,2012-09-25 00:00,0.1537,0.0449,0.0657,0.0431,0.0156,0.0049,0.0081,0.0026,238.3000,237.9000,237.4000,0.1900,0.2800,0.2000,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,20001256
,邕宁公安小区1号公变交流采样,2012-09-25 00:00,0.2538,0.1100,0.0720,0.0718,0.0133,0.0035,0.0037,0.0061,227.5000,230.2000,228.3000,0.4900,0.3100,0.3100,0.0000,0.0000,0.0000,0.0000,0.0600,运行,,20Z0979
,邕宁公安小区2号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z0005
,邕宁公安小区3号公变交流采样,2012-09-25 00:00,0.2970,0.1400,0.1031,0.0539,0.0075,0.0075,0.0000,0.0000,227.8000,228.4000,228.2000,0.6200,0.4500,0.2400,0.0000,0.0000,0.0000,0.0000,0.1100,运行,,20Z0006
,邮政局公变交流采样,2012-09-25 00:00,0.2644,0.1142,0.0924,0.0578,0.0265,0.0074,0.0138,0.0053,240.2000,240.0000,240.2000,0.4600,0.3900,0.2400,0.0000,0.0000,0.0000,0.0000,0.0500,运行,,2002933
,英歌公变交流采样,2012-09-25 00:00,1.1460,0.2065,0.5843,0.3552,0.2611,0.0770,0.0641,0.1200,245.9000,236.8000,232.0000,0.9300,2.5400,1.6700,0.0000,0.0000,0.0000,0.0000,0.4000,运行,,2021078
,技发公变交流采样,2012-09-25 00:00,0.3104,0.0000,0.1319,0.1785,-0.0032,0.0000,-0.0207,0.0175,235.8000,237.0000,235.2000,0.0000,0.5700,0.7600,0.0000,0.0000,0.0000,0.0000,0.1800,运行,,2021071
,天池山8号公变交流采样,2012-09-25 00:00,3.3627,1.1061,1.0171,1.2395,0.0263,-0.0714,0.0000,0.0977,237.7000,237.6000,237.3000,0.0700,0.0600,0.0800,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,
,古城路4号公变交流采样,2012-09-25 00:00,0.3633,0.1044,0.1211,0.1377,0.0679,0.0238,0.0226,0.0215,232.4000,232.1000,231.9000,0.4600,0.5300,0.6000,0.9800,0.9800,0.9800,0.9900,0.1200,运行,,0101012004
,龙胤凤凰城1号公变交流采样,2012-09-25 00:00,0.3509,0.1366,0.1201,0.0942,0.0147,0.0059,0.0045,0.0043,235.4000,236.5000,236.4000,0.5800,0.5100,0.4000,0.0000,0.0000,0.0000,0.0000,0.0500,运行,,20Z030
,龙胤凤凰城2号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,20000056
,龙胤凤凰城4号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20000049
,彩虹家园1号公变交流采样,2012-09-25 00:00,0.1589,0.0472,0.0427,0.0690,0.0079,0.0019,0.0023,0.0037,237.8000,237.5000,237.3000,0.2000,0.1800,0.3000,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,2021143
,莫村六队公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2002327
,银葫小区2号公变交流采样,2012-09-25 00:00,0.3407,0.1517,0.1047,0.0843,-0.0655,-0.0177,-0.0256,-0.0222,227.4000,228.3000,227.7000,0.6600,0.4700,0.3900,0.0000,0.0000,0.0000,0.0000,0.0900,运行,,0101015254
,邕宁公务员小区1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z0099
,邕宁公务员小区2号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z0100
,崇左国税局公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2021081
,邕宁国土局公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,2021155
,龙湾华府1号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,20Z2016
,交流采样,2012-09-25 00:00,0.1243,0.0298,0.0630,0.0315,0.0017,0.0017,0.0000,0.0000,235.9000,235.8000,238.2000,0.1200,0.2700,0.1300,0.0000,0.0000,0.0000,0.0000,0.0400,运行,,0101015333
,交流采样,2012-09-25 00:00,0.0696,0.0229,0.0227,0.0240,-0.0166,-0.0065,-0.0052,-0.0049,239.4000,240.1000,239.6000,0.1000,0.1000,0.1100,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,2003082
,龙晟小区公变交流采样,2012-09-25 00:00,0.0956,0.0380,0.0368,0.0208,0.0056,0.0059,-0.0015,0.0012,239.7000,239.6000,239.3000,0.1600,0.1500,0.0800,0.0000,0.0000,0.0000,0.0000,0.0300,运行,,20Z2041
,仙葫美食城公变交流采样,2012-09-25 00:00,0.7054,0.1996,0.2118,0.2940,0.4528,0.1457,0.0904,0.2167,226.5000,227.0000,225.3000,1.0900,0.9600,1.6300,0.0000,0.0000,0.0000,0.0000,0.1600,运行,,2021073
,海茵水榭怡园1号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,003459
,海茵水榭怡园2号公变交流采样,2012-09-25 00:00,0.1231,0.0517,0.0451,0.0263,0.0220,0.0076,0.0123,0.0021,238.8000,238.3000,238.7000,0.2200,0.1900,0.1100,0.0000,0.0000,0.0000,0.0000,0.0200,运行,,010559003
,海茵亚美利加1号公变交流采样,,,,,,,,,,,,,,,,,,,,,测试,,003489
,海茵亚美利加2号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z2081
,海茵香榭怡园1号公变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,20Z2051
,凌铁村3号公变交流采样,2012-09-25 00:00,0.3790,0.0966,0.1476,0.1348,-0.0589,-0.0221,-0.0171,-0.0197,232.0000,232.2000,231.1000,0.4400,0.6600,0.6100,0.9900,0.9700,0.9900,0.9900,0.0700,运行,,0100005307
,长岗三组4号公变交采,2012-09-25 00:00,0.9323,0.3139,0.3479,0.2705,0.0421,0.0169,0.0168,0.0084,226.6000,227.4000,226.9000,1.4100,1.5600,1.2200,1.0000,1.0000,1.0000,1.0000,0.8300,运行,,012448339
,长岗1、2组5号公变交采,2012-09-25 00:00,0.7684,0.2092,0.2530,0.3062,-0.0080,-0.0071,-0.0236,0.0227,231.9000,231.7000,230.7000,0.9200,1.1200,1.3500,1.0000,1.0000,1.0000,1.0000,0.6600,运行,,0101018718
,安湖路1号公变交采,2012-09-25 00:00,0.6315,0.2098,0.2158,0.2058,-0.0951,-0.0298,-0.0390,-0.0261,243.4000,243.5000,243.8000,0.8700,0.9000,0.8500,0.9900,0.9900,0.9800,0.9900,0.0600,运行,,
,利海国际1号配变交采,2012-09-25 00:00,0.0029,0.0011,0.0000,0.0017,-0.0006,-0.0001,0.0000,-0.0004,228.5000,228.1000,227.9000,0.0100,0.0000,0.0100,0.9800,1.0000,1.0000,1.0000,0.0100,运行,,0100004639
,新竹路6号公变交采,2012-09-25 00:00,0.4181,0.1379,0.1795,0.1007,-0.0186,-0.0009,-0.0077,-0.0100,231.3000,231.5000,231.4000,0.6200,0.7900,0.4400,1.0000,1.0000,1.0000,1.0000,0.4100,运行,,012456019
,利海国际2号配变交采,2012-09-25 00:00,0.1644,0.1177,0.0451,0.0015,0.0056,0.0034,0.0021,0.0000,228.3000,228.0000,227.8000,0.5100,0.2000,0.0100,1.0000,1.0000,1.0000,1.0000,0.4400,运行,,0100004640
,利海国际3号配变交采,2012-09-25 00:00,0.0134,0.0058,0.0040,0.0035,0.0003,0.0003,0.0003,-0.0003,228.1000,228.0000,227.7000,0.0300,0.0200,0.0100,1.0000,1.0000,1.0000,1.0000,0.0100,运行,,0100004641
,利海国际4号配变交采,2012-09-25 00:00,0.0921,0.0885,0.0000,0.0034,-0.0004,-0.0003,0.0000,-0.0001,228.2000,227.8000,227.7000,0.3900,0.0000,0.0200,1.0000,1.0000,1.0000,1.0000,0.3800,运行,,0100004642
,西湖新天地1号配变交采,2012-09-25 00:00,0.2776,0.1136,0.0785,0.0854,0.0210,0.0129,0.0024,0.0056,238.4000,238.0000,237.9000,0.4800,0.3300,0.3600,1.0000,0.9900,1.0000,1.0000,0.3000,运行,,
,津头二组2号公变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,长岗1、2组3号公变交采,2012-09-25 00:00,1.0069,0.3338,0.4158,0.2573,-0.0433,-0.0129,0.0000,-0.0304,233.6000,232.2000,233.7000,1.4800,1.8400,1.1300,1.0000,1.0000,1.0000,0.9900,0.2000,运行,,
,长岗1、2组4号公变交采,2012-09-25 00:00,-0.1499,0.1838,-0.5115,0.1777,0.0603,-0.3002,-0.0282,0.3889,230.1000,230.7000,231.2000,1.5900,2.2600,1.8800,0.9300,-0.5200,-1.0000,0.4100,1.1900,运行,,
,长岗1、3组2号公变交采,2012-09-25 00:00,1.1997,0.3799,0.4158,0.4040,0.0422,0.0000,0.0174,0.0248,232.8000,231.9000,232.9000,1.6300,1.8100,1.7300,1.0000,1.0000,1.0000,1.0000,0.0300,运行,,
,长岗二组3号公变交采,2012-09-25 00:00,0.5940,0.2455,0.2005,0.1480,-0.0112,0.0000,-0.0112,0.0000,232.9000,233.2000,233.5000,1.0300,0.8600,0.6200,1.0000,1.0000,1.0000,1.0000,0.1300,运行,,
,墙体材料办2号配变交采,2012-09-25 00:00,0.0893,0.0331,0.0484,0.0077,-0.0082,-0.0038,-0.0020,-0.0023,232.0000,231.5000,232.3000,0.1500,0.2100,0.0400,1.0000,1.0000,1.0000,1.0000,0.2400,运行,,
,津头街3号公变交采,2012-09-25 00:00,1.1617,0.2868,0.4450,0.4299,-0.5680,-0.2044,-0.1908,-0.1728,238.7000,238.1000,237.9000,1.4700,2.0400,1.9700,0.9000,0.8100,0.9200,0.9300,0.1900,运行,,
,长岗三组5号公变交流采样,2012-09-25 00:00,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,运行,,
,长岗三组3号公变交流采样,2012-09-25 00:00,-0.0475,0.2735,-0.5270,0.2059,-0.0532,-0.4316,-0.0571,0.4354,227.4000,227.3000,227.7000,2.2600,2.3700,2.1400,-0.6700,-0.5400,-0.9900,0.4300,1.0500,运行,,
,盛天国际1号配变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,
,盛天国际3号配变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,
,盛天国际4号配变交流采样,,,,,,,,,,,,,,,,,,,,,运行,,
,区政府发展研究中心2号配变交采,2012-09-25 00:00,0.0640,0.0391,0.0159,0.0089,-0.0034,-0.0005,-0.0007,-0.0020,226.8000,226.2000,226.3000,0.1700,0.0700,0.0400,1.0000,1.0000,1.0000,1.0000,0.2000,运行,,
,紫金苑1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,紫金苑1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,区政府发展研究中心1号配变交采,2012-09-25 00:00,0.0766,0.0388,0.0155,0.0222,-0.0083,-0.0043,-0.0011,-0.0028,226.8000,226.3000,225.8000,0.1700,0.0700,0.1000,0.9900,1.0000,1.0000,1.0000,0.1600,运行,,
,羿园小区2号配变交采,2012-09-25 00:00,0.0671,0.0340,0.0224,0.0106,0.0004,-0.0022,0.0021,0.0006,231.8000,231.8000,231.6000,0.1500,0.1000,0.0500,1.0000,1.0000,1.0000,1.0000,0.1600,运行,,
,羿园小区1号配变交采,2012-09-25 00:00,0.1037,0.0392,0.0350,0.0294,0.0004,-0.0006,0.0004,0.0006,237.8000,237.9000,237.6000,0.1700,0.1500,0.1300,1.0000,1.0000,1.0000,1.0000,0.1200,运行,,
,紫金苑2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,柳沙丽园3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,柳沙丽园4号配变交采,2012-09-25 00:00,0.0203,0.0068,0.0065,0.0068,-0.0031,-0.0007,-0.0010,-0.0014,228.8000,228.5000,228.8000,0.0300,0.0300,0.0300,0.9900,1.0000,1.0000,1.0000,0.0200,运行,,
,柳沙丽园5号配变交采,2012-09-25 00:00,0.1859,0.0670,0.0527,0.0662,-0.0118,-0.0039,-0.0042,-0.0035,237.8000,237.8000,237.2000,0.2900,0.2300,0.2900,1.0000,1.0000,1.0000,1.0000,0.2300,运行,,
,紫金苑3配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,紫金苑3配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,和美家园1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,和美家园2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,紫金苑4号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居1号配变交采,2012-09-25 00:00,0.0777,0.0183,0.0467,0.0125,0.0022,-0.0022,0.0014,0.0014,226.6000,226.7000,226.1000,0.0800,0.2100,0.0600,1.0000,1.0000,1.0000,1.0000,0.2300,运行,,
,盘龙居2号配变交采,2012-09-25 00:00,0.0814,0.0239,0.0287,0.0287,0.0022,-0.0023,-0.0016,0.0062,226.3000,226.7000,226.0000,0.1100,0.1300,0.1200,1.0000,1.0000,1.0000,0.9800,0.1200,运行,,
,盘龙居3号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居4号配变交采,2012-09-25 00:00,0.0697,0.0226,0.0308,0.0162,-0.0084,0.0012,-0.0022,-0.0048,226.4000,226.9000,226.4000,0.1000,0.1400,0.0800,0.9900,1.0000,1.0000,0.9600,0.1000,运行,,
,盘龙居5号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居6号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居8号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居12号配变交采,2012-09-25 00:00,0.0522,0.0161,0.0120,0.0240,-0.0048,-0.0034,-0.0009,-0.0004,231.6000,232.4000,231.8000,0.0700,0.0500,0.1100,1.0000,0.9800,1.0000,1.0000,0.1000,运行,,
,盘龙居16号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居7号配变交采,2012-09-25 00:00,0.0131,0.0047,0.0039,0.0044,-0.0043,-0.0011,-0.0015,-0.0016,232.0000,232.2000,231.8000,0.0200,0.0200,0.0200,0.9500,1.0000,1.0000,1.0000,0.0400,运行,,
,盘龙居17号配变交采,2012-09-25 00:00,0.0202,0.0040,0.0096,0.0065,-0.0040,-0.0014,-0.0017,-0.0008,231.7000,232.2000,231.9000,0.0200,0.0400,0.0300,0.9800,1.0000,1.0000,1.0000,0.0500,运行,,
,盘龙居10号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居13号配变交采,2012-09-25 00:00,0.0407,0.0102,0.0049,0.0255,-0.0029,-0.0013,0.0009,-0.0025,231.4000,232.0000,231.9000,0.0500,0.0200,0.1100,1.0000,1.0000,0.9700,1.0000,0.1200,运行,,
,盘龙居11号配变交采,2012-09-25 00:00,0.0510,0.0058,0.0107,0.0344,-0.0019,-0.0008,0.0007,-0.0018,231.7000,232.3000,232.0000,0.0200,0.0500,0.1500,1.0000,1.0000,1.0000,1.0000,0.1600,运行,,
,盘龙居15号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居9号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盘龙居14号配变交采,2012-09-25 00:00,0.1613,0.0573,0.0517,0.0522,0.0138,0.0009,0.0115,-0.0014,225.3000,225.3000,225.6000,0.2600,0.2400,0.2400,1.0000,1.0000,0.9800,1.0000,0.2200,运行,,
,盛天茗城7号配变交采,2012-09-25 00:00,0.1688,0.0466,0.0756,0.0465,0.0032,0.0002,-0.0009,0.0044,228.2000,227.8000,228.5000,0.2100,0.3300,0.2100,1.0000,1.0000,1.0000,1.0000,0.1900,运行,,
,盛天茗城4号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盛天茗城1号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盛天茗城6号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盛天茗城3号配变交采,2012-09-25 00:00,0.1433,0.0571,0.0586,0.0275,-0.0001,-0.0012,-0.0014,0.0000,228.0000,228.0000,228.2000,0.2500,0.2500,0.1300,1.0000,1.0000,1.0000,1.0000,0.2200,运行,,
,盛天茗城5号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
,盛天茗城8号配变交采,2012-09-25 00:00,0.1661,0.0609,0.0507,0.0544,-0.0232,-0.0077,-0.0106,-0.0048,227.8000,227.9000,227.9000,0.2700,0.2300,0.2400,0.9900,0.9900,0.9800,1.0000,0.1500,运行,,
,盛天茗城2号配变交采,,,,,,,,,,,,,,,,,,,,,运行,,
1 用户编号 测量点名称 时间 P Q U I COS 零序电流(A) 运行状态 变电站名称 台区编号
2 Pz(kW) Pa(kW) Pb(kW) Pc(kW) Qz(kVar) Qa(kVar) Qb(kVar) Qc(kVar) Ua(V) Ub(V) Uc(V) Ia(A) Ib(A) Ic(A) Cos Cosa Cosb Cosc
3 天桃路1号公变交流采样 2012-09-25 00:00 1.0996 0.3718 0.4025 0.3252 0.1600 0.0792 0.0601 0.0205 233.1000 233.8000 234.3000 1.6300 1.7400 1.3900 0.9900 0.9800 0.9900 1.0000 0.4600 运行 01200081
4 星湖路2号公变交流采样 2012-09-25 00:00 0.3079 0.1618 0.0655 0.0805 -0.5023 -0.1121 -0.2017 -0.1885 231.4000 243.5000 238.1000 0.8500 0.8700 0.8600 -0.5200 -0.8200 -0.3100 -0.3900 0.5000 故障 01225337
5 星湖北二里1号公变交流采样 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 242.1000 241.9000 241.8000 0.0000 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 0.0000 运行 01225333
6 星湖路3号公变交流采样 2012-09-25 00:00 0.5174 0.1804 0.1906 0.1463 0.0393 0.0243 0.0084 0.0065 224.5000 221.7000 225.0000 0.8100 0.8600 0.6500 1.0000 0.9900 1.0000 1.0000 0.2700 运行 01225338
7 园湖路1号公变交流采样 2012-09-25 00:00 0.0648 0.0183 0.0000 0.0465 0.0195 0.0071 0.0000 0.0124 243.2000 241.3000 239.5000 0.0800 0.0000 0.2000 0.9600 0.9300 1.0000 0.9700 0.1600 运行 01200240
8 星湖北二里2号公变交流采样 2012-09-25 00:00 0.5633 0.2388 0.2261 0.0983 0.0398 -0.0532 0.0702 0.0228 235.1000 241.4000 245.6000 1.0400 0.9800 0.4100 1.0000 -0.9800 0.9500 0.9700 0.1800 运行 01225334
9 星湖北一里2号公变交流采样 2012-09-25 00:00 0.0366 0.0074 0.0195 0.0096 -0.0066 -0.0011 -0.0026 -0.0028 244.3000 243.5000 245.3000 0.0300 0.0800 0.0400 -0.9800 -0.9900 -0.9900 -0.9600 0.0500 运行 01225336
10 天桃路3号公变交流采样 2012-09-25 00:00 0.4350 0.1308 0.1147 0.1894 0.0119 0.0101 0.0102 -0.0084 234.0000 234.7000 233.8000 0.5600 0.4900 0.8100 1.0000 1.0000 1.0000 1.0000 0.2800 运行 01201902
11 建政南路1号公变交流采样 2012-09-25 00:00 1.4087 0.4162 0.4082 0.5842 0.1193 0.0185 0.0365 0.0642 242.1000 242.4000 240.8000 1.7200 1.6900 2.4400 1.0000 1.0000 1.0000 0.9900 0.8300 运行 01200148
12 新民路4号公变交流采样 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 236.2000 236.2000 234.9000 0.0000 0.0000 0.0000 1.0000 1.0000 1.0000 1.0000 0.0000 运行 01225541
13 东葛路3号公变交流采样 2012-09-25 00:00 0.2381 0.0915 0.0780 0.0685 0.0069 0.0130 -0.0060 0.0000 242.6000 243.9000 244.0000 0.3800 0.3200 0.2800 1.0000 0.9900 -1.0000 1.0000 0.1300 运行 01225650
14 凌铁村2号公变交流采样 2012-09-25 00:00 1.4758 0.5316 0.4123 0.5318 0.0411 0.0335 -0.0260 0.0336 237.7000 238.7000 237.8000 2.2400 1.7300 2.2400 1.0000 1.0000 -1.0000 1.0000 0.5500 运行 01200074
15 共和路5号公变交流采样 2012-09-25 00:00 0.7514 0.2150 0.3427 0.1936 0.0601 0.0135 0.0343 0.0122 224.2000 222.1000 233.5000 0.9600 1.5500 0.8300 1.0000 1.0000 1.0000 1.0000 0.6400 运行 01225314
16 新民路5号公变交流采样 2012-09-25 00:00 0.1850 0.0417 0.0946 0.0486 -0.0080 -0.0088 0.0084 -0.0076 235.6000 231.2000 233.5000 0.1800 0.4100 0.2100 -1.0000 -0.9800 1.0000 -0.9900 0.2300 运行 01225542
17 建政路3号公变交流采样 2012-09-25 00:00 0.5668 0.1875 0.2042 0.1749 -0.0111 -0.0118 -0.0129 0.0135 243.8000 243.4000 243.4000 0.7700 0.8400 0.7200 -1.0000 -1.0000 -1.0000 1.0000 0.1000 运行 01200162
18 鲤湾路2号公变交流采样 2012-09-25 00:00 0.2654 0.0584 0.1181 0.0889 0.0507 0.0133 0.0184 0.0189 238.9000 238.6000 238.6000 0.2500 0.5000 0.3800 0.9800 0.9800 0.9900 0.9800 0.1900 运行 01201366
19 民族路1号公变交流采样 2012-09-25 00:00 0.4761 0.1551 0.1470 0.1739 0.1048 0.0338 0.0461 0.0247 244.0000 244.2000 243.7000 0.6500 0.6300 0.7200 0.9800 0.9800 0.9500 0.9900 0.1400 运行 01200088
20 东葛路6号公变交流采样 2012-09-25 00:00 0.7692 0.2728 0.2086 0.2877 0.0637 0.0244 0.0265 0.0128 228.1000 228.4000 228.4000 1.2000 0.9200 1.2600 1.0000 1.0000 0.9900 1.0000 0.2700 故障 01225079
21 津头街2号公变交流采样 2012-09-25 00:00 1.3298 0.4086 0.4893 0.4318 0.2066 0.0181 0.0764 0.1119 239.1000 232.4000 234.7000 1.7100 2.1300 1.9000 0.9900 1.0000 0.9900 0.9700 0.1600 运行 01225312
22 南国街4号公变交流采样 运行 01225524
23 地质调查所1号公变交流采样 2012-09-25 00:00 0.1520 0.0302 0.0549 0.0667 0.0152 0.0075 0.0024 0.0051 238.1000 238.3000 238.4000 0.1300 0.2300 0.2800 1.0000 0.9700 1.0000 1.0000 0.1400 运行 00011291
24 东葛路7号公变交流采样 2012-09-25 00:00 0.2312 0.0809 0.0797 0.0705 0.0968 0.0126 0.0397 0.0444 240.2000 240.1000 237.7000 0.3400 0.8500 运行 01225080
25 长岗路5号公变交流采样 2012-09-25 00:00 0.7248 0.2768 0.3143 0.1336 0.1956 0.0562 0.0604 0.0789 222.3000 220.6000 133.7000 1.2700 1.4500 1.1600 0.9600 0.9800 0.9800 0.8600 0.3600 运行 01225057
26 建政路1号公变交流采样 2012-09-25 00:00 0.5581 0.2693 0.1094 0.1793 0.0792 0.0320 0.0259 0.0213 244.1000 244.0000 243.8000 1.1100 0.4600 0.7400 0.9900 0.9900 0.9700 0.9900 0.5400 运行 01200161
27 鲤湾路1号公变交流采样 2012-09-25 00:00 0.3258 0.1150 0.1049 0.1058 -0.1377 -0.0514 -0.9100 运行 01225059
28 民族大道1号公变交流采样 2012-09-25 00:00 0.2523 0.0911 0.1014 0.0598 0.0556 0.0115 0.0171 0.0269 241.1000 244.3000 242.2000 0.3800 0.4200 0.2700 0.9800 0.9900 0.9900 0.9100 0.1300 运行 01200611
29 古城路3号公变交流采样 2012-09-25 00:00 0.2739 0.0910 0.1081 0.0746 0.0066 0.0081 -0.0048 0.0033 239.9000 240.1000 240.4000 0.3800 0.4500 0.3100 1.0000 1.0000 -1.0000 1.0000 0.1500 运行 01225319
30 竹溪路3号公变交流采样 运行 01002696
31 古城路1号公变交流采样 2012-09-25 00:00 0.3706 0.1446 0.1163 0.1097 0.0963 0.0261 0.0325 0.0375 236.7000 236.4000 236.2000 0.6200 0.5100 0.4900 0.9700 0.9800 0.9600 0.9500 0.1500 运行 01200180
32 星湖北一里1号公变交流采样 运行 01225335
33 植物路1号公变交流采样 测试 01227693
34 共和路4号公变交流采样 运行 01225313
35 津头街1号公变交流采样 运行 01200083
36 南国街1号公变交流采样 2012-09-25 00:00 0.6718 0.3195 0.0000 0.3523 0.1631 0.0795 0.0000 0.0836 237.6000 238.4000 237.5000 1.3900 0.0000 1.5300 0.9700 0.9700 0.0000 0.9700 0.4800 运行 01200273
37 青山路1号公变交流采样 2012-09-25 00:00 0.0190 0.0000 0.0173 0.0017 -0.0029 0.0000 0.0023 -0.0052 230.1000 230.2000 230.4000 0.0000 0.0700 0.0200 0.9900 0.0000 0.9900 0.3200 0.0300 运行 01200097
38 桃源路1号公变交流采样 2012-09-25 00:00 0.9675 0.2538 0.4038 0.3099 0.2451 0.0677 0.1066 0.0709 234.3000 233.8000 234.1000 1.1300 1.7900 1.3700 0.9700 0.9700 0.9700 0.9800 0.6300 运行 01200075
39 桃源路2号公变交流采样 2012-09-25 00:00 0.4855 0.1963 0.1640 0.1252 0.0922 0.0366 0.0317 0.0239 223.0000 219.5000 222.8000 0.9100 0.7700 0.5800 0.9800 0.9800 0.9800 0.9800 0.2800 运行 01200091
40 桃源路3号公变交流采样 2012-09-25 00:00 0.1109 0.0412 0.0254 0.0443 0.0318 0.0176 0.0084 0.0058 226.6000 226.4000 226.4000 0.2000 0.1200 0.2000 0.9600 0.9200 0.9500 0.9900 0.0300 运行 01200099
41 桃源路4号公变交流采样 2012-09-25 00:00 0.2823 0.0608 0.1245 0.0969 0.0408 0.0161 0.0130 0.0115 225.0000 224.7000 224.6000 0.2900 0.5600 0.4500 0.9900 0.9700 1.0000 0.9900 0.2600 运行 01200080
42 园湖路4号公变交流采样 2012-09-25 00:00 0.0962 0.0464 0.0295 0.0202 0.0378 0.0055 0.0263 0.0059 232.9000 231.3000 231.6000 0.2000 0.9600 运行 01200164
43 新民路3号公变交流采样 运行 01200166
44 建政路4号公变交流采样 2012-09-25 00:00 0.8211 0.2364 0.2844 0.3042 0.1572 0.0460 0.0618 0.0442 224.1000 222.4000 222.6000 1.0800 1.3200 1.3900 0.9800 0.9800 0.9800 0.9900 0.3600 运行 01200163
45 建政路5号公变交流采样 2012-09-25 00:00 0.3075 0.1574 0.0752 0.0750 0.0359 0.0124 0.0071 0.0157 224.5000 223.5000 223.2000 0.7200 0.3500 0.3500 0.9900 1.0000 1.0000 0.9800 0.3500 运行 01225052
46 民主路4号公变交流采样 2012-09-25 00:00 0.5073 0.1903 0.1705 0.1462 0.0000 0.0034 0.0023 -0.0068 238.8000 239.2000 239.0000 0.8100 0.7200 0.6200 1.0000 1.0000 1.0000 1.0000 0.1500 运行 01200165
47 思贤路3号公变交流采样 2012-09-25 00:00 1.0175 0.3112 0.4660 0.2402 0.2701 0.0978 0.1162 0.0560 246.7000 232.7000 240.3000 1.3200 2.0900 1.0400 0.9700 0.9500 0.9700 0.9700 0.4300 运行 01200243
48 新竹路2号公变交流采样 2012-09-25 00:00 0.7827 0.3038 0.2878 0.1910 0.2340 0.1191 0.0782 0.0367 239.8000 238.4000 246.0000 1.3600 1.2500 0.7900 0.9600 0.9300 0.9600 0.9800 0.6300 运行 01200179
49 思贤路4号公变交流采样 2012-09-25 00:00 0.2509 0.0956 0.0589 0.0963 0.0190 0.0173 -0.0236 0.0253 242.5000 243.2000 242.5000 0.4000 0.2600 0.4100 1.0000 0.9800 -0.9300 0.9700 0.2500 运行 01200772
50 双拥路1号公变交流采样 2012-09-25 00:00 0.6095 0.1794 0.1959 0.2341 0.0500 0.0079 0.0087 0.0333 239.2000 238.9000 238.7000 0.7500 0.8200 0.9900 1.0000 1.0000 1.0000 0.9900 0.2300 运行 01200089
51 新竹路1号公变交流采样 2012-09-25 00:00 0.4107 0.1033 0.1318 0.1755 0.0386 0.0065 0.0058 0.0262 219.9000 219.6000 218.9000 0.4700 0.6000 0.8100 1.0000 1.0000 1.0000 0.9900 0.2500 运行 01200182
52 新竹路4号公变交流采样 2012-09-25 00:00 0.1005 0.0215 0.0436 0.0033 0.0100 243.2000 242.1000 243.4000 0.0900 0.9600 运行 01225523
53 新竹路3号公变交流采样 2012-09-25 00:00 0.0283 0.0310 235.7000 234.9000 234.9000 0.7300 0.9000 1.1200 0.9900 0.9900 0.9900 0.9900 0.3500 运行 01225522
54 思贤路2号公变交流采样 2012-09-25 00:00 0.1325 0.0572 0.0288 0.0464 0.0311 0.0100 0.0057 0.0154 241.2000 242.9000 243.3000 0.2400 0.1200 0.2000 0.9700 0.9900 0.9800 0.9500 0.1300 运行 01225526
55 双拥路3号公变交流采样 2012-09-25 00:00 0.3805 0.1539 0.1243 0.1022 0.0644 0.0287 0.0311 0.0045 236.9000 237.0000 237.5000 0.6600 0.5400 0.4300 0.9900 0.9800 0.9700 1.0000 0.1500 运行 01200247
56 中山路1号公变交流采样 2012-09-25 00:00 0.9097 0.3832 0.1504 0.3760 0.0997 1.5900 0.9900 0.9900 1.0000 0.9900 0.9700 运行 01200078
57 新兴苑5号公变交流采样 2012-09-25 00:00 0.0143 0.0025 0.0044 0.0074 -0.0092 -0.0021 -0.0028 -0.0042 232.1000 231.3000 231.1000 0.0100 0.0200 0.0400 0.8400 1.0000 1.0000 1.0000 0.0200 运行 01225370
58 新民路6号公变交流采样 2012-09-25 00:00 0.4284 0.2345 0.0881 0.1065 0.0869 0.0701 0.0203 -0.0038 241.8000 242.2000 241.9000 1.0200 0.3800 0.4400 0.9800 0.9600 0.9700 1.0000 0.5200 运行 01200300
59 桃源路5号公变交流采样 2012-09-25 00:00 0.4304 0.1310 0.1277 0.1717 0.0928 0.0290 0.0347 0.0290 231.8000 232.0000 231.1000 0.5900 0.5800 0.7700 0.9800 0.9800 0.9600 0.9900 0.1700 运行 01225361
60 教育路1号公变交流采样 2012-09-25 00:00 0.7877 0.2636 0.2651 0.2620 0.2698 0.1112 0.0824 0.0751 221.5000 221.2000 221.8000 1.3100 1.3000 1.2200 0.9500 0.9200 0.9600 0.9600 0.1700 运行 01200096
61 建政路6号公变交流采样 2012-09-25 00:00 0.3059 0.1068 0.0608 0.1384 0.0530 0.0203 0.0092 0.0233 241.4000 245.7000 241.2000 0.4600 0.2700 0.5900 0.9900 0.9800 0.9900 0.9900 0.2900 运行 01225596
62 园湖路东一里1号公变交流采样 2012-09-25 00:00 0.1123 0.0000 0.0840 0.0282 0.0269 0.0000 0.3800 0.1200 0.9700 1.0000 0.9500 -1.0000 0.3800 运行 01225330
63 新竹小区1号公变交流采样 2012-09-25 00:00 0.5403 0.1060 0.1994 0.2349 0.0321 0.0221 0.0100 0.0000 237.0000 237.0000 236.2000 0.4600 0.8500 1.0100 1.0000 0.9800 1.0000 1.0000 0.1600 运行 01200186
64 中山路3号公变交流采样 运行 01200090
65 新竹小区4号公变交流采样 2012-09-25 00:00 0.2754 0.1081 0.0817 0.0855 -0.0398 -0.0068 -0.0143 -0.0186 230.0000 229.9000 229.8000 0.4700 0.3600 0.3800 -0.9900 -1.0000 -0.9900 -0.9800 0.1000 运行 01225041
66 新竹小区5号公变交流采样 运行 01225053
67 新竹小区7号公变交流采样 2012-09-25 00:00 0.5891 0.1257 0.2814 0.1820 0.0132 -0.0126 0.0177 0.0081 242.5000 234.8000 245.9000 0.5200 1.2000 0.7400 1.0000 -1.0000 1.0000 1.0000 0.5700 运行 01225055
68 新竹小区2号公变交流采样 2012-09-25 00:00 0.5519 0.1778 0.2481 0.1259 0.0863 0.0289 0.0403 0.0170 230.7000 230.4000 230.7000 0.7800 1.0900 0.5500 0.9900 0.9900 0.9900 0.9900 0.4700 运行 01200185
69 建政南路2号公变交流采样 运行 01225306
70 新竹南一里1号公变公变交流采样 2012-09-25 00:00 0.8514 0.2254 0.3325 0.2934 0.3151 0.0898 0.1217 0.1035 237.7000 237.5000 237.4000 1.0200 1.4900 1.3100 0.9400 0.9300 0.9400 0.9400 0.4300 运行 01200181
71 长岗三组1号公变终端交流采样 2012-09-25 00:00 0.9498 0.3542 0.2840 0.3116 0.0616 0.0157 0.0179 0.0279 230.1000 231.2000 233.3000 1.5400 1.2300 1.3400 1.0000 1.0000 1.0000 1.0000 0.3400 运行 01227459
72 津头一组公变终端交流采样 2012-09-25 00:00 0.9621 0.2877 0.3648 0.3096 0.1198 0.0128 0.0759 0.0310 239.8000 231.3000 239.2000 1.2000 1.6100 1.3000 0.9900 1.0000 0.9800 1.0000 0.4100 运行 01201320
73 中雅1号配变交采 2012-09-25 00:00 0.5026 0.3829 0.0317 0.0879 0.0336 0.0316 -0.0029 0.0054 235.2000 236.7000 235.8000 1.6400 0.1400 0.3800 1.0000 1.0000 1.0000 1.0000 1.3800 运行 01200265
74 琅东六、七组公变交采 2012-09-25 00:00 1.5646 0.5114 0.4537 0.5995 -0.1403 -0.0490 -0.0317 -0.0596 241.8000 240.7000 240.4000 2.1300 1.9100 2.5300 -1.0000 -1.0000 -1.0000 -1.0000 0.1700 运行 01702396
75 琅东四、五组公变交采 2012-09-25 00:00 0.6437 0.2005 0.2450 0.2043 0.0877 0.0151 0.0409 0.0317 240.7000 240.0000 240.5000 0.8300 1.0500 0.8700 0.9900 1.0000 0.9900 0.9900 0.5400 运行
76 葛麻三、四组公变交采 2012-09-25 00:00 2.0195 0.5755 0.6953 0.7462 0.2892 0.0593 0.1120 0.1147 232.5000 232.6000 231.1000 2.5300 3.0700 3.3000 0.9900 1.0000 0.9900 0.9900 0.6700 运行 01226229
77 长岗1、2组1号公变交采 2012-09-25 00:00 0.9736 0.2612 0.3628 0.3369 0.0295 -0.0030 0.0007 0.0279 242.6000 242.1000 241.3000 1.1000 1.5700 1.4600 1.0000 1.0000 1.0000 1.0000 0.4400 运行 01227463
78 长岗1、2组2号公变交采 2012-09-25 00:00 1.0036 0.2951 0.3032 0.4053 -0.0254 -0.0153 -0.0101 0.0000 234.4000 233.7000 233.7000 1.3200 1.3500 1.8000 1.0000 1.0000 1.0000 1.0000 0.1600 运行 01227464
79 长岗1、3组公变交采 2012-09-25 00:00 0.6607 0.2200 0.2019 0.2383 0.0603 0.0177 0.0135 0.0293 242.5000 242.0000 241.6000 0.9300 0.8500 1.0000 1.0000 1.0000 1.0000 0.9900 0.4800 运行 00022321
80 长岗二组1号公变交采 2012-09-25 00:00 1.5141 0.4519 0.4321 0.6301 0.0957 0.0115 0.0503 0.0339 221.2000 221.2000 220.7000 2.0800 2.0200 2.9300 1.0000 1.0000 0.9900 1.0000 0.7100 运行 01227462
81 长岗二组2号公变交采 2012-09-25 00:00 1.1202 -0.2381 0.7426 0.6126 0.4943 0.5258 0.0316 -0.0608 224.1000 229.4000 243.4000 2.7400 3.3100 2.7400 0.9200 -0.4100 1.0000 1.0000 4.5500 运行 01227465
82 葛麻二组新居公变交采 2012-09-25 00:00 0.9257 0.2815 0.3464 0.2904 0.1754 0.0525 0.0631 0.0597 240.9000 239.3000 240.6000 1.1900 1.4900 1.2500 0.9800 0.9800 0.9800 0.9800 0.2300 运行 00022324
83 南湖二组公变交采 运行 01201311
84 南湖一组公变交采 运行 01201310
85 津头三组公变交采 运行 01201318
86 津头二组公变交采 2012-09-25 00:00 1.7286 0.5739 0.5333 0.6227 0.1799 0.0555 0.0701 0.0531 234.3000 235.0000 234.8000 2.4900 2.3200 2.7100 0.9900 1.0000 0.9900 1.0000 1.1600 运行 00022316
87 双拥路5号公变交采 2012-09-25 00:00 0.8482 0.2081 0.2348 0.4065 0.0665 0.0152 0.0110 0.0413 224.2000 224.0000 222.7000 0.9700 1.0700 1.8400 1.0000 1.0000 1.0000 0.9900 0.9800 运行 01227692
88 天桃路2号公变交流采样 2012-09-25 00:00 0.1889 0.0903 0.0541 0.0445 0.1230 0.0463 0.0374 0.0395 220.4000 224.8000 222.5000 0.4600 0.3000 0.2700 0.8400 0.8900 0.8200 0.7500 0.2100 运行 01200254
89 公安村2号配变交采 2012-09-25 00:00 0.2147 0.1239 0.0438 0.0466 0.0230 0.0174 0.0139 -0.0089 226.1000 225.7000 226.2000 0.5600 0.2100 0.2200 0.9900 0.9900 0.9600 0.9900 0.4700 运行 01225591
90 公安村1号配变交采 2012-09-25 00:00 0.1525 0.1045 0.0473 0.0001 0.0101 0.0110 -0.0018 0.0008 226.6000 223.5000 0.0000 0.4700 0.2100 0.2000 1.0000 1.0000 1.0000 1.0000 0.5600 运行 01225590
91 公安村3号配变交采 2012-09-25 00:00 0.2475 0.1293 0.0488 0.0706 0.0241 0.0143 -0.0034 0.0130 225.6000 226.8000 225.9000 0.5800 0.2200 0.3200 1.0000 0.9900 1.0000 0.9800 0.4400 运行 01225592
92 中天世纪花园1号配变 2012-09-25 00:00 0.0905 0.1220 0.0859 -0.1176 0.0182 0.0220 0.0162 -0.0182 243.0000 242.6000 242.0000 0.5100 0.3600 0.5000 0.9900 0.9900 0.9900 0.9900 0.9200 运行 01003237
93 中天世纪花园2号配变 2012-09-25 00:00 0.3842 0.1092 0.1354 0.1430 0.0675 0.0065 0.0269 0.0343 243.0000 242.2000 242.0000 0.4600 0.5800 0.6100 0.9900 1.0000 0.9800 0.9800 0.4200 运行 01003238
94 中天世纪花园3号配变 2012-09-25 00:00 0.4047 0.1104 0.1165 0.1776 0.0212 0.0052 0.0053 0.0106 231.5000 231.2000 229.4000 0.4800 0.5100 0.7800 1.0000 1.0000 1.0000 1.0000 0.5000 运行 00141399
95 中天世纪花园4号配变 运行 00141400
96 新竹小区8号公变交流采样 2012-09-25 00:00 0.5410 0.1687 0.2437 0.1286 0.0288 0.0184 0.0104 0.0000 239.6000 239.5000 240.2000 0.7100 1.0200 0.5400 1.0000 0.9900 1.0000 1.0000 0.1500 故障 01701217
97 新竹小区9号公变交流采样 2012-09-25 00:00 0.4365 0.1502 0.1288 0.1575 0.0059 0.0059 0.0000 0.0000 236.6000 236.6000 236.9000 0.6500 0.5500 0.6900 1.0000 1.0000 1.0000 1.0000 0.0300 故障 01701218
98 斯壮花园1号配变交采 2012-09-25 00:00 0.3415 0.0958 0.1186 0.1281 0.0478 0.0044 0.0307 0.0142 231.5000 231.2000 230.9000 0.4200 0.5300 0.5600 0.9900 1.0000 0.9700 0.9900 0.2800 运行 00017065
99 斯壮花园2号配变交采 2012-09-25 00:00 0.3888 0.1585 0.1128 0.1178 0.0402 0.0231 0.0108 0.0062 230.7000 231.1000 230.7000 0.7000 0.5000 0.5200 0.9900 0.9900 1.0000 1.0000 0.4600 运行 00017066
100 大地华城1号配变交采 运行 01226360
101 大地华城2号配变交采 2012-09-25 00:00 0.2427 0.1372 0.0574 0.0483 0.0106 0.0068 0.0024 0.0015 230.9000 231.5000 231.1000 0.6000 0.2600 0.2100 1.0000 1.0000 1.0000 1.0000 0.3900 运行 01226361
102 金花苑配变交采 运行 01002860
103 迷你居钻石屋配变交采 运行 01003248
104 东波苑1号配变交采 2012-09-25 00:00 0.2270 0.0899 0.0728 0.0644 0.0129 0.0066 0.0035 0.0027 229.1000 229.6000 229.2000 0.4000 0.3200 0.2800 1.0000 1.0000 1.0000 1.0000 0.2100 运行 01201755
105 东波苑2号配变交采 2012-09-25 00:00 0.2033 0.1022 0.0585 0.0422 0.0078 0.0003 0.0039 0.0045 229.2000 229.5000 229.4000 0.4500 0.2600 0.1900 1.0000 1.0000 1.0000 1.0000 0.3900 运行 01201756
106 聚云轩配变 2012-09-25 00:00 0.0933 0.0309 0.0282 0.0342 0.0137 0.0054 0.0074 0.0009 232.8000 232.0000 231.9000 0.1400 0.1300 0.1500 0.9900 0.9900 0.9800 1.0000 0.1100 运行 01124711
107 富城1号配变交采 2012-09-25 00:00 0.1846 0.1017 0.0001 0.0830 0.0309 0.0007 -0.0005 0.0307 231.9000 232.3000 232.1000 0.4400 0.0100 0.3800 0.9900 1.0000 1.0000 0.9400 0.4000 运行 01225617
108 聚雅轩、贵城配变交采 2012-09-25 00:00 0.3455 0.1189 0.0937 0.1326 0.0876 0.0331 0.0280 0.0263 243.2000 243.7000 243.1000 0.5100 0.4000 0.5600 0.9700 0.9600 0.9600 0.9800 0.3300 运行 01225616
109 福兴园1号配变交采 运行 01225511
110 康平公寓配变交采 2012-09-25 00:00 0.1440 0.0454 0.0388 0.0596 0.0281 0.0118 0.0157 0.0007 234.8000 235.1000 234.7000 0.2000 0.1800 0.2600 0.9800 0.9700 0.9300 1.0000 0.2300 运行 01125453
111 岭南家园1号配变交采 运行 00018767
112 岭南家园2号配变交采 2012-09-25 00:00 0.2898 0.1157 0.0904 0.0835 0.0511 0.0178 0.0156 0.0177 236.2000 236.4000 236.5000 0.5000 0.3900 0.3600 0.9800 0.9900 0.9900 0.9800 0.2800 运行 00018768
113 岭南家园3号配变交采 2012-09-25 00:00 0.1587 0.0558 0.0367 0.0666 0.0311 0.0084 0.0029 0.0199 237.1000 237.3000 236.9000 0.2400 0.1600 0.2900 0.9800 0.9900 1.0000 0.9600 0.2100 运行 00018769
114 永凯现代花园1号配变交采 运行 01226063
115 建政路2号公变交流采样 2012-09-25 00:00 0.7320 0.2217 0.2827 0.2276 0.1470 0.0181 0.0648 0.0641 243.6000 239.4000 243.4000 0.9100 1.2000 0.9600 0.9800 1.0000 0.9700 0.9600 0.0400 故障 01200239
116 古城路2号公变交流采样 2012-09-25 00:00 0.4203 0.1403 0.1315 0.1485 0.0690 0.0226 0.0227 0.0237 241.9000 242.4000 243.7000 0.5900 0.5500 0.6100 0.9900 0.9900 0.9900 0.9900 0.0100 故障 01200255
117 新民路1号公变交流采样 故障 01200077
118 新竹小区3号公变交流采样 2012-09-25 00:00 0.4068 0.1829 0.0119 0.2120 0.0618 0.0480 -0.0135 0.0273 232.0000 228.5000 235.1000 0.8300 0.0900 0.9300 0.9900 0.9700 0.6600 0.9900 0.2400 故障 01200220
119 新竹小区6号公变交流采样 2012-09-25 00:00 0.3929 0.1521 0.1490 0.0918 0.0191 0.0141 0.0000 0.0050 227.3000 235.7000 233.7000 0.6900 0.6300 0.4000 1.0000 1.0000 1.0000 1.0000 0.1000 故障 01225054
120 园湖路2号公变交流采样 2012-09-25 00:00 0.1778 0.0659 0.0225 0.0894 0.0663 0.0256 0.0063 0.0344 241.4000 241.5000 241.7000 0.2900 0.1000 0.3900 0.9400 0.9300 0.9600 0.9300 0.0800 故障 01200145
121 园湖路3号公变交流采样 2012-09-25 00:00 1.0496 0.4279 0.3298 0.2919 0.2408 0.0950 0.0736 0.0722 238.4000 237.7000 238.5000 1.8600 1.4300 1.2800 0.9700 0.9800 0.9800 0.9700 0.1700 故障 01200147
122 园湖路6号公变交流采样 2012-09-25 00:00 0.0480 0.0000 0.0156 0.0324 -0.0281 0.0000 -0.0281 0.0000 249.3000 247.8000 248.6000 0.0000 0.1200 0.1300 0.8600 0.0000 0.4900 1.0000 0.0000 故障 01225318
123 园湖路7号公变交流采样 故障 01225317
124 思贤路1号公变交流采样 故障 01200095
125 怡景公寓1号公变交流采样 2012-09-25 00:00 0.1388 0.0379 0.0554 0.0455 -0.0519 -0.0163 -0.0168 -0.0188 230.4000 230.0000 229.6000 0.1800 0.2500 0.2100 0.9400 0.9200 0.9600 0.9200 0.0200 故障 01225331
126 怡景公寓2号公变交流采样 2012-09-25 00:00 0.1714 0.0671 0.0571 0.0472 -0.0499 -0.0185 -0.0166 -0.0148 230.2000 228.8000 231.0000 0.3200 0.2700 0.2200 0.9600 0.9600 0.9600 0.9500 0.0200 故障 01225332
127 新兴苑1号公变交流采样 2012-09-25 00:00 0.2954 0.0999 0.1088 0.0867 0.0458 0.0192 0.0126 0.0139 231.5000 231.2000 231.3000 0.4500 0.4900 0.3800 0.9900 0.9800 0.9900 0.9900 0.3500 故障 01225366
128 新兴苑2号公变交流采样 2012-09-25 00:00 0.2829 0.0980 0.0781 0.1068 0.0435 0.0138 0.0207 0.0087 231.3000 231.6000 231.0000 0.4300 0.3500 0.4700 0.9900 0.9900 0.9700 1.0000 0.3100 故障 01225367
129 新兴苑3号公变交流采样 2012-09-25 00:00 0.2432 0.0868 0.1009 0.0555 0.0285 0.0156 -0.0049 0.0177 230.5000 231.2000 233.4000 0.3900 0.4500 0.2500 0.9900 0.9900 1.0000 0.9500 0.4300 故障 01225368
130 新兴苑4号公变交流采样 2012-09-25 00:00 0.1907 0.0000 0.0971 0.0936 0.0256 0.0000 0.0087 0.0169 225.9000 226.2000 226.1000 0.0000 0.4300 0.4200 0.9900 1.0000 1.0000 0.9800 0.3900 运行 01225369
131 新兴苑6号公变交流采样 2012-09-25 00:00 0.2406 0.0678 0.0906 0.0827 -0.0347 -0.0167 -0.0147 -0.0033 231.6000 228.9000 233.8000 0.3000 0.4000 0.3600 0.9900 0.9700 0.9900 1.0000 0.2100 运行 01225371
132 新兴苑7号公变交流采样 2012-09-25 00:00 0.2664 0.0588 0.1447 0.0644 0.0799 0.0196 0.0416 0.0186 235.8000 233.7000 242.0000 0.2700 0.6500 0.2800 0.9600 0.9500 0.9600 0.9600 0.4000 故障 01225372
133 新兴苑8号公变交流采样 2012-09-25 00:00 0.2160 0.0840 0.0419 0.0940 0.0129 0.0077 -0.0101 0.0148 226.4000 226.0000 225.9000 0.3800 0.2000 0.4300 1.0000 1.0000 0.9700 0.9900 0.4900 运行 01225373
134 新兴苑9号公变交流采样 2012-09-25 00:00 0.1353 0.0533 0.0345 0.0476 0.0255 0.0106 0.0046 0.0102 226.1000 226.0000 226.0000 0.2400 0.1600 0.2200 0.9800 0.9800 1.0000 0.9800 0.1700 运行 01225374
135 新兴苑10号公变交流采样 2012-09-25 00:00 0.1847 0.0785 0.0458 0.0611 0.0097 0.0047 0.0024 0.0026 226.1000 225.9000 225.9000 0.3500 0.2100 0.2700 1.0000 1.0000 1.0000 1.0000 0.2500 故障 01225375
136 澳洲丽园1号公变交流采样 2012-09-25 00:00 0.2240 0.0742 0.0762 0.0751 0.0159 0.0058 0.0063 0.0046 224.8000 224.7000 224.5000 0.3300 0.3400 0.3400 1.0000 1.0000 1.0000 1.0000 0.1800 故障 01225390
137 澳洲丽园2号公变交流采样 故障 01225391
138 澳洲丽园3号公变交流采样 2012-09-25 00:00 0.2692 0.1371 0.0650 0.0670 0.0451 0.0184 0.0119 0.0147 235.5000 236.0000 故障 01225392
139 澳洲丽园5号公变交流采样 2012-09-25 00:00 0.2937 0.0859 0.0865 0.1249 0.0646 0.0214 0.0215 0.0243 236.3000 236.1000 235.7000 0.3800 0.3800 0.5400 0.9800 0.9700 0.9700 0.9800 0.3000 故障 01225393
140 澳洲丽园6号公变交流采样 2012-09-25 00:00 0.3066 0.0948 0.0965 0.1165 0.0258 0.0102 0.0109 0.0047 225.0000 225.1000 224.6000 0.4300 0.4300 0.5200 1.0000 1.0000 0.9900 1.0000 0.2600 故障 01225394
141 南宁供电局水科所1号配变交采 2012-09-25 00:00 0.2884 0.0936 0.1058 0.0889 0.0139 0.0057 0.0076 0.0008 225.5000 225.4000 225.2000 0.4100 0.4700 0.3900 1.0000 1.0000 1.0000 1.0000 0.2800 运行 01200223
142 南宁供电局水科所2号配变交采 运行 01124467
143 宁汇新天地1号配变交采 2012-09-25 00:00 0.1743 0.0597 0.0636 0.0540 0.0372 0.0165 0.0102 0.0107 236.4000 236.1000 237.5000 0.2700 0.2800 0.2300 0.9800 0.9800 0.9900 0.9800 0.1600 运行 01003874
144 宁汇新天地2号配变交采 2012-09-25 00:00 0.1448 0.0431 0.0501 0.0533 0.0364 0.0095 0.0106 0.0164 237.2000 237.2000 236.2000 0.1900 0.2100 0.2400 0.9800 0.9900 0.9900 0.9700 0.1200 运行 01003878
145 宁汇新天地3号配变交采 2012-09-25 00:00 0.2151 0.0717 0.0707 0.0721 0.0241 0.0073 0.0100 0.0067 224.9000 225.3000 225.1000 0.3200 0.3200 0.3200 0.9900 1.0000 0.9900 1.0000 0.1300 运行 01003160
146 东葛华都配变交采 2012-09-25 00:00 0.1825 0.0375 0.0839 0.0609 0.0228 0.0035 0.0116 0.0076 226.6000 225.8000 运行 01059585
147 欧景庭园1号配变(万通)交采 2012-09-25 00:00 0.3149 0.0833 0.1204 0.1111 0.0595 0.0253 0.0197 0.0145 237.4000 236.9000 237.4000 0.3700 0.5200 0.4800 0.9800 0.9600 0.9900 1.0000 0.3400 运行 01325501
148 欧景庭园4号配变(万通)交采 2012-09-25 00:00 0.3505 0.0000 0.2066 0.1443 0.0368 0.0000 0.0151 0.0217 236.7000 236.5000 236.0000 0.0000 0.8800 0.6200 1.0000 1.0000 1.0000 0.9900 0.7500 运行 01325504
149 欧景庭园2号配变(万通)交采 2012-09-25 00:00 0.3212 0.0883 0.1110 0.1214 0.0386 0.0021 0.0286 0.0081 237.8000 236.9000 237.0000 0.3700 0.4900 0.5200 0.9900 1.0000 0.9700 1.0000 0.3700 运行 01325502
150 欧景庭园3号配变(万通)交采 2012-09-25 00:00 0.2864 0.1048 0.0939 0.0880 0.0463 0.0156 0.0176 0.0132 237.7000 237.0000 237.2000 0.4500 0.4100 0.3800 0.9900 0.9900 0.9800 0.9900 0.2600 运行 01325503
151 南国街2号公变交流采样 2012-09-25 00:00 0.0920 0.0745 0.0322 0.0497 0.0506 -0.0126 0.0711 -0.0079 244.3000 242.0000 245.1000 0.3100 0.3300 0.2100 0.8800 0.9900 -0.4100 0.9900 0.1200 运行 01200101
152 南国街3号公变交流采样 2012-09-25 00:00 0.0978 0.0000 0.0306 0.0672 -0.0319 0.0000 -0.0214 -0.0105 0.0000 247.8000 243.8000 0.3800 0.1500 0.2800 0.9500 0.0000 0.8200 0.9900 0.1500 故障 01200084
153 南环路1号公变交流采样 故障 01200086
154 南环路2号公变交流采样 故障 01226491
155 经文街1号公变交流采样 2012-09-25 00:00 0.4854 0.1915 0.1132 0.1807 0.0486 0.0259 0.0032 0.0195 244.1000 244.5000 244.2000 0.8200 0.4800 0.7600 1.0000 0.9900 1.0000 0.9900 0.1000 故障 01200092
156 七星路1号公变交流采样 2012-09-25 00:00 0.8559 0.2764 0.2899 0.2896 0.1100 0.0000 0.0514 0.0586 243.1000 243.5000 242.6000 1.1300 1.2100 1.2100 0.9900 1.0000 0.9800 0.9800 0.0700 故障 01200082
157 七星路一巷1号公变交流采样 2012-09-25 00:00 0.7605 0.2221 0.2701 0.2683 0.0104 0.0000 0.0104 0.0000 244.4000 244.1000 244.1000 0.9300 1.1200 1.1100 1.0000 1.0000 1.0000 1.0000 0.0600 故障 01200076
158 纬武路1号公变交流采样 2012-09-25 00:00 0.4200 0.1676 0.1032 0.1492 0.0917 0.0298 0.0359 0.0260 231.4000 232.1000 231.8000 0.8000 0.5100 0.7100 0.9800 0.9800 0.9400 0.9900 0.0800 故障 01200100
159 新民路2号公变交流采样 故障 01200079
160 凌铁村1号公变交流采样 2012-09-25 00:00 0.6230 0.0000 0.3516 0.2714 0.0045 0.0000 0.0307 -0.0262 0.0000 234.8000 237.4000 1.2400 1.5100 1.1700 1.0000 0.0000 1.0000 1.0000 0.6000 故障 01200073
161 共和路2号公变交流采样 2012-09-25 00:00 0.7446 0.3199 0.1936 0.2311 0.0588 0.0409 0.0092 0.0087 226.0000 227.6000 227.0000 1.4300 0.8600 1.0200 1.0000 0.9900 1.0000 1.0000 0.1600 运行 01200205
162 共和路3号公变交流采样 2012-09-25 00:00 0.8023 0.2635 0.2878 0.2510 0.0189 0.0000 0.0189 0.0000 232.6000 231.7000 233.0000 1.1400 1.2500 1.0800 1.0000 1.0000 1.0000 1.0000 0.0400 故障 01200153
163 商业大院1号公变交流采样 2012-09-25 00:00 0.4942 0.1481 0.1870 0.1591 0.0238 0.0085 0.0061 0.0092 236.2000 236.3000 239.7000 0.6300 0.8000 0.6700 1.0000 1.0000 1.0000 1.0000 0.0400 故障 01225320
164 商业大院2号公变交流采样 2012-09-25 00:00 0.6486 0.1734 0.2603 0.2149 0.0145 0.0000 0.0000 0.0145 227.9000 224.7000 231.8000 0.7900 1.1900 0.9500 1.0000 1.0000 1.0000 1.0000 0.0900 故障
165 商业大院3号公变交流采样 2012-09-25 00:00 0.4564 0.1647 0.1764 0.1153 0.0313 0.0179 0.0060 0.0074 222.1000 228.8000 229.3000 0.7400 0.7800 0.5000 1.0000 0.9900 1.0000 1.0000 0.1000 故障 01225322
166 商业大院4号公变交流采样 2012-09-25 00:00 0.7177 0.2960 0.2245 0.1972 0.0232 0.0157 0.0000 0.0075 224.1000 224.9000 224.8000 1.3300 1.0100 0.8800 1.0000 1.0000 1.0000 1.0000 0.1400 故障 01225323
167 商业大院5号公变交流采样 2012-09-25 00:00 0.3647 0.1340 0.1435 0.0872 -0.0071 0.0038 0.0000 -0.0109 237.8000 237.0000 236.6000 0.5700 0.6100 0.3800 1.0000 1.0000 1.0000 0.9900 0.0800 故障 01701671
168 星湖路1号公变交流采样 2012-09-25 00:00 0.2497 0.0490 0.1203 0.0804 -0.6908 -0.2348 -0.2182 -0.2378 240.5000 236.2000 242.0000 0.9800 1.0200 1.0000 0.3400 0.2000 0.4800 0.3200 0.0900 故障 01200253
169 世纪商都配变交采 2012-09-25 00:00 0.0544 0.0236 0.0167 0.0141 0.0062 0.0000 0.0021 -0.0041 236.0000 235.9000 235.4000 0.1000 0.0700 0.0600 0.9900 1.0000 0.9900 0.9600 0.0100 运行 00141433
170 武警广西边防总队宿舍配变交采 2012-09-25 00:00 0.2616 0.0837 0.1222 0.0557 0.0080 0.0039 0.0041 0.0000 227.8000 227.8000 228.6000 0.3700 0.5300 0.2400 1.0000 1.0000 1.0000 1.0000 0.0800 运行 01200826
171 枫林蓝岸3号配变交采 运行 01226317
172 绿城画卷2号配变(呈辉)交采 运行 01200410
173 荣和山水美地1号配变(荣和)交采 运行 01003384
174 水利电业集团2号配变交采 2012-09-25 00:00 0.2569 0.0877 0.1252 0.0440 0.0097 0.0000 0.0071 0.0026 220.6000 220.6000 221.8000 0.4000 0.5700 0.2000 1.0000 1.0000 1.0000 1.0000 0.1000 运行 00150278
175 天一园2号配变(长和)交采 2012-09-25 00:00 0.2102 0.0774 0.0638 0.0690 0.0158 0.0031 0.0045 0.0082 223.7000 224.2000 224.9000 0.3400 0.2800 0.3100 1.0000 1.0000 1.0000 0.9900 0.0200 运行 01003872
176 东景花园3号配变交采 2012-09-25 00:00 0.2477 0.0650 0.1038 0.0789 0.0021 0.0021 0.0000 0.0000 227.3000 227.3000 227.5000 0.2800 0.4500 0.3500 1.0000 1.0000 1.0000 1.0000 0.0400 运行 00020357
177 公安消防支队配变交采 2012-09-25 00:00 0.2361 0.1042 0.0891 0.0428 0.0320 0.0144 0.0067 0.0109 235.1000 235.2000 237.0000 0.4400 0.3800 0.1800 0.9900 0.9900 1.0000 0.9700 0.0800 运行 00020390
178 水利电业集团3号配变交采 2012-09-25 00:00 0.1077 0.0703 0.0211 0.0163 0.0165 -0.0027 0.0466 -0.0274 220.4000 221.9000 220.1000 0.3200 0.2300 0.1700 0.0000 0.0000 0.0000 0.0000 0.0300 运行 00150279
179 青年国际3号配变(龙基)交采 运行 00018765
180 金旺角2号配变交采 2012-09-25 00:00 0.3042 0.0758 0.1257 0.1027 0.0568 0.0185 0.0142 0.0241 234.9000 234.7000 235.5000 0.3300 0.5300 0.4500 0.0000 0.0000 0.0000 0.0000 0.0400 运行 0100002437
181 荣和山水美地2号配变(荣和)交采 2012-09-25 00:00 0.2030 0.0541 0.0694 0.0795 0.0515 0.0083 0.0222 0.0210 227.0000 226.3000 227.1000 0.2400 0.3200 0.3700 0.0000 0.0000 0.0000 0.0000 0.0400 运行 01003385
182 龙盘小区3号配变交采 2012-09-25 00:00 0.1384 0.0455 0.0692 0.0237 0.0009 0.0000 0.0000 0.0009 225.6000 226.4000 225.6000 0.2000 0.3100 0.1000 0.0000 0.0000 0.0000 0.0000 0.0500 运行 00150282
183 金湖帝景1号配变(安得房产)交采 2012-09-25 00:00 6.3633 2.1934 2.2939 1.8760 0.4689 0.1115 0.3574 0.0000 228.4000 227.2000 228.4000 0.3100 0.3400 0.2600 1.0000 1.0000 0.9900 1.0000 0.0100 运行 01226609
184 水利电业集团1号配变交采 2012-09-25 00:00 0.2769 0.1566 0.0834 0.0369 0.0211 0.0098 0.0045 0.0068 221.2000 220.1000 221.7000 0.7100 0.3800 0.1600 1.0000 1.0000 1.0000 0.9800 0.1600 运行 00150277
185 大自然花园5号配变交采 2012-09-25 00:00 0.2797 0.0953 0.0981 0.0863 0.0045 0.0000 0.0045 0.0000 227.7000 228.4000 228.0000 0.4300 0.4400 0.3800 1.0000 1.0000 1.0000 1.0000 0.0200 运行 01201519
186 天一园1号配变(长和)交采 2012-09-25 00:00 0.0884 0.0278 0.0167 0.0439 0.1700 0.0517 0.0276 0.0907 223.5000 224.3000 224.3000 0.2600 0.1500 0.4500 0.4600 0.4700 0.5200 0.4400 0.0800 运行 01003871
187 民航汇春1号配变交采 2012-09-25 00:00 0.2243 0.0646 0.1036 0.0561 0.0268 0.0060 0.0129 0.0079 223.1000 223.5000 232.5000 0.2900 0.4700 0.2400 0.9900 1.0000 0.9900 0.9900 0.0600 运行 00248191
188 金湖帝景3号配变(安得房产)交采 2012-09-25 00:00 0.0857 0.0319 0.0333 0.0205 -0.0080 -0.0030 0.0000 -0.0050 228.3000 228.0000 228.9000 0.1500 0.1400 0.1000 1.0000 1.0000 1.0000 0.9700 0.0100 运行 01226611
189 香港花园1号配变交采 2012-09-25 00:00 0.4212 0.1660 0.1165 0.1387 0.0389 0.0159 0.0140 0.0090 224.9000 228.2000 224.2000 0.7400 0.5200 0.6200 1.0000 1.0000 0.9900 1.0000 0.0500 运行 01224976
190 圣展独立公社配变(长江)交采 运行 00215232
191 新新家园6号配变(房产总公司)交采 运行 01201263
192 汇春名庭2号配变交采 2012-09-25 00:00 0.3629 0.1566 0.1174 0.0889 0.1003 0.0417 0.0346 0.0240 238.4000 238.2000 238.4000 0.6800 0.5100 0.3900 0.0000 0.0000 0.0000 0.0000 0.0800 运行 01225613
193 新新家园4号配变(房产总公司)交采 2012-09-25 00:00 0.4254 0.1301 0.1686 0.1267 0.0576 0.0068 0.0221 0.0287 226.8000 225.6000 225.4000 0.5700 0.7500 0.5700 0.9900 1.0000 0.9900 0.9800 0.0300 运行 01201261
194 新新家园7号配变(房产总公司)交采 2012-09-25 00:00 0.3782 0.1671 0.0992 0.1119 0.0379 0.0171 0.0060 0.0148 225.4000 226.0000 225.9000 0.7300 0.4300 0.4900 1.0000 0.9900 1.0000 0.9900 0.1000 运行 01201262
195 金旺角1号配变交采 2012-09-25 00:00 0.0030 0.0000 0.0024 0.0006 0.0814 0.0001 0.0789 0.0024 233.8000 236.3000 233.5000 0.2000 0.2800 0.2700 0.0400 0.0000 0.0300 0.2700 0.0400 运行 0100002436
196 东景花园1号配变交采 2012-09-25 00:00 0.2480 0.0774 0.0854 0.0852 0.0072 0.0029 0.0000 0.0043 227.5000 226.9000 228.1000 0.3400 0.3800 0.3900 0.0000 0.0000 0.0000 0.0000 0.0000 运行 00020355
197 香港花园3号配变交采 2012-09-25 00:00 0.2185 0.0000 0.1297 0.0888 0.0452 0.0000 0.0285 0.0167 219.9000 231.7000 226.6000 0.0000 0.5800 0.4100 0.0000 0.0000 0.0000 0.0000 0.1700 运行 01224978
198 东方商务港1号配变交采 运行 01229328
199 民生路5号公变交采 2012-09-25 00:00 0.4859 0.1561 0.1822 0.1476 0.1033 0.0339 0.0325 0.0369 243.8000 245.4000 246.2000 0.6600 0.7600 0.6200 0.9800 0.9800 0.9800 0.9700 0.0400 故障 01200158
200 城市杰座1号配变交采 运行 00249685
201 民生路4号公变交采 2012-09-25 00:00 0.8242 0.2938 0.2705 0.2599 0.1439 0.0568 0.0263 0.0608 231.9000 232.3000 231.8000 1.3000 1.1800 1.1500 0.0000 0.0000 0.0000 0.0000 0.0900 运行 01200152
202 上东国际2号配变交采 运行 0100002941
203 大自然花园1号配变交采 2012-09-25 00:00 0.3050 0.1192 0.0951 0.0907 0.0153 0.0046 0.0107 0.0000 227.8000 229.2000 228.0000 0.5200 0.4200 0.3900 1.0000 1.0000 0.9900 1.0000 0.0200 运行 00020751
204 大自然花园6号配变交采 运行 01201520
205 沁景苑3号配变(华海)交采 2012-09-25 00:00 0.2359 0.0968 0.0606 0.0785 0.0261 0.0096 0.0030 0.0135 236.4000 237.0000 235.5000 0.4100 0.2600 0.3400 0.9900 1.0000 1.0000 0.9900 0.0500 运行 01225437
206 半山丽园4号配变交采 2012-09-25 00:00 0.2005 0.0898 0.0513 0.0594 0.0196 0.0087 0.0109 0.0000 229.4000 229.8000 229.2000 0.3900 0.2300 0.2600 0.0000 0.0000 0.0000 0.0000 0.0300 运行 00051976
207 亿利城2号配变(亿利房产)交采 2012-09-25 00:00 0.2595 0.0926 0.0929 0.0740 0.0297 0.0059 0.0116 0.0122 227.6000 228.0000 228.2000 0.4100 0.4100 0.3300 0.9900 1.0000 0.9900 0.9900 0.0200 运行 00018675
208 区地质局1号公变交采 故障 00086078
209 枫林蓝岸4号配变交采 2012-09-25 00:00 0.1416 0.0571 0.0304 0.0541 0.0240 0.0142 0.0038 0.0060 232.2000 231.9000 232.1000 0.2500 0.1300 0.2300 0.9900 0.9700 0.9900 0.9900 0.0200 运行 01226318
210 航洋国际3号配变交采 运行 01228196
211 区地质局2号公变交采 2012-09-25 00:00 0.3024 0.0951 0.1005 0.1068 0.0527 0.0145 0.0200 0.0182 228.7000 227.5000 226.4000 0.4300 0.4500 0.4900 0.9900 0.9900 0.9800 0.9900 0.0200 故障 00086079
212 龙盘小区2号配变交采 运行 00150281
213 区地质局3号公变交采 2012-09-25 00:00 0.2016 0.0567 0.0756 0.0693 0.0527 0.0163 0.0190 0.0174 228.3000 228.2000 226.8000 0.2600 0.3500 0.3100 0.9700 0.9600 0.9700 0.9700 0.0200 故障 00086080
214 东葛路2号公变交采 故障 01200183
215 集美新村1号配变交采 2012-09-25 00:00 0.2801 0.0898 0.1038 0.0865 0.0229 0.0000 0.0166 0.0063 227.4000 228.3000 226.7000 0.4000 0.4700 0.3900 1.0000 1.0000 0.9900 1.0000 0.0200 运行 01225578
216 琅园房产2号公变交采 2012-09-25 00:00 0.0351 0.0000 -0.0351 0.0000 0.0000 0.0000 0.0000 0.0000 228.0000 227.0000 227.9000 0.3300 0.4500 0.4000 1.0000 0.0000 -1.0000 0.0000 0.1700 故障 01700469
217 南宁机关车队金浦配变交采 2012-09-25 00:00 0.2094 0.0583 0.0580 0.0931 0.0305 0.0078 0.0104 0.0123 232.6000 229.3000 229.5000 0.2600 0.2600 0.4100 0.9900 0.9900 0.9800 0.9900 0.0500 运行 01225440
218 绿城画卷1号配变(呈辉)交采 2012-09-25 00:00 0.1724 0.0549 0.0644 0.0531 0.0064 0.0000 0.0021 0.0043 225.6000 227.3000 225.0000 0.2500 0.2900 0.2300 1.0000 1.0000 1.0000 1.0000 0.0100 运行 01200409
219 逸园小区3号配变(双鹿房产)交采 2012-09-25 00:00 0.1352 0.0491 0.0476 0.0385 -0.0076 -0.0049 0.0027 0.0000 227.7000 227.8000 227.6000 0.2200 0.2100 0.1600 1.0000 0.9900 1.0000 1.0000 0.0100 运行 01226019
220 集美新村2号配变交采 2012-09-25 00:00 0.1489 0.0747 0.0329 0.0413 0.0290 0.0109 0.0118 0.0063 238.2000 239.5000 238.2000 0.3200 0.1400 0.1700 0.9800 0.9900 0.9400 0.9900 0.0400 运行 01225407
221 汇春名庭1号配变交采 运行 01324983
222 民主路1号公变交采 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 231.4000 230.2000 230.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 故障 01200159
223 民主路3号公变交采 2012-09-25 00:00 0.0018 0.0951 0.0000 0.0969 -0.3331 -0.1671 0.0000 -0.1660 228.5000 228.8000 229.1000 0.8400 0.0000 0.8400 0.0000 0.0000 0.0000 0.0000 0.5600 故障 01200167
224 民主路2号公变交采 2012-09-25 00:00 0.0046 0.0000 0.1691 0.1737 -0.5984 0.0000 -0.3004 -0.2980 229.9000 231.6000 230.5000 0.0000 1.4900 1.4900 0.0000 0.0000 0.0000 0.0000 0.5000 故障 01200160
225 逸园小区2号配变(双鹿房产)交采 运行 00208002
226 亿利城1号配变(亿利房产)交采 2012-09-25 00:00 0.1783 0.0742 0.0668 0.0373 0.0224 0.0081 0.0112 0.0031 227.8000 228.1000 227.7000 0.3200 0.2900 0.1700 0.9900 0.9900 0.9900 1.0000 0.0400 运行 00018674
227 时代俊园配变交采 2012-09-25 00:00 0.2413 0.0733 0.0852 0.0828 0.0205 0.0067 0.0063 0.0075 227.9000 227.6000 227.6000 0.3200 0.3700 0.3600 1.0000 1.0000 1.0000 1.0000 0.0100 运行 01000540
228 凤岭上座1号配变交采 2012-09-25 00:00 0.2562 0.0646 0.0704 0.1212 0.0265 0.0054 0.0113 0.0098 240.4000 239.7000 239.3000 0.2700 0.3000 0.5100 0.0000 0.0000 0.0000 0.0000 0.0800 运行 01228725
229 汇春广场1号配变交采 2012-09-25 00:00 0.3571 0.1113 0.1163 0.1295 0.0542 0.0175 0.0163 0.0204 226.4000 226.7000 227.0000 0.4900 0.5200 0.5600 0.0000 0.0000 0.0000 0.0000 0.0100 运行 00075952
230 城市杰座2号配变(天驰)交采 2012-09-25 00:00 0.1956 0.1241 0.0000 0.0715 0.0432 0.0524 0.0000 0.0092 237.8000 237.8000 237.4000 0.3400 0.3200 0.3100 0.9800 0.9200 0.0000 0.9900 0.1900 运行 00249686
231 逸园小区1号配变(双鹿房产)交采 2012-09-25 00:00 0.1434 0.0543 0.0420 0.0471 0.0076 0.0000 -0.0017 0.0093 227.2000 227.7000 227.8000 0.2300 0.1800 0.2200 0.0000 0.0000 0.0000 0.0000 0.0300 运行 00208001
232 龙盘小区4号配变交采 运行 00150283
233 市规管局配变交采 2012-09-25 00:00 0.1060 0.0492 0.0151 0.0418 0.0214 0.0033 0.0096 0.0085 230.7000 231.1000 230.4000 0.2100 0.0800 0.1900 0.9800 1.0000 0.8600 0.9800 0.2100 运行 01124934
234 元亨陶陶居配变交采 2012-09-25 00:00 0.1458 0.0480 0.0421 0.0558 0.0139 0.0086 0.0032 0.0021 225.9000 225.8000 226.1000 0.2200 0.1900 0.2500 1.0000 0.9900 1.0000 1.0000 0.1600 运行 01225521
235 平安佳园1号公变交流采样 2012-09-25 00:00 0.1065 0.0335 0.0424 0.0304 0.0030 -0.0009 0.0001 0.0038 225.2000 224.8000 224.9000 0.1500 0.1900 0.1400 1.0000 1.0000 1.0000 1.0000 0.1300 故障 00017828
236 平安佳园2号公变交流采样 故障 00017829
237 红河花园1号公变交流采样 故障 00117474
238 红河花园2号公变交流采样 2012-09-25 00:00 0.0935 0.0419 0.0157 0.0367 -0.0020 -0.0036 0.0015 -0.0001 226.0000 225.3000 225.6000 0.1800 0.0700 0.1700 1.0000 1.0000 1.0000 1.0000 0.1800 故障 00117475
239 开投恶滩发电公司1号公变交流采样 2012-09-25 00:00 0.2564 0.1448 0.0819 0.0297 -0.0285 0.0088 -0.0158 -0.0214 227.2000 227.3000 227.9000 0.6400 0.3700 0.1600 0.9900 1.0000 0.9800 0.8100 0.5000 故障 00053111
240 碧云苑1号公变交流采样 故障 00019889
241 天然居1号公变交采 2012-09-25 00:00 0.1190 0.0440 0.0393 0.0357 0.0197 0.0089 0.0055 0.0055 231.3000 231.5000 231.1000 0.2000 0.1700 0.1600 0.9900 0.9900 1.0000 1.0000 0.1500 故障 01002913
242 秀山花园1号公变交流采样 2012-09-25 00:00 0.3495 0.0795 0.1452 0.1247 0.0726 0.0179 0.0280 0.0267 226.4000 221.9000 227.1000 0.3700 0.6700 0.5700 0.9800 0.9800 0.9800 0.9800 0.4400 故障 01225339
243 秀山花园2号公变交流采样 2012-09-25 00:00 0.4333 0.2114 0.1326 0.0888 0.0452 0.0154 0.0278 0.0044 221.5000 228.7000 224.7000 0.9600 0.6000 0.4200 0.9900 1.0000 0.9800 1.0000 0.4500 故障 01225340
244 秀山花园3号公变交流采样 2012-09-25 00:00 0.3044 0.1416 0.0626 0.0971 0.0346 0.0179 0.0128 0.0022 224.7000 226.8000 222.9000 0.6500 0.2900 0.4400 0.9900 0.9900 0.9800 1.0000 0.4400 故障 01225341
245 秀山花园4号公变交流采样 2012-09-25 00:00 0.2274 0.0623 0.0759 0.0892 0.0227 0.0070 0.0076 0.0080 226.7000 222.6000 224.4000 0.2800 0.3500 0.4100 1.0000 0.9900 1.0000 1.0000 0.2900 故障 01225342
246 秀山花园5号公变交流采样 2012-09-25 00:00 0.2386 0.0849 0.0900 0.0630 0.0360 0.0271 0.0061 0.0055 222.9000 225.1000 227.6000 0.4000 0.4100 0.2800 0.9900 0.9600 1.0000 1.0000 0.3500 故障 01225343
247 秀山花园6号公变交流采样 2012-09-25 00:00 0.2184 0.0576 0.0856 0.0765 0.0353 0.0193 0.0087 0.0073 225.7000 222.7000 227.2000 0.2700 0.3900 0.3400 0.9900 0.9500 1.0000 1.0000 0.2800 故障 01225344
248 经文街2号公变交流采样 2012-09-25 00:00 0.3079 0.0992 0.1071 0.1016 0.0223 0.0185 -0.0056 0.0094 244.9000 243.9000 243.6000 0.4200 0.4500 0.4200 1.0000 0.9800 1.0000 1.0000 0.0300 故障 01701943
249 枫林蓝岸2号配变交采 2012-09-25 00:00 0.1637 0.0609 0.0610 0.0417 -0.0053 -0.0041 0.0002 -0.0014 225.5000 225.8000 运行 01226316
250 龙盘小区1号配变交采 运行 00150280
251 汇东国际2号配变交采 运行 01226785
252 公务员小区3号配变交采 2012-09-25 00:00 0.2144 0.0913 0.0741 0.0490 0.0490 0.0248 0.0214 0.0028 240.0000 240.3000 240.3000 0.3900 0.3200 0.2000 0.9700 0.9600 0.9600 1.0000 0.0500 运行 01225433
253 公安局兴宁区分局配变交采 2012-09-25 00:00 0.2042 0.0516 0.0475 0.1051 0.0377 0.0067 0.0081 0.0229 241.7000 244.0000 241.3000 0.2100 0.2000 0.4400 0.9800 0.9900 0.9900 0.9800 0.0800 运行 01000937
254 南宁地区公安局交警支队配变交采 2012-09-25 00:00 0.2421 0.1050 0.0976 0.0395 0.0155 0.0032 0.0082 -0.0041 230.8000 223.2000 230.5000 0.4600 0.4400 0.1700 1.0000 1.0000 1.0000 0.9900 0.0900 运行 01003374
255 东景花园2号配变终端 2012-09-25 00:00 0.2431 0.1051 0.0866 0.0514 0.0041 0.0090 0.0000 -0.0049 227.5000 227.5000 227.8000 0.4600 0.3800 0.2200 0.0000 0.0000 0.0000 0.0000 0.0700 运行 00020356
256 光明日报配变交采 2012-09-25 00:00 0.1639 0.0859 0.0403 0.0377 0.0095 0.0043 0.0031 0.0021 236.3000 238.0000 237.0000 0.3600 0.1700 0.1600 0.0000 0.0000 0.0000 0.0000 0.0600 运行 01226069
257 望江公寓配变交采 2012-09-25 00:00 0.3937 0.1793 0.0911 0.1233 -0.1012 -0.0252 -0.0241 0.0519 229.9000 228.8000 228.1000 0.7700 0.4100 0.5900 0.9700 0.9900 0.9700 0.9200 0.1400 运行 01325617
258 滨湖公务员住宅9号配变交采 2012-09-25 00:00 0.0589 0.0436 0.0105 0.0048 0.0096 0.0071 0.0013 0.0038 240.4000 240.8000 240.9000 0.1800 0.0400 0.0300 0.9900 0.9900 0.9900 0.7800 0.0500 运行 01225434
259 凤翔花园2号配变交采 2012-09-25 00:00 0.2755 0.1477 0.1233 0.0045 0.0074 0.0000 0.0000 0.0074 225.2000 225.4000 215.7000 0.6500 0.5400 0.0400 1.0000 1.0000 1.0000 0.5200 0.1900 运行 01226210
260 南湖苑1号配变(国凯实业)交采 2012-09-25 00:00 0.1572 0.0000 0.0944 0.0628 0.0143 0.0000 0.0035 0.0108 227.3000 225.4000 226.7000 0.0000 0.4200 0.2800 1.0000 0.0000 1.0000 0.9900 0.1100 运行 01225383
261 汇东国际1号配变交采 运行 01226784
262 枫林蓝岸1号配变交采 2012-09-25 00:00 0.4042 0.1725 0.1167 0.1148 0.0405 0.0129 0.0111 0.0163 224.4000 225.1000 运行 01226315
263 凤翔花园3号配变交采 运行 01227193
264 金浦路琅东小区配变交采 运行 01225413
265 公务员小区2号配变交采 2012-09-25 00:00 0.2031 0.0865 0.0683 0.0483 0.0374 0.0123 0.0030 0.0281 240.0000 241.4000 240.5000 0.3600 0.2800 0.2300 0.9800 0.9900 1.0000 0.8600 0.0800 运行 01225432
266 汇东国际3号配变交采 2012-09-25 00:00 0.2756 0.0844 0.1168 0.0744 -0.0736 -0.0196 -0.0280 -0.0260 240.1000 239.4000 239.9000 0.3600 0.5000 0.3300 0.9700 0.9700 0.9700 0.9400 0.0600 运行 01226786
267 香港花园4号配变交采 2012-09-25 00:00 0.1504 0.1246 0.0000 0.0258 -0.0681 -0.1590 0.0000 0.0909 225.8000 233.1000 219.4000 0.8900 0.0000 0.4300 0.0000 0.0000 0.0000 0.0000 0.4400 运行 01224979
268 倚林佳园3号配变交采 故障 01227738
269 拆迁办公室(祥宾路CD地块)配变交采 2012-09-25 00:00 0.5936 0.2001 0.1622 0.2315 0.1021 0.0357 0.0284 0.0380 240.3000 240.9000 240.0000 0.8700 0.7100 0.9900 0.9900 0.9800 0.9900 0.9900 0.5700 运行 01002350
270 沁景苑1号配变(华海)交采 2012-09-25 00:00 0.2041 0.0767 0.0744 0.0530 0.0365 0.0157 0.0107 0.0101 236.1000 236.7000 236.5000 0.3300 0.3100 0.2300 0.9800 0.9800 0.9900 0.9800 0.0300 运行 01225435
271 天广和1号配变(天广和房产)交采 2012-09-25 00:00 0.2840 0.0866 0.1021 0.0953 0.0205 0.0120 0.0031 0.0054 226.3000 226.0000 225.8000 0.4000 0.4500 0.4200 1.0000 0.9900 1.0000 1.0000 0.0200 运行 01201502
272 金湖帝景2号配变(安得房产)交采 2012-09-25 00:00 0.1793 0.0639 0.0635 0.0519 0.0086 0.0023 0.0109 0.0000 227.9000 227.7000 228.3000 0.2800 0.2800 0.2300 1.0000 1.0000 0.9900 1.0000 0.0000 运行 01226610
273 凤翔花园5号配变交采 2012-09-25 00:00 0.4408 0.1299 0.1966 0.1143 0.0050 0.0000 0.0000 0.0050 225.3000 225.4000 225.5000 0.5700 0.8700 0.5100 1.0000 1.0000 1.0000 1.0000 0.1000 运行 01228322
274 公务员小区1号配变交采 运行 01225431
275 凤翔花园1号配变交采 2012-09-25 00:00 0.2734 0.1336 0.1398 0.0000 0.0174 0.0081 0.0093 0.0000 225.6000 225.4000 0.0000 0.5900 0.6300 0.4600 1.0000 1.0000 1.0000 0.0000 0.2600 运行 01226209
276 双拥路4号公变交流采样 故障 01227691
277 中山路2号公变交流采样 2012-09-25 00:00 0.8966 0.2492 0.3099 0.3375 0.0848 0.0000 0.0000 0.0848 244.0000 244.6000 242.7000 1.0100 1.2700 1.4100 1.0000 1.0000 1.0000 0.9700 0.0800 故障 01200087
278 竹溪路4号公变交流采样 2012-09-25 00:00 0.2161 0.0594 0.0823 0.0750 0.0171 0.0067 0.0113 0.0013 232.7000 228.0000 232.3000 0.2700 0.3700 0.3300 1.0000 1.0000 0.9900 1.0000 0.2800 故障 01225661
279 南湖之都1号公变交流采样 2012-09-25 00:00 0.0448 0.0050 0.0179 0.0219 -0.0025 -0.0012 -0.0003 -0.0010 230.5000 230.0000 230.3000 0.0400 0.0800 0.1000 1.0000 1.0000 1.0000 1.0000 0.1100 故障 00017026
280 南湖之都2号公变交流采样 2012-09-25 00:00 0.1390 0.0453 0.0508 0.0425 0.0097 -0.0002 0.0081 0.0018 230.2000 229.8000 230.2000 0.2000 0.2300 0.1800 1.0000 1.0000 0.9900 1.0000 0.1600 故障 00017027
281 葛麻一、四组公变交采 2012-09-25 00:00 1.1233 0.3611 0.3925 0.3697 0.0991 0.0228 0.0529 0.0233 231.8000 231.5000 231.4000 1.5600 1.7100 1.6000 1.0000 1.0000 0.9900 1.0000 0.1900 运行 0160002309
282 琅东11、14组公变交采 2012-09-25 00:00 0.8147 0.2631 0.2454 0.3062 0.0100 0.0100 0.0000 0.0000 239.4000 239.8000 239.1000 1.1100 1.0300 1.2900 1.0000 1.0000 1.0000 1.0000 0.0600 运行 0160002310
283 荣和三组团1号配变(荣和)交采 2012-09-25 00:00 0.1653 0.0688 0.0429 0.0536 0.0156 0.0062 0.0046 0.0050 226.0000 226.0000 226.0000 0.3100 0.1800 0.2400 1.0000 1.0000 1.0000 1.0000 0.1900 运行 00075946
284 荣和三组团2号配变(荣和)交采 运行 00075947
285 荣和二组团1号配变(荣和)交采 运行 00075944
286 荣和五组团1号配变(荣和)交采 2012-09-25 00:00 0.3152 0.0813 0.1177 0.1170 0.0236 0.0098 0.0063 0.0076 226.9000 226.2000 226.6000 0.3600 0.5300 0.5300 1.0000 1.0000 1.0000 1.0000 0.3500 运行 00148854
287 荣和五组团2号配变(荣和)交采 2012-09-25 00:00 0.3052 0.0928 0.1071 0.1052 0.0320 0.0069 0.0141 0.0109 226.8000 227.1000 226.6000 0.4200 0.4800 0.4700 0.9900 1.0000 0.9900 1.0000 0.2500 运行 00148855
288 荣和五组团3号配变(荣和)交采 2012-09-25 00:00 0.2964 0.1012 0.0863 0.1090 0.0213 0.0116 0.0053 0.0045 226.0000 226.4000 225.7000 0.4600 0.3900 0.4900 1.0000 0.9900 1.0000 1.0000 0.2700 运行 00148856
289 荣和房产六组团1号配变(荣和)交采 2012-09-25 00:00 0.3151 0.1224 0.0983 0.0938 0.0239 0.0121 0.0063 0.0056 226.7000 226.3000 226.7000 0.5500 0.4400 0.4200 1.0000 1.0000 1.0000 1.0000 0.2600 运行 01201059
290 荣和房产六组团2号配变(荣和)交采 运行 01201060
291 荣和房产六组团3号配变(荣和)交采 运行 01201061
292 荣和房产六组团4号配变(荣和)交采 2012-09-25 00:00 0.2986 0.0953 0.0999 0.1042 0.0131 0.0040 0.0036 0.0054 226.0000 226.6000 226.9000 0.4300 0.4400 0.4700 1.0000 1.0000 1.0000 1.0000 0.2200 运行 01201062
293 香格里拉花园1号配变(聚源房产)交采 2012-09-25 00:00 0.1854 0.0701 0.0493 0.0661 0.0210 0.0114 0.0019 0.0078 222.0000 222.5000 223.6000 0.6400 0.4400 0.6000 0.9900 0.9900 1.0000 0.9900 0.3600 运行 -1111
294 香格里拉花园2号配变(聚源房产)交采 2012-09-25 00:00 0.1842 0.0779 0.0654 0.0410 0.0070 0.0042 -0.0008 0.0026 229.1000 228.6000 230.0000 0.3400 0.2900 0.1800 1.0000 1.0000 1.0000 1.0000 0.2900 运行 00215210
295 香格里拉花园3号配变(聚源房产)交采 2012-09-25 00:00 0.1785 0.0473 0.0598 0.0710 0.0138 0.0027 -0.0012 0.0105 233.6000 234.0000 234.7000 0.2100 0.2600 0.3100 1.0000 1.0000 1.0000 0.9900 0.2200 运行 00215211
296 香格里拉花园4号配变(聚源房产)交采 运行 00215212
297 香格里拉花园6号配变(聚源房产)交采 2012-09-25 00:00 0.1762 0.0593 0.0784 0.0384 0.0183 0.0076 0.0071 0.0036 234.6000 233.8000 235.4000 0.2600 0.3400 0.1600 1.0000 1.0000 1.0000 1.0000 0.2600 运行 00215213
298 香格里拉花园7号配变(聚源房产)交采 2012-09-25 00:00 0.3067 0.0939 0.1152 0.0981 0.0433 0.0101 0.0071 0.0260 223.3000 222.6000 223.9000 0.4300 0.5200 0.4600 0.9900 1.0000 1.0000 0.9700 0.2800 运行 00019879
299 香格里拉花园8号配变(聚源房产)交采 2012-09-25 00:00 0.1500 0.0495 0.0426 0.0579 0.0602 0.0223 0.0156 0.0230 234.9000 234.2000 235.4000 0.1900 0.1600 0.2100 0.9600 0.9800 0.9300 0.9900 0.1400 运行 00019880
300 香榭里一期3号配变(东方)交采 2012-09-25 00:00 0.2047 0.0643 0.0696 0.0713 0.0320 0.0090 0.0135 0.0093 231.6000 229.6000 231.0000 0.2800 0.3100 0.3100 0.9900 0.9900 0.9800 0.9900 0.1400 运行 00017102
301 香榭里花园6号配变交采 2012-09-25 00:00 0.2176 0.1516 0.0667 0.0000 0.0278 0.0176 0.0101 0.0000 218.1000 220.2000 219.7000 0.7000 0.3100 0.0000 0.9900 0.9900 0.9900 1.0000 0.6100 运行 00215247
302 香榭里一期1号配变(东方)交采 运行 00017100
303 香榭里花园4号配变交采 故障 00085138
304 香榭里一期2号配变(东方)交采 2012-09-25 00:00 0.2689 0.0770 0.1193 0.0725 0.0221 0.0022 0.0189 0.0010 221.0000 218.6000 220.5000 0.3500 0.5500 0.3300 1.0000 1.0000 0.9900 1.0000 0.3900 运行 00017101
305 教育路2号公变交采 2012-09-25 00:00 0.3504 0.1172 0.1321 0.1033 0.0220 0.0100 0.0066 0.0054 231.6000 231.5000 231.4000 0.5100 0.5800 0.4500 1.0000 1.0000 1.0000 1.0000 0.2700 故障 01003607
306 竹青苑配变(卓恒房产)交采 2012-09-25 00:00 0.3542 0.1127 0.1064 0.1346 0.0528 0.0154 0.0237 0.0137 235.8000 234.8000 234.6000 0.4900 0.4700 0.5900 0.9900 0.9900 0.9800 1.0000 0.3200 运行 00084295
307 南湖碧园10号配变(碧园)交采 运行 01225429
308 安友小区配变交采 2012-09-25 00:00 1.6643 0.5257 0.5771 0.5581 0.2211 0.0940 0.0768 0.0509 233.2000 232.7000 233.4000 2.3300 2.5500 2.4300 0.9900 0.9800 0.9900 1.0000 1.1500 运行 01700682
309 塞纳维拉花园2号配变(翠都房产)交采 运行 01200542
310 塞纳维拉花园1号配变(翠都房产)交采 运行 01200541
311 南湖碧园9号配变(碧园)交采 2012-09-25 00:00 0.1873 0.0656 0.0751 0.0465 0.0249 0.0093 0.0113 0.0043 229.5000 229.4000 229.1000 0.2900 0.3300 0.2100 0.9900 0.9900 0.9900 1.0000 0.2300 运行 01225428
312 山水花都秀竹花园2号配变(泛华)交采 2012-09-25 00:00 0.2211 0.0847 0.0573 0.0782 0.0389 0.0108 0.0117 0.0183 236.5000 236.5000 237.0000 0.3700 0.2500 0.3400 0.9900 0.9900 0.9900 0.9800 0.2600 运行 00141429
313 山水花都秀竹花园3号配变(泛华)交采 2012-09-25 00:00 0.0609 0.0647 0.0630 -0.0672 0.0037 0.0100 0.0052 -0.0120 236.5000 236.8000 236.2000 0.2800 0.2700 0.2900 1.0000 0.9900 1.0000 0.9900 0.5700 运行 00141428
314 韵景华庭配变终端交采 2012-09-25 00:00 0.4301 0.1404 0.1568 0.1331 0.0649 0.0182 0.0291 0.0181 225.9000 225.1000 225.2000 0.6300 0.7100 0.6000 0.9900 0.9900 0.9900 0.9900 0.3000 运行 01003417
315 青秀花园1号配变(地产业总公司)交采 2012-09-25 00:00 0.1961 0.0766 0.0865 0.0331 0.0264 0.0121 0.0040 0.0103 227.3000 226.9000 227.1000 0.3500 0.3900 0.1600 0.9900 0.9900 1.0000 0.9600 0.4000 运行 00000011
316 在水一方1号配变交采 2012-09-25 00:00 0.2244 0.0899 0.0597 0.0755 0.0067 0.0027 0.0032 0.0010 225.3000 225.7000 225.6000 0.4000 0.2700 0.3400 1.0000 1.0000 1.0000 1.0000 0.2700 运行 01228726
317 在水一方4号配变交采 运行 01228729
318 在水一方2号配变交采 运行 01228727
319 世纪家园配变(浩洋房地产)交采 2012-09-25 00:00 0.2045 0.0684 0.0729 0.0634 0.0409 0.0177 0.0142 0.0089 228.2000 227.7000 228.2000 0.3100 0.3300 0.2800 0.9800 0.9700 0.9800 0.9900 0.1600 运行 01003977
320 名都苑1号配变(港昌)交采 2012-09-25 00:00 0.0917 0.0252 0.0276 0.0389 -0.0548 -0.0213 -0.0203 -0.0130 227.0000 227.4000 226.5000 0.1500 0.1500 0.1800 0.8600 0.7700 0.8100 0.9500 0.1200 运行 01227144
321 欧景城市广场3号配变(万怡)交采 2012-09-25 00:00 0.2132 0.0628 0.0856 0.0650 0.0137 0.0042 0.0042 0.0053 227.3000 226.4000 226.6000 0.2800 0.3800 0.2900 1.0000 1.0000 1.0000 1.0000 0.2100 运行 01003689
322 香榭里花园5号配变交采 2012-09-25 00:00 0.1724 0.0550 0.0497 0.0677 0.0199 0.0062 0.0018 0.0119 219.6000 218.1000 219.3000 0.2500 0.2300 0.3200 0.9900 1.0000 1.0000 0.9900 0.1800 运行 00185505
323 锦光花苑1号配变交采 2012-09-25 00:00 0.0851 -0.0886 0.0952 0.0781 0.0117 -0.0166 0.0160 0.0124 238.2000 237.4000 237.7000 0.3800 0.4100 0.3400 0.9900 0.9800 0.9900 0.9900 0.7600 运行 00000017
324 人寿保险2号配变交采 2012-09-25 00:00 0.1759 0.0423 0.0744 0.0594 -0.0031 -0.0023 0.0024 -0.0033 227.8000 227.7000 227.5000 0.1900 0.3300 0.2600 1.0000 1.0000 1.0000 1.0000 0.2600 运行 01226872
325 锦光花苑2号配变交采 2012-09-25 00:00 0.2400 0.0898 0.0540 0.0964 0.0451 0.0164 0.0102 0.0184 238.6000 238.0000 237.5000 0.3900 0.2400 0.4200 0.9800 0.9800 0.9800 0.9800 0.3200 运行 00000018
326 右江花园配变交采 运行 0100002848
327 蓝山上城5号配变(华海)交采 2012-09-25 00:00 0.2845 0.1474 0.0611 0.0760 0.0273 0.0160 0.0131 -0.0018 224.8000 224.8000 运行 01226073
328 佳得鑫水晶城3号配变交采 2012-09-25 00:00 0.1807 0.0542 0.0877 0.0412 0.0258 0.0035 0.0251 -0.0027 233.0000 232.3000 233.0000 0.2400 0.3900 0.1800 1.0000 1.0000 0.9900 1.0000 0.3300 运行 01125517
329 蓝山上城4号配变(华海)交采 2012-09-25 00:00 0.2904 0.0763 0.1474 0.0665 -0.0012 -0.0003 0.0029 -0.0038 224.8000 224.5000 运行 01226074
330 蓝山上城6号配变(华海)交采 2012-09-25 00:00 0.2260 0.0942 0.0794 0.0524 0.0277 0.0226 0.0070 -0.0019 224.9000 224.8000 运行 01226072
331 和实水榭花都1号配变交采 2012-09-25 00:00 0.1991 0.0882 0.0568 0.0546 0.0136 0.0087 0.0012 0.0037 228.4000 227.9000 228.2000 0.3900 0.2500 0.2400 1.0000 1.0000 1.0000 1.0000 0.2700 运行 00184005
332 名都苑3号配变(港昌)交采 2012-09-25 00:00 0.0662 0.0257 0.0238 0.0166 0.0107 0.0042 0.0037 0.0026 231.0000 230.7000 232.1000 0.1100 0.1100 0.0700 0.9900 0.9900 1.0000 1.0000 0.0700 运行 01225439
333 名都苑2号配变(港昌)交采 2012-09-25 00:00 0.0775 0.0253 0.0281 0.0238 0.0006 -0.0065 0.0057 0.0013 226.7000 225.7000 226.1000 0.1200 0.1300 0.1000 1.0000 0.9800 0.9900 1.0000 0.1000 运行 01228049
334 和实水榭花都2号配变交采 2012-09-25 00:00 0.3051 0.1208 0.1055 0.0797 0.0554 0.0248 0.0175 0.0129 228.4000 227.5000 228.2000 0.5500 0.4900 0.3600 0.9800 0.9800 0.9900 0.9900 0.3500 运行 00184007
335 丽景豪庭2号配变交采 2012-09-25 00:00 0.2438 0.0876 0.1567 0.0000 0.0261 0.0090 0.0173 0.0000 236.2000 235.7000 236.0000 0.3800 0.6700 0.0000 1.0000 1.0000 0.9900 1.0000 0.5900 运行 01226474
336 丽景豪庭4号配变(中茵房产)交采 2012-09-25 00:00 0.3512 0.1325 0.1027 0.1129 0.0346 0.0177 0.0026 0.0139 236.7000 236.2000 236.1000 0.5600 0.4400 0.4900 1.0000 0.9900 1.0000 0.9900 0.3200 运行 01226476
337 丽景豪庭3号配变(中茵房产)交采 2012-09-25 00:00 0.3617 0.1678 0.0963 0.0975 0.0415 0.0192 0.0179 0.0044 236.7000 236.7000 237.0000 0.7200 0.4200 0.4100 0.9900 0.9900 0.9900 1.0000 0.4600 运行 01226475
338 丽景豪庭1号配变(中茵房产)交采 2012-09-25 00:00 0.4148 0.1725 0.1278 0.1143 0.0317 0.0154 0.0088 0.0074 237.3000 237.2000 237.4000 0.7300 0.5400 0.4800 0.9900 0.9900 0.9900 0.9900 0.0000 运行 01226473
339 山水花都秀竹花园1号配变(泛华)交采 运行 00141427
340 区二轻大院1号配变交采 2012-09-25 00:00 0.3123 0.1442 0.0881 0.0802 0.0768 0.0272 0.0244 0.0254 224.3000 224.5000 224.1000 0.6600 0.4100 0.3800 0.9700 0.9800 0.9600 0.9500 0.4900 运行 00019872
341 南湖碧园8号配变(碧园)交采 2012-09-25 00:00 0.2497 0.0881 0.0513 0.1107 0.0478 0.0162 0.0138 0.0179 228.8000 229.4000 229.3000 0.3900 0.2400 0.4900 0.9800 0.9800 0.9700 0.9900 0.3600 运行 01225427
342 南湖碧园7号配变(碧园)交采 2012-09-25 00:00 0.1225 0.0353 0.0672 0.0199 0.0311 -0.0412 0.0151 0.0571 230.0000 229.8000 228.4000 0.2400 0.3000 0.2700 0.9700 0.6500 0.9800 0.3300 0.5500 运行 01225426
343 区二轻大院3号配变交采 2012-09-25 00:00 0.2830 0.1149 0.0915 0.0767 0.0365 0.0165 0.0087 0.0112 224.8000 224.4000 225.4000 0.5200 0.4200 0.3400 0.9900 0.9900 1.0000 0.9900 0.3300 运行 00019874
344 金湖湾1号配变(金源房产)交采 运行 01003609
345 金湖湾2号配变(金源房产)交采 2012-09-25 00:00 0.1646 0.0482 0.0480 0.0684 0.0473 0.0125 0.0176 0.0171 236.0000 235.5000 235.8000 0.2100 0.2200 0.3000 0.9600 0.9700 0.9400 0.9700 0.1800 运行 01003610
346 药监局1号配变交采 2012-09-25 00:00 0.3119 0.1186 0.0783 0.1158 0.0821 0.0260 0.0240 0.0319 240.3000 239.7000 239.6000 0.5100 0.3500 0.5000 0.9700 0.9800 0.9600 0.9600 0.3200 运行 01200403
347 紫光阁配变(卓恒)交采 2012-09-25 00:00 0.1646 0.0426 0.0570 0.0647 0.0326 0.0103 0.0103 0.0119 232.7000 244.2000 251.4000 0.1900 0.2400 0.2600 0.9800 0.9800 0.9900 0.9800 0.1600 运行 01034953
348 南湖翠苑1号配变交采 2012-09-25 00:00 0.2430 0.0580 0.0824 0.1025 0.0379 0.0117 0.0130 0.0132 241.7000 241.9000 241.1000 0.2500 0.3500 0.4300 0.9900 0.9800 0.9900 0.9900 0.2900 运行 00151918
349 现代大厦1号配变(龙基置业)交采 2012-09-25 00:00 0.1206 0.0664 0.0291 0.0251 0.0278 0.0174 0.0031 0.0072 239.9000 240.9000 239.8000 0.2900 0.1300 0.1100 0.9700 0.9700 1.0000 0.9600 0.2900 运行 01226621
350 丰华利花苑配变交采 运行 01225608
351 佳得鑫水晶城4号配变交采 2012-09-25 00:00 0.1218 0.0384 0.0413 0.0426 0.0069 0.0012 0.0037 0.0020 233.2000 232.5000 232.4000 0.1700 0.1800 0.1900 1.0000 1.0000 1.0000 1.0000 0.1300 运行 01125518
352 佳得鑫水晶城1号配变交采 2012-09-25 00:00 0.2562 0.0954 0.0782 0.0837 0.0420 0.0170 0.0142 0.0108 232.6000 232.1000 232.4000 0.4200 0.3500 0.3700 0.9900 0.9900 0.9800 0.9900 0.2100 运行 01125515
353 展厦房产一户一表配变交采 2012-09-25 00:00 0.2003 0.0818 0.0445 0.0726 0.0012 0.0038 -0.0075 0.0049 225.0000 225.1000 224.8000 0.3700 0.2100 0.3300 1.0000 1.0000 0.9900 1.0000 0.3200 运行 01201562
354 北纬28号配变交采 2012-09-25 00:00 0.2763 0.1159 0.0944 0.0659 0.0532 0.0209 0.0149 0.0174 242.6000 242.9000 242.5000 0.5000 0.4000 0.2900 0.9800 0.9900 0.9900 0.9700 0.3100 运行 01059584
355 航洋国际2号配变交采 2012-09-25 00:00 0.0460 0.0162 0.0144 0.0154 -0.0030 0.0010 -0.0020 -0.0021 227.7000 227.5000 227.8000 0.0800 0.0700 0.0800 1.0000 1.0000 1.0000 1.0000 0.0900 运行 01228195
356 现代大厦2号配变(龙基置业)交采 运行 01226622
357 佳得鑫水晶城2号配变交采 2012-09-25 00:00 0.1680 0.0725 0.0638 0.0316 0.0545 0.0265 0.0158 0.0120 232.3000 232.2000 232.3000 0.3400 0.2900 0.1500 0.9500 0.9400 0.9700 0.9400 0.3100 运行 01125516
358 蓝山上城3号配变(华海)交采 运行 01226075
359 蓝山上城2号配变(华海)交采 运行 01226076
360 南湖景园3号配变(万昌)交采 2012-09-25 00:00 0.2264 0.0643 0.0806 0.0814 0.0131 0.0070 0.0046 0.0014 224.6000 224.8000 224.2000 0.2900 0.3600 0.3600 1.0000 1.0000 1.0000 1.0000 0.1800 运行 00249680
361 梦之岛花园3号配变(馨梦房产)交采 2012-09-25 00:00 0.1935 0.0715 0.0776 0.0443 -0.0070 -0.0080 0.0017 -0.0006 225.7000 225.3000 运行 01200616
362 梦之岛花园2号配变(馨梦房产)交采 2012-09-25 00:00 0.1391 0.0745 0.0000 0.0646 0.0085 0.0025 0.0000 0.0061 224.8000 224.4000 224.9000 0.3400 0.0000 0.2900 1.0000 1.0000 1.0000 1.0000 0.4800 运行 01200615
363 蓝山上城1号配变(华海)交采 运行 01226077
364 南湖景园4号配变(万昌)交采 2012-09-25 00:00 0.2467 0.0760 0.0833 0.0898 0.0143 0.0013 0.0032 0.0098 224.6000 224.4000 224.2000 0.3400 0.3700 0.4100 1.0000 1.0000 1.0000 1.0000 0.2100 运行 00249677
365 梦之岛花园1号配变(馨梦房产)交采 2012-09-25 00:00 0.1840 0.0787 0.0481 0.0572 0.0037 0.0042 -0.0002 -0.0003 225.6000 225.6000 运行 01200614
366 南湖景园2号配变(万昌)交采 2012-09-25 00:00 0.1826 0.0576 0.0681 0.0567 0.0102 0.0033 0.0039 0.0028 224.7000 224.6000 224.1000 0.2500 0.3000 0.2600 1.0000 1.0000 1.0000 1.0000 0.1700 运行 00249678
367 南湖景园1号配变(万昌)交采 运行 00249679
368 钻石年代2号配变(春之草房产)交采 2012-09-25 00:00 0.3163 0.1384 0.1179 0.0599 0.0491 0.0176 0.0166 0.0149 234.8000 233.2000 234.3000 0.6000 0.5200 0.2700 0.9900 0.9900 0.9900 0.9700 0.0700 运行 01227040
369 金花茶花苑1号配变交采 2012-09-25 00:00 0.1681 0.0587 0.0409 0.0682 0.0165 0.0041 0.0055 0.0068 246.2000 243.2000 238.1000 0.2400 0.1700 0.2900 1.0000 1.0000 1.0000 1.0000 0.2100 运行 01225510
370 金水房产金鑫楼配变交采 运行 01225651
371 七星路2号公变交采 2012-09-25 00:00 0.7684 0.3600 0.1915 0.2169 0.0205 0.0000 0.0205 0.0000 232.2000 232.4000 231.5000 1.5600 0.8400 0.9500 1.0000 1.0000 0.9900 1.0000 0.2000 故障 01701820
372 外事办广园路配变交采 2012-09-25 00:00 0.3560 0.1080 0.1013 0.1466 0.0532 0.0099 0.0348 0.0085 243.4000 242.6000 243.3000 0.4500 0.4400 0.6100 0.9900 1.0000 0.9500 1.0000 0.4400 运行 01700460
373 幸福家园2号配变(世纪顺鑫)交采 2012-09-25 00:00 0.2069 0.0622 0.0748 0.0703 0.0243 0.0078 0.0053 0.0113 231.6000 230.8000 231.4000 0.2800 0.3300 0.3100 0.9900 0.9900 1.0000 0.9900 0.2300 故障 00085185
374 平湖花园1号配变交采 2012-09-25 00:00 0.1915 0.0003 0.1114 0.0797 0.0209 -0.0004 0.0160 0.0052 229.5000 229.0000 229.1000 0.0100 0.5000 0.3600 0.9900 1.0000 0.9900 1.0000 0.4900 故障 00082586
375 方园公寓二区1号配变交采 2012-09-25 00:00 0.2513 0.1797 0.0016 0.0699 -0.0450 0.0331 0.0003 -0.0786 239.1000 240.4000 运行 01225512
376 华亿大厦1号配变交采 2012-09-25 00:00 0.2757 0.0935 0.0887 0.0933 0.0341 0.0135 0.0075 0.0132 228.8000 228.9000 229.8000 0.4200 0.3900 0.4100 0.9900 0.9900 1.0000 0.9900 0.2200 运行 00085180
377 美路庭园1号配变交采 2012-09-25 00:00 0.1779 0.0863 0.0559 0.0358 0.0338 0.0169 0.0085 0.0081 238.5000 239.0000 239.2000 0.3700 0.2400 0.1600 0.9800 0.9800 0.9900 0.9800 0.3100 运行 01125568
378 钻石年代1号配变(春之草房产)交采 2012-09-25 00:00 0.1907 0.0980 0.0520 0.0409 0.0353 0.0154 0.0122 0.0078 234.9000 233.6000 234.7000 0.4300 0.2300 0.1800 0.9800 0.9900 0.9800 0.9900 0.3500 运行 01227032
379 龙凤庭配变交采 2012-09-25 00:00 0.2854 0.0988 0.1115 0.0746 0.0336 0.0087 0.0082 0.0165 237.0000 236.7000 237.1000 0.4300 0.4800 0.3200 0.9900 1.0000 1.0000 0.9800 0.3200 运行 0100002760
380 青年国际4号配变(龙基)交采 运行 00018766
381 南湖碧园4号配变(碧园)交采 2012-09-25 00:00 0.2678 0.0878 0.1043 0.0757 0.0249 0.0056 0.0147 0.0045 229.9000 230.0000 运行 01225423
382 泸桂园中楼1号配变交采 运行 01225509
383 润华2号配变(润华)交采 2012-09-25 00:00 0.1778 0.0383 0.0599 0.0796 0.0064 0.0004 0.0024 0.0035 226.9000 227.2000 226.6000 0.1700 0.2700 0.3600 1.0000 1.0000 1.0000 1.0000 0.2600 运行 00281485
384 佳运公寓配变交采 运行 01225438
385 骏景苑1号配变交采 2012-09-25 00:00 0.4468 0.1456 0.1752 0.1258 0.0830 0.0369 0.0113 0.0348 237.7000 237.2000 237.3000 0.6400 0.7500 0.5500 0.9800 0.9700 1.0000 0.9600 0.4400 运行 01000213
386 在水一方5号配变交采 2012-09-25 00:00 0.2095 0.0785 0.0763 0.0546 0.0127 0.0070 0.0018 0.0037 225.2000 224.8000 225.6000 0.3600 0.3400 0.2500 1.0000 1.0000 1.0000 1.0000 0.2800 运行 01228730
387 在水一方3号配变交采 2012-09-25 00:00 0.1638 0.0494 0.0579 0.0564 0.0126 0.0033 0.0000 0.0093 225.9000 224.6000 225.1000 0.2200 0.2600 0.2500 1.0000 1.0000 1.0000 0.9900 0.0100 运行 01228728
388 金源配变(金源房产)交采 2012-09-25 00:00 0.3739 0.1464 0.1086 0.1195 0.0221 0.0027 0.0081 0.0114 226.7000 226.2000 226.2000 0.6500 0.4900 0.5300 1.0000 1.0000 1.0000 1.0000 0.3700 运行 00085952
389 润华1号配变(润华)交采 2012-09-25 00:00 0.2025 0.0361 0.0931 0.0735 -0.0321 -0.0127 -0.0101 -0.0091 227.4000 226.7000 226.9000 0.1700 0.4200 0.3300 0.9900 0.9500 0.9900 0.9900 0.3800 运行 00281484
390 半山丽园1号配变交采 2012-09-25 00:00 0.1451 0.0398 0.0534 0.0518 0.0146 0.0030 0.0054 0.0061 239.0000 238.5000 238.5000 0.1700 0.2300 0.2200 1.0000 1.0000 1.0000 0.9900 0.1400 运行 01002097
391 和美春天1号配变交采 2012-09-25 00:00 0.2018 0.0753 0.0743 0.0522 0.0157 0.0107 0.0001 0.0050 225.2000 225.0000 225.1000 0.3400 0.3400 0.2400 1.0000 0.9900 1.0000 1.0000 0.3100 运行 01200539
392 和美春天2号配变交采 2012-09-25 00:00 0.0951 0.0346 0.0277 0.0327 -0.0024 0.0001 -0.0048 0.0024 225.0000 224.4000 225.3000 0.1600 0.1300 0.1500 1.0000 1.0000 1.0000 1.0000 0.1400 运行 01200540
393 和美春天3号配变交采 2012-09-25 00:00 0.1475 0.0783 0.0202 0.0489 0.0424 0.0299 -0.0009 0.0135 235.6000 235.7000 236.2000 0.3600 0.0900 0.2200 0.9600 0.9400 1.0000 0.9600 0.3600 运行 01201837
394 半山丽园5号配变交采 2012-09-25 00:00 0.1753 0.0559 0.0665 0.0528 -0.0010 -0.0008 0.0012 -0.0014 226.8000 226.1000 226.6000 0.2500 0.3000 0.2300 1.0000 1.0000 1.0000 1.0000 0.1700 运行 00051977
395 半岛香格里拉2号配变(泓和房产)交采 2012-09-25 00:00 0.2307 0.0552 0.0933 0.0821 0.0097 0.0050 -0.0018 0.0065 231.5000 230.6000 230.4000 0.2400 0.4100 0.3600 1.0000 1.0000 1.0000 1.0000 0.2900 运行 01227880
396 半山丽园2号配变交采 2012-09-25 00:00 0.1329 0.0000 0.0607 0.0725 0.0110 0.0000 0.0074 0.0035 227.0000 227.2000 227.6000 0.0000 0.2700 0.3200 1.0000 1.0000 0.9900 1.0000 0.4600 运行 00215205
397 半岛香格里拉1号配变交采 2012-09-25 00:00 0.3290 0.1203 0.1199 0.0869 0.0053 0.0076 -0.0002 -0.0023 225.1000 225.3000 224.8000 0.5400 0.5400 0.3900 1.0000 1.0000 1.0000 1.0000 0.4500 运行 00086656
398 新竹路北二里1号配变交采 2012-09-25 00:00 0.2701 0.0666 0.1267 0.0777 0.0536 0.0068 0.0378 0.0098 230.4000 229.2000 230.1000 0.3000 0.5800 0.3600 0.9800 1.0000 0.9600 0.9900 0.3600 运行 01225573
399 市人民检察院配变交采 运行 01100142
400 祥宾路南供宿舍配变交采 2012-09-25 00:00 0.0976 0.0011 0.0985 -0.0020 0.0011 -0.0012 0.0027 -0.0004 0.0000 227.8000 0.0000 0.3200 0.4400 0.3900 1.0000 1.0000 1.0000 1.0000 0.2100 运行 00086076
401 南湖碧园6号配变(碧园)交采 2012-09-25 00:00 0.2174 0.1048 0.0938 0.0190 0.0167 0.0091 0.0052 0.0024 229.1000 229.0000 229.1000 0.4600 0.4100 0.0900 1.0000 1.0000 1.0000 1.0000 0.3600 运行 01225425
402 万昌溪园1号配变交采 运行 01225563
403 凤和花园配变交采 2012-09-25 00:00 0.2670 0.0805 0.0961 0.0913 0.0146 0.0024 -0.0022 0.0148 224.9000 224.1000 224.5000 0.3600 0.4300 0.4300 1.0000 1.0000 1.0000 1.0000 0.0100 运行 01227700
404 南湖碧园5号配变(碧园)交采 2012-09-25 00:00 0.2643 0.0778 0.1103 0.0768 0.0444 0.0179 0.0180 0.0084 229.0000 229.1000 228.8000 0.3500 0.4900 0.3400 0.9900 0.9800 0.9900 1.0000 0.2100 运行 01225424
405 丝绸公司1号配变交采 2012-09-25 00:00 0.1938 0.0806 0.0480 0.0654 0.0313 0.0140 0.0103 0.0072 221.7000 222.6000 222.1000 0.3700 0.2200 0.3000 0.9900 0.9900 0.9900 1.0000 0.2100 运行 00020116
406 时代公寓配变交采 2012-09-25 00:00 0.1918 0.0464 0.0558 0.0897 0.0275 0.0053 0.0060 0.0161 232.8000 228.6000 227.5000 0.2100 0.2500 0.4100 0.9900 1.0000 0.9900 0.9900 0.3300 运行 01225566
407 建行园湖支行配变交采 2012-09-25 00:00 0.2565 0.0519 0.0914 0.1132 0.0630 0.0183 0.0129 0.0317 241.7000 241.1000 241.3000 0.2300 0.3900 0.4900 0.9700 0.9400 0.9900 0.9600 0.3200 运行 01201239
408 青年国际1号配变(龙基)交采 运行 00018763
409 幸福家园1号配变(世纪顺鑫)交采 运行 01226283
410 竹苑二区1号配变交采 2012-09-25 00:00 0.2043 0.0891 0.0584 0.0567 0.0177 0.0054 0.0134 -0.0010 222.1000 221.0000 224.1000 0.4100 0.2800 0.2600 1.0000 1.0000 0.9800 1.0000 0.3500 运行 01225636
411 南湖国际2号配变(九鼎房产)交采 运行 00207994
412 华业园1号配变交采 2012-09-25 00:00 0.3138 0.1341 0.1067 0.0736 -0.0088 -0.0006 0.0124 -0.0204 225.2000 224.8000 225.3000 0.6000 0.4800 0.3400 1.0000 1.0000 1.0000 0.9700 0.3200 运行 00020098
413 左岸青园1号配变交采 2012-09-25 00:00 0.3240 0.1290 0.0881 0.1063 0.0374 0.0114 0.0164 0.0101 226.2000 226.0000 226.2000 0.5700 0.4000 0.4700 0.9900 1.0000 0.9800 1.0000 0.3200 运行 00085183
414 南湖国际1号配变(九鼎房产)交采 2012-09-25 00:00 0.0921 -0.0519 0.0817 0.0616 0.0835 0.0647 0.0118 0.0071 240.8000 240.6000 240.9000 0.3500 0.3500 0.2600 0.7500 0.6300 0.9900 1.0000 0.2400 运行 00207993
415 市工业供销公司1号配变交采 2012-09-25 00:00 0.2034 0.1269 0.0415 0.0351 0.0341 0.0145 0.0309 -0.0113 238.3000 238.9000 243.1000 0.5500 0.2200 0.1600 0.9900 0.9900 0.8000 0.9600 0.5700 运行 01225567
416 逸景园小区1号配变(斯壮物业)交采 2012-09-25 00:00 0.1117 0.1369 -0.1000 0.0745 0.0420 0.0244 -0.0118 0.0294 230.1000 230.1000 229.5000 0.6100 0.4400 0.3500 0.9400 0.9900 0.9900 0.9300 1.0000 运行 01225441
417 中鼎温馨家园2号配变交采 2012-09-25 00:00 0.3005 0.0959 0.1095 0.0940 0.0804 0.0240 0.0268 0.0297 229.6000 230.2000 229.4000 0.4300 0.4900 0.4300 0.9700 0.9700 0.9700 0.9500 0.2400 运行 00018630
418 凤岭商住小区1号配变交采 2012-09-25 00:00 0.2493 0.0791 0.1011 0.0692 0.0260 -0.0031 0.0098 0.0197 227.3000 226.1000 226.4000 0.3500 0.4500 0.3200 0.9900 1.0000 1.0000 0.9600 0.1600 运行 00020387
419 凤岭商住小区2号配变交采 2012-09-25 00:00 0.1106 0.0242 0.0341 0.0525 0.0015 -0.0001 -0.0018 0.0033 226.9000 226.7000 226.7000 0.1100 0.1500 0.2300 1.0000 1.0000 1.0000 1.0000 0.1700 运行 00020388
420 中鼎温馨家园1号配变交采 2012-09-25 00:00 0.1913 0.0555 0.0806 0.0550 -0.0126 0.0010 -0.0034 -0.0097 230.3000 229.7000 229.7000 0.2400 0.3500 0.2400 1.0000 1.0000 1.0000 0.9900 0.1800 运行 01002449
421 逸景园小区2号配变(斯壮物业)交采 2012-09-25 00:00 0.2158 0.0964 0.0786 0.0408 0.0254 0.0146 0.0113 -0.0006 229.8000 230.0000 230.7000 0.4300 0.3500 0.1800 0.9900 0.9900 0.9900 1.0000 0.3500 运行 01225442
422 中鼎温馨家园3号配变交采 运行 01000871
423 南湖聚宝苑配变交采 运行 01000324
424 逸景园小区3号配变(斯壮物业)交采 2012-09-25 00:00 0.2356 0.1111 0.0758 0.0489 0.0391 0.0195 0.0129 0.0067 230.3000 230.0000 229.9000 0.5000 0.3400 0.2200 0.9900 0.9900 0.9900 1.0000 0.3900 运行 01225443
425 青年国际2号配变(龙基)交采 运行 00018764
426 三元苑1号配变交采 2012-09-25 00:00 0.0922 0.0355 0.0164 0.0404 0.0204 0.0151 -0.0012 0.0064 242.9000 243.5000 241.7000 0.1600 0.0800 0.1800 0.9800 0.9200 1.0000 0.9900 0.1800 运行 01225513
427 凯丰大厦配变交采 2012-09-25 00:00 0.1321 0.0523 0.0624 0.0174 0.0229 0.0077 0.0159 -0.0008 237.2000 236.2000 237.0000 0.2300 0.2900 0.0800 0.9900 0.9900 0.9700 1.0000 0.2800 运行 01059544
428 蓝天小区1号配变交采 2012-09-25 00:00 0.0857 0.0886 0.0555 -0.0579 0.0088 0.0078 0.0049 -0.0041 226.8000 226.5000 226.9000 0.4000 0.2500 0.2600 0.9900 1.0000 1.0000 1.0000 0.6000 运行 01200642
429 三元苑2号配变交采 2012-09-25 00:00 0.0729 0.0275 0.0099 0.0354 0.0311 -0.0327 0.0493 0.0145 230.3000 230.4000 230.1000 0.1900 0.2200 0.1700 0.9200 0.6400 0.2000 0.9300 0.3900 运行 01225525
430 中行香江花园1号配变(中行)交采 运行 00086112
431 区政府新民宿舍配变交采 2012-09-25 00:00 0.0001 0.0000 0.0000 0.0001 -0.0002 -0.0001 -0.0001 0.0000 231.8000 232.0000 231.8000 0.0000 0.0000 0.0000 0.6200 1.0000 1.0000 1.0000 0.0100 运行 01700418
432 中行香江花园2号配变(中行)交采 运行 00086113
433 市土地管理局配变交采 2012-09-25 00:00 0.2345 0.0862 0.0618 0.0869 0.0620 0.0173 0.0213 0.0233 224.0000 223.3000 219.3000 0.3900 0.3000 0.4100 0.9700 0.9800 0.9500 0.9700 0.2700 运行 01124356
434 国土资源局1号配变交采 2012-09-25 00:00 0.1977 0.0640 0.0649 0.0688 0.0212 0.0040 0.0015 0.0156 242.9000 242.5000 242.8000 0.2800 0.2800 0.3000 0.9900 1.0000 1.0000 0.9800 0.2600 运行 01101251
435 广电技术配变交采 2012-09-25 00:00 0.2035 0.0710 0.0578 0.0741 -0.0045 -0.0016 -0.0087 0.0058 231.3000 231.2000 230.3000 0.3100 0.2600 0.3300 1.0000 1.0000 0.9900 1.0000 0.2200 运行 01000947
436 区林化工业公司1号配变交采 2012-09-25 00:00 0.2157 0.0925 0.0578 0.0656 0.0257 0.0079 0.0093 0.0085 222.0000 224.6000 222.0000 0.4300 0.2700 0.3100 0.9900 1.0000 0.9900 0.9900 0.3400 运行 01225571
437 园湖苑配变交采 2012-09-25 00:00 0.1617 0.0788 0.0566 0.0263 0.0093 0.0000 0.0071 0.0021 231.8000 231.6000 230.6000 0.3500 0.2500 0.1200 1.0000 1.0000 0.9900 1.0000 0.3000 运行 01228854
438 方洲公寓1号配变交采 2012-09-25 00:00 0.1418 0.0381 0.0549 0.0487 0.0565 0.0161 0.0231 0.0172 237.8000 237.6000 运行 01225381
439 荣和二组团2号配变(荣和)交采 运行 00075945
440 沁景苑2号配变交采 2012-09-25 00:00 0.2228 0.0000 0.1049 0.1179 0.0358 0.0000 0.0115 0.0243 240.0000 240.7000 239.2000 0.0000 0.4400 0.5000 0.9900 0.0000 0.9900 0.9800 0.1400 运行 01225436
441 明湖花园配变交采 2012-09-25 00:00 0.3023 0.0932 0.0901 0.1194 0.0839 0.0310 0.0248 0.0280 226.5000 224.2000 224.1000 0.4400 0.4200 0.5500 0.9600 0.9500 0.9600 0.9700 0.2500 运行 01225382
442 新新家园8号配变(房产总公司)交采 2012-09-25 00:00 0.4276 0.1579 0.1417 0.1464 0.0159 0.0052 0.0124 -0.0019 225.1000 224.9000 225.1000 0.6800 0.6400 0.6600 1.0000 1.0000 1.0000 1.0000 0.4600 运行 01226612
443 新新家园9号配变(房产总公司)交采 2012-09-25 00:00 0.2952 0.0910 0.0880 0.1159 -0.0092 -0.0081 -0.0004 -0.0008 226.0000 225.6000 225.7000 0.4100 0.3900 0.5200 1.0000 1.0000 1.0000 1.0000 0.3100 运行 01226614
444 南湖明珠1号配变(浩洋房产)交采 2012-09-25 00:00 0.1799 0.0673 0.0793 0.0336 0.0279 0.0116 0.0106 0.0056 221.9000 224.7000 226.0000 0.3100 0.3600 0.1500 0.9900 0.9900 0.9900 0.9900 0.3100 运行 01225564
445 都市100配变交采 2012-09-25 00:00 0.3213 0.0983 0.1183 0.1057 0.0335 0.0086 0.0107 0.0140 226.3000 225.9000 224.8000 0.4400 0.5300 0.4700 0.9900 1.0000 1.0000 0.9900 0.2900 运行 00017028
446 区卫生厅1号配变交采 2012-09-25 00:00 0.3485 0.1505 0.0959 0.1021 0.0545 0.0183 0.0249 0.0111 223.2000 224.4000 224.2000 1.3700 0.8900 0.9300 0.9900 0.9900 0.9700 0.9900 0.5800 运行 01225632
447 嘉园小区2号配变交采 2012-09-25 00:00 0.0365 0.0183 0.0085 0.0096 -0.0041 0.0001 -0.0073 0.0033 236.6000 237.1000 235.4000 0.1100 0.0600 0.0600 0.9900 1.0000 0.7700 1.0000 0.1500 运行 01225517
448 嘉园小区3号配变交采 2012-09-25 00:00 0.2079 0.0748 0.0556 0.0776 -0.0335 0.0186 -0.0615 0.0094 231.0000 230.9000 231.5000 0.3400 0.3700 0.3400 0.9900 0.9700 0.6800 0.9900 0.3900 运行 01225518
449 嘉园小区4号配变交采 运行 01000124
450 星和园1号配变交采 2012-09-25 00:00 0.3155 0.1144 0.1128 0.0907 0.0572 0.0341 0.0131 0.0099 242.1000 242.2000 241.8000 0.5000 0.4700 0.3800 0.9800 0.9600 0.9900 0.9900 0.4000 运行 01225507
451 嘉园小区1号配变交采 2012-09-25 00:00 0.2159 0.1002 0.0980 0.0181 0.0201 0.0252 -0.0097 0.0044 233.9000 233.7000 241.1000 0.4500 0.4300 0.0800 1.0000 0.9700 1.0000 0.9900 0.4900 运行 01225515
452 星和园2号配变交采 2012-09-25 00:00 0.3291 0.1125 0.1069 0.1094 0.0788 0.0300 0.0203 0.0285 242.6000 242.4000 242.1000 0.4800 0.4500 0.4700 0.9700 0.9700 0.9800 0.9700 0.2600 运行 01225508
453 大自然花园2号配变交采 2012-09-25 00:00 0.4238 0.1474 0.1549 0.1215 0.0247 0.0079 0.0045 0.0123 227.9000 227.4000 228.4000 0.6000 0.6300 0.4900 1.0000 1.0000 1.0000 0.9900 0.0400 运行 00051813
454 东升阁配变交采 2012-09-25 00:00 0.1526 0.0533 0.0430 0.0575 0.0164 0.0048 0.0016 0.0098 237.8000 237.7000 237.8000 0.2300 0.1800 0.2500 0.9900 1.0000 1.0000 0.9900 0.1800 运行 01125506
455 东坡阁配变交采 2012-09-25 00:00 0.1950 0.0618 0.0663 0.0669 0.0136 0.0024 0.0060 0.0051 237.9000 237.1000 237.4000 0.2600 0.2800 0.2900 1.0000 1.0000 1.0000 1.0000 0.1800 运行 01125507
456 东日阁配变交采 运行 01003688
457 龙晴庭配变(中房翡翠园)交采 2012-09-25 00:00 0.3564 0.1161 0.0770 0.1632 0.0302 0.0125 -0.0072 0.0248 226.1000 226.3000 运行 01003294
458 龙吟庭配变(中房翡翠园)交采 2012-09-25 00:00 0.2534 0.0938 0.0633 0.0964 0.0227 0.0109 0.0060 0.0055 238.0000 238.0000 237.1000 0.4000 0.2700 0.4100 1.0000 0.9900 1.0000 1.0000 0.2900 运行 01200602
459 拥湖庭配变(中房翡翠园)交采 2012-09-25 00:00 0.2331 0.0699 0.0709 0.0934 0.0151 0.0083 0.0062 0.0007 238.0000 238.9000 238.2000 0.3000 0.3000 0.3900 1.0000 0.9900 1.0000 1.0000 0.2500 运行 01226178
460 西星阁配变(中房翡翠园)交采 2012-09-25 00:00 0.2534 0.0781 0.0904 0.0848 0.0345 0.0025 0.0183 0.0134 237.4000 236.9000 237.3000 0.3400 0.3900 0.3700 0.9900 1.0000 0.9800 0.9900 0.2600 运行 01200868
461 西云阁配变(中房翡翠园)交采 2012-09-25 00:00 0.1993 0.0708 0.0763 0.0523 0.0267 0.0194 0.0012 0.0056 237.2000 236.6000 237.3000 0.3100 0.3100 0.2200 0.9900 0.9600 1.0000 1.0000 0.2900 运行 01200869
462 大自然花园4号配变交采 2012-09-25 00:00 0.3413 0.1160 0.1142 0.1111 0.0293 0.0133 0.0046 0.0113 226.4000 226.9000 226.0000 0.5300 0.5200 0.5100 1.0000 0.9900 1.0000 1.0000 0.2400 运行 01200720
463 大自然花园3号配变交采 2012-09-25 00:00 0.1065 0.0281 0.0396 0.0385 0.0088 0.0005 0.0007 0.0075 238.5000 238.9000 238.6000 0.1200 0.1700 0.1700 1.0000 1.0000 1.0000 0.9900 0.1300 运行 01003699
464 美路庭园2号配变(交通房产)交采 2012-09-25 00:00 0.0110 0.0628 -0.0928 0.0411 -0.0092 0.0058 -0.0183 0.0034 238.8000 237.9000 238.7000 0.2700 0.4000 0.1800 0.7600 1.0000 0.9800 1.0000 0.6300 运行 01125569
465 机械厅1号配变交采 2012-09-25 00:00 0.2039 0.0842 0.0651 0.0544 0.0318 0.0161 0.0115 0.0042 226.9000 227.0000 227.2000 0.3800 0.2900 0.2400 0.9900 0.9800 0.9900 1.0000 0.2600 运行 01225561
466 恒龙花园配变交采 2012-09-25 00:00 0.3503 0.1135 0.1429 0.0939 0.0409 0.0075 0.0197 0.0140 230.7000 230.2000 230.2000 0.5000 0.6300 0.4200 0.9900 1.0000 0.9900 0.9900 0.3500 运行 01225519
467 天成府1号配变交采 2012-09-25 00:00 0.3926 0.1374 0.1259 0.1292 0.0697 0.0230 0.0241 0.0230 230.3000 230.9000 229.6000 0.6100 0.5600 0.5700 0.9800 0.9900 0.9800 0.9800 0.2400 运行 01225520
468 安宇花园1号配变交采 2012-09-25 00:00 0.2283 0.0777 0.0670 0.0838 0.0470 0.0167 0.0127 0.0180 231.5000 231.3000 229.3000 0.3400 0.3000 0.3800 0.9800 0.9800 0.9800 0.9800 0.2200 运行 01225514
469 区生产资料总公司配变交采 2012-09-25 00:00 0.2217 0.0813 0.0705 0.0704 0.0666 0.0195 0.0359 0.0112 233.4000 232.4000 232.3000 0.3600 0.3500 0.3100 0.9600 0.9700 0.8900 0.9900 0.2600 运行 01225569
470 石油局2号配变交采 2012-09-25 00:00 0.2922 0.0743 0.1061 0.1122 0.0933 0.0242 0.0275 0.0415 241.2000 240.2000 239.8000 0.3300 0.4600 0.5000 0.9500 0.9500 0.9700 0.9400 0.4000 运行 01200777
471 石油局3号配变交采 2012-09-25 00:00 0.2811 0.0959 0.0909 0.0932 0.0599 0.0208 0.0218 0.0172 240.8000 240.5000 241.0000 0.4200 0.3900 0.4000 0.9800 0.9800 0.9700 0.9900 0.2500 运行
472 石油局4号配变交采 2012-09-25 00:00 0.3720 0.1317 0.1412 0.0992 0.0430 0.0200 0.0143 0.0092 228.6000 229.1000 228.8000 0.5900 0.6300 0.4400 0.9900 0.9900 1.0000 1.0000 0.4100 运行 01200779
473 宁阳大厦配变交采 2012-09-25 00:00 0.2327 0.1426 0.0000 0.0900 0.0222 0.0114 0.0000 0.0108 226.6000 226.4000 226.4000 0.6400 0.0000 0.4100 1.0000 1.0000 1.0000 0.9900 0.5900 运行 00149863
474 城市花园白领公寓1号配变交采 2012-09-25 00:00 0.4381 0.1026 0.1944 0.1413 0.0891 0.0251 0.0427 0.0213 223.3000 223.6000 224.0000 0.9400 1.8200 1.2800 0.9800 0.9700 0.9800 0.9900 0.9100 运行 01201029
475 城市花园白领公寓2号配变交采 2012-09-25 00:00 0.3535 0.1173 0.1131 0.1231 0.0504 0.0203 0.0135 0.0166 223.0000 224.0000 223.9000 1.0700 1.0200 1.1200 0.9900 0.9900 0.9900 0.9900 0.5000 运行 01201030
476 太平洋保险南宁分公司配变交采 2012-09-25 00:00 0.2620 0.0570 0.0763 0.1290 0.0510 0.0080 0.0187 0.0242 237.4000 242.2000 233.9000 0.2500 0.3300 0.5600 0.9800 0.9900 0.9700 0.9800 0.4200 运行 01124884
477 城市之光1号配变交采 2012-09-25 00:00 0.5152 0.1594 0.1956 0.1604 0.1400 0.0478 0.0504 0.0421 235.6000 236.5000 235.5000 0.7100 0.8700 0.7100 0.9600 0.9600 0.9700 0.9700 0.4900 运行 01001793
478 城市之光2号配变交采 运行 01001794
479 城市综合管理办公室配变交采 运行 01125248
480 泽峰苑1号配变(高峰房产)交采 运行 01225494
481 锦和花园配变(和基房产)交采 2012-09-25 00:00 0.2358 0.0640 0.0900 0.0822 0.0608 0.0118 0.0255 0.0234 235.8000 233.0000 235.2000 0.2800 0.4100 0.3700 0.9700 0.9900 0.9600 0.9600 0.2300 运行 01225644
482 金城苑配变(高峰房产)交采 2012-09-25 00:00 0.2820 0.1057 0.0909 0.0873 0.0458 0.0197 0.0134 0.0127 233.2000 236.4000 235.5000 0.9200 0.7800 0.7600 0.9900 0.9800 0.9900 0.9900 0.5000 运行 01225495
483 万町大厦配变交采 2012-09-25 00:00 0.1785 0.0869 0.0413 0.0503 0.0066 -0.0039 -0.0082 0.0169 235.7000 236.0000 235.6000 0.3700 0.1800 0.2300 1.0000 1.0000 0.9900 0.9500 0.1900 运行 01000864
484 武警水电第一总队配变交采 2012-09-25 00:00 0.2125 0.0778 0.0803 0.0549 0.0342 0.0133 0.0145 0.0062 232.3000 231.9000 232.4000 0.3400 0.3500 0.2400 0.9900 0.9900 0.9900 1.0000 0.2200 运行 01124671
485 通邑苑1号配变交采 2012-09-25 00:00 0.2421 0.0676 0.0852 0.0893 0.0310 0.0092 0.0055 0.0165 238.2000 238.7000 237.8000 0.2900 0.3700 0.3900 0.9900 0.9900 1.0000 0.9800 0.2700 运行 01000731
486 通邑苑2号配变交采 2012-09-25 00:00 0.2360 0.0879 0.0599 0.0889 0.0412 0.0136 0.0127 0.0151 238.5000 237.7000 238.0000 0.3700 0.2600 0.3800 0.9900 0.9900 0.9800 0.9900 0.2500 运行 01225505
487 通邑苑3号配变交采 测试 01225506
488 格兰云天配变交采 2012-09-25 00:00 0.3572 0.1382 0.1301 0.0892 0.0392 0.0219 0.0153 0.0017 226.3000 226.7000 226.7000 0.6200 0.5800 0.4000 0.9900 0.9900 0.9900 1.0000 0.4500 运行 01225618
489 明豪配变交采 2012-09-25 00:00 0.2481 0.0756 0.0879 0.0845 0.0726 0.0266 0.0141 0.0316 237.2000 238.7000 238.5000 0.6800 0.7500 0.7600 0.9600 0.9400 0.9900 0.9400 0.3800 运行 01002322
490 华星城住宅1号配变交采 2012-09-25 00:00 0.1705 0.0735 0.0406 0.0564 0.0219 0.0122 0.0052 0.0044 228.8000 228.7000 228.5000 0.3300 0.1800 0.2500 0.9900 0.9900 1.0000 1.0000 0.2200 运行 01225595
491 华星时代广场1号配变交采 2012-09-25 00:00 0.5597 0.2062 0.1755 0.1788 0.1049 0.0312 0.0430 0.0308 231.4000 230.9000 231.1000 0.9000 0.7800 0.7700 0.9800 0.9900 0.9700 0.9900 0.2400 运行 00017009
492 华星时代广场2号配变交采 2012-09-25 00:00 0.1206 0.0403 0.0404 0.0398 -0.0213 -0.0080 -0.0064 -0.0071 231.9000 231.3000 231.5000 0.1800 0.1800 0.1800 0.9900 0.9900 0.9900 0.9900 0.1500 运行 00017010
493 欧景城市广场2号配变(万怡)交采 2012-09-25 00:00 0.3417 0.1449 0.1459 0.0509 0.0307 0.0106 0.0148 0.0053 226.8000 226.1000 226.7000 0.6500 0.6600 0.2300 1.0000 1.0000 1.0000 1.0000 0.4600 运行 01003488
494 欧景城市广场1号配变(万怡)交采 2012-09-25 00:00 0.4138 0.1626 0.2247 0.0262 0.0433 0.0107 0.0288 0.0041 226.7000 226.1000 227.2000 0.7300 1.0100 0.1200 0.9900 1.0000 0.9900 1.0000 0.7700 运行 01003487
495 寓隆公寓配变(寓隆房地产)交采 2012-09-25 00:00 0.1758 0.0432 0.0507 0.0819 0.0191 0.0061 0.0040 0.0089 232.3000 231.0000 230.8000 0.1900 0.2200 0.3600 1.0000 0.9900 1.0000 1.0000 0.2700 运行 01067253
496 人寿保险1号配变交采 运行 01226871
497 富丽华庭1号配变(鼎巨)交采 2012-09-25 00:00 0.0509 -0.0882 0.0608 0.0796 0.0114 -0.0085 0.0053 0.0146 227.1000 226.7000 226.9000 0.4000 0.2700 0.3600 0.9800 1.0000 1.0000 0.9800 0.6800 运行 01225498
498 富丽华庭2号配变(鼎巨)交采 2012-09-25 00:00 0.2103 0.0728 0.0625 0.0749 0.0264 0.0135 0.0065 0.0063 227.5000 227.4000 运行 01225499
499 紫荆花园1号配变交采 2012-09-25 00:00 0.1887 0.0849 0.0592 0.0423 0.0346 0.0173 0.0105 0.0068 230.4000 229.1000 231.3000 0.3800 0.2700 0.1900 0.9800 0.9800 0.9900 0.9900 0.2800 运行 01225414
500 紫荆花园2号配变交采 2012-09-25 00:00 0.1179 0.0356 0.0298 0.0523 0.0244 0.0043 0.0072 0.0129 230.8000 229.3000 231.1000 0.1600 0.1300 0.2400 0.9800 1.0000 0.9800 0.9700 0.1800 运行 01225415
501 华星时代广场3号配变交采 运行 00017011
502 区粮食局配变交采 2012-09-25 00:00 0.4306 0.1704 0.1437 0.1168 0.0837 0.0244 0.0362 0.0237 234.2000 230.5000 238.1000 0.7600 0.6500 0.5300 0.9800 0.9900 0.9700 0.9800 0.4300 运行 01124422
503 城市花园4号配变交采 2012-09-25 00:00 0.4207 0.1329 0.1449 0.1428 0.0149 -0.0008 0.0057 0.0100 224.6000 225.0000 运行 01228535
504 春晖花园1号公变交采 2012-09-25 00:00 0.2432 0.0806 0.0800 0.0829 0.0097 0.0004 0.0058 0.0036 236.2000 235.9000 235.8000 0.3400 0.3400 0.3500 1.0000 1.0000 1.0000 1.0000 0.1900 故障 0100002223
505 春晖花园2号公变交采 2012-09-25 00:00 0.2258 0.0678 0.0913 0.0667 0.0115 0.0031 0.0068 0.0015 236.6000 235.1000 236.3000 0.2900 0.3900 0.2900 1.0000 1.0000 1.0000 1.0000 0.2300 故障 0100002224
506 春晖花园3号公变交采 2012-09-25 00:00 0.2693 0.0821 0.0804 0.1072 0.0105 0.0033 0.0024 0.0047 236.6000 235.6000 235.7000 0.3500 0.3500 0.4600 1.0000 1.0000 1.0000 1.0000 0.2800 故障 0100002225
507 春晖花园4号公变交采 2012-09-25 00:00 0.3561 0.1263 0.1494 0.0818 0.0105 0.0006 0.0100 -0.0002 236.6000 235.7000 236.1000 0.5400 0.6400 0.3500 1.0000 1.0000 1.0000 1.0000 0.3900 故障 0100002226
508 春晖花园B区1号配变交采 故障 0100002227
509 希尔顿1号配变交采 运行 01229871
510 希尔顿2号配变交采 2012-09-25 00:00 0.2788 0.1079 0.0992 0.0718 0.0221 0.0084 0.0133 0.0004 226.1000 225.8000 225.7000 0.4800 0.4400 0.3200 1.0000 1.0000 0.9900 1.0000 0.2200 运行 01229872
511 民航民族1号配变交采 2012-09-25 00:00 0.3516 0.1231 0.1319 0.0957 0.0765 0.0247 0.0244 0.0274 229.7000 231.2000 230.4000 1.1000 1.1700 0.8700 0.9800 0.9800 0.9800 0.9600 0.4700 运行 00248188
512 航洋国际1号配变交采 2012-09-25 00:00 0.1034 0.0393 0.0364 0.0309 0.0183 0.0041 0.0092 0.0049 228.1000 227.7000 228.3000 0.1800 0.1700 0.1400 0.9900 1.0000 0.9700 0.9900 0.1500 运行 01228194
513 航洋国际4号配变交采 测试 01228197
514 市委统战部配变交采 2012-09-25 00:00 0.2392 0.0898 0.0833 0.0670 0.0110 0.0051 0.0031 0.0026 237.1000 236.9000 236.8000 0.3900 0.3600 0.2900 1.0000 1.0000 1.0000 1.0000 0.3000 运行 01226220
515 倚林佳园1号配变交采 2012-09-25 00:00 0.1723 0.0625 0.0404 0.0694 -0.0246 -0.0137 0.0039 -0.0148 227.8000 226.9000 227.4000 0.2900 0.1800 0.3200 0.9900 0.9800 1.0000 0.9800 0.3400 运行 01227736
516 倚林佳园4号配变交采 2012-09-25 00:00 0.1235 0.0338 0.0509 0.0390 -0.0207 -0.0042 0.0002 -0.0167 227.8000 228.2000 227.8000 0.1500 0.2300 0.1900 0.9900 1.0000 1.0000 0.9200 0.2400 运行 01227739
517 倚林佳园2号配变交采 2012-09-25 00:00 0.2670 0.1240 0.0700 0.0778 0.0185 0.0075 0.0100 0.0014 227.3000 227.0000 227.2000 0.5500 0.3200 0.3500 1.0000 1.0000 0.9900 1.0000 0.4000 运行 01227737
518 荣和四组团1号配变交采 运行
519 荣和四组团2号配变交采 2012-09-25 00:00 0.2774 0.1059 0.1094 0.0648 0.0155 0.0070 0.0052 0.0037 226.2000 225.8000 226.4000 0.4700 0.4900 0.2900 1.0000 1.0000 1.0000 1.0000 0.3500 运行
520 荣和四组团3号配变交采 运行
521 荣和四组团4号配变交采 运行
522 荣和四组团5号配变交采 运行
523 中国银行1号配变交采 运行 00019227
524 铭湖经典配变交采 运行 01003505
525 东林阁配变(沪桂)交采 运行 00020228
526 凤翔花园4号配变交采 2012-09-25 00:00 0.2334 0.0765 0.0976 0.0592 0.0174 0.0052 0.0089 0.0032 236.1000 235.8000 运行 01228323
527 领东尚层配变交采 2012-09-25 00:00 0.2694 0.0965 0.1047 0.0679 0.0565 0.0310 0.0152 0.0103 224.5000 224.9000 224.8000 0.4500 0.4700 0.3100 0.9800 0.9500 0.9900 0.9900 0.3600 运行 0100002071
528 拆迁办公室(祥宾路AB地块)配变交采 2012-09-25 00:00 0.9603 0.2778 0.2618 0.4207 0.1241 0.0391 0.0287 0.0563 240.4000 240.2000 239.5000 1.2100 1.1200 1.8000 0.0000 0.0000 0.0000 0.0000 0.2000 故障 01002351
529 青青雅苑配变交采 2012-09-25 00:00 0.2160 0.0622 0.0895 0.0645 0.0348 0.0071 0.0140 0.0136 229.2000 228.9000 227.7000 0.2800 0.4100 0.3000 0.9900 1.0000 0.9900 0.9800 0.3700 运行 01225574
530 轻工公司1号配变交采 2012-09-25 00:00 0.1411 0.0729 0.0308 0.0372 0.0205 0.0076 0.0039 0.0089 228.5000 233.4000 230.4000 0.6500 0.2700 0.3400 0.9900 1.0000 1.0000 0.9800 0.4400 运行 01002940
531 信托南湖配变交采 2012-09-25 00:00 0.0697 0.0162 0.0410 0.0125 0.0036 0.0003 0.0030 0.0002 231.0000 228.5000 229.8000 0.0800 0.1900 0.0600 1.0000 1.0000 1.0000 1.0000 0.2100 运行 00084981
532 湖景花园1号配变交采 2012-09-25 00:00 0.4635 0.1536 0.1382 0.1718 0.1850 0.0665 0.0585 0.0599 229.3000 231.0000 229.3000 0.7400 0.6600 0.8000 0.9900 1.0000 0.9900 1.0000 0.3200 运行 01001808
533 长岗三组2号公变交采 2012-09-25 00:00 0.6640 0.1830 0.2631 0.2179 0.2006 0.0734 0.0490 0.0782 236.7000 234.9000 236.5000 0.8300 1.1300 0.9700 -0.9600 -0.9300 -0.9800 -0.9400 0.1200 运行 0160003291
534 上东国际4号配变交采 2012-09-25 00:00 0.3017 0.1137 0.0952 0.0929 0.0033 0.0033 0.0008 -0.0006 225.8000 226.5000 225.4000 0.5100 0.4400 0.4300 1.0000 1.0000 1.0000 1.0000 0.4700 运行 0100002943
535 南湖国际3号配变交采 2012-09-25 00:00 0.2485 0.0819 0.0956 0.0712 0.0085 0.0010 0.0085 -0.0010 229.3000 229.2000 229.9000 0.7200 0.8400 0.6200 1.0000 1.0000 1.0000 1.0000 0.4700 运行 0100002292
536 南湖国际4号配变交采 2012-09-25 00:00 0.2372 0.1003 0.0798 0.0575 0.0119 0.0061 0.0042 0.0019 229.8000 229.5000 229.8000 0.4400 0.3500 0.2500 1.0000 1.0000 1.0000 1.0000 0.2900 运行 0100002293
537 西虹阁配变交采 2012-09-25 00:00 0.2050 0.0720 0.0758 0.0572 0.0038 -0.0011 -0.0013 0.0057 237.4000 237.1000 237.8000 0.3100 0.3200 0.2400 1.0000 1.0000 1.0000 1.0000 0.1900 运行 0100002908
538 龙祥庭配变交采 2012-09-25 00:00 0.3413 0.1509 0.1166 0.0746 0.0179 0.0100 -0.0020 0.0098 237.3000 237.6000 236.8000 0.6400 0.4900 0.3200 1.0000 1.0000 1.0000 0.9900 0.4000 运行 0100002762
539 富丽华庭3号配变(鼎巨)交采 运行 01225500
540 中行麻村1号配变交采 2012-09-25 00:00 0.4272 0.1448 0.1092 0.1733 0.0922 0.0248 0.0341 0.0332 240.8000 240.6000 240.4000 0.6100 0.4800 0.7400 0.9800 0.9900 0.9600 0.9800 0.3700 运行 00149873
541 石油局1号配变交采 2012-09-25 00:00 0.3164 0.0925 0.0856 0.1382 0.0884 0.0266 0.0279 0.0336 240.4000 240.8000 240.2000 0.4100 0.3800 0.5900 0.9600 0.9600 0.9500 0.9700 0.3700 运行 01200776
542 和实水榭花都3号配变交采 2012-09-25 00:00 0.2534 0.0724 0.0787 0.1012 0.0174 0.0066 0.0078 0.0028 228.4000 228.7000 228.0000 0.3200 0.3500 0.4500 1.0000 1.0000 1.0000 1.0000 0.2700 运行 00184006
543 力天大厦配变(桂建业房产)交采 2012-09-25 00:00 0.5347 0.2028 0.1614 0.1714 0.1183 0.0488 0.0354 0.0341 226.6000 227.4000 226.6000 0.9300 0.7300 0.7800 0.9800 0.9700 0.9800 0.9800 0.4300 运行 01201327
544 建政南路3号公变交采 2012-09-25 00:00 1.8021 0.5984 0.6329 0.5708 0.1596 0.0384 0.0656 0.0556 229.8000 229.4000 229.5000 2.6100 2.7900 2.5100 1.0000 1.0000 0.9900 1.0000 0.0500 故障 0100003908
545 民乐路1号公变交采 2012-09-25 00:00 0.7622 0.2570 0.2081 0.2971 0.1133 0.0512 0.0215 0.0406 243.3000 243.6000 243.1000 1.1000 0.8800 1.2600 0.9900 0.9800 0.9900 0.9900 0.0800 故障 01702041
546 柳沙丽园1号配变交采 2012-09-25 00:00 0.2288 0.0578 0.0855 0.0853 0.0103 0.0000 0.0134 -0.0030 237.8000 237.5000 237.1000 0.2500 0.3700 0.3700 1.0000 1.0000 0.9900 1.0000 0.2800 运行 0100003299
547 柳沙丽园2号配变交采 2012-09-25 00:00 0.2942 0.0968 0.0786 0.1187 0.0051 0.0031 -0.0018 0.0037 237.3000 237.9000 237.2000 0.4200 0.3400 0.5100 1.0000 1.0000 1.0000 1.0000 0.4200 运行 0100003955
548 半岛融园6号公变交采 2012-09-25 00:00 0.2390 0.0928 0.0868 0.0597 -0.0017 0.0045 -0.0012 -0.0049 225.0000 224.7000 224.7000 0.4200 0.3900 0.2700 1.0000 1.0000 1.0000 1.0000 0.3100 故障 0100003150
549 半岛融园3号公变交采 2012-09-25 00:00 0.2481 0.0928 0.0729 0.0811 -0.0040 -0.0009 0.0015 -0.0042 224.6000 224.6000 224.8000 0.4200 0.3200 0.3600 1.0000 1.0000 1.0000 1.0000 0.2300 故障 0100002955
550 半岛融园4号公变交采 故障 0100002956
551 半岛融园5号公变交采 2012-09-25 00:00 0.2033 0.0740 0.0904 0.0403 0.0027 0.0016 -0.0002 0.0011 225.0000 224.7000 224.4000 0.3300 0.4000 0.1800 1.0000 1.0000 1.0000 1.0000 0.3300 故障 0100002957
552 半岛融园1号公变交采 2012-09-25 00:00 0.2023 0.0785 0.0790 0.0455 -0.0082 -0.0013 -0.0076 0.0007 224.5000 224.8000 224.4000 0.3500 0.3600 0.2000 1.0000 1.0000 1.0000 1.0000 0.2500 故障 0100002953
553 半岛融园2号公变交采 故障 0100002954
554 凯旋世纪1号配变交采 2012-09-25 00:00 0.0526 0.0208 0.0119 0.0199 0.0049 0.0021 0.0049 -0.0021 232.4000 232.3000 232.3000 0.0900 0.0600 0.0900 1.0000 1.0000 0.9300 1.0000 0.0400 运行 0100002586
555 凯旋世纪2号配变交采 2012-09-25 00:00 0.0625 0.0198 0.0246 0.0181 0.0032 0.0005 -0.0004 0.0032 232.1000 232.0000 232.2000 0.0900 0.1100 0.0800 1.0000 1.0000 1.0000 0.9900 0.0300 运行 0100002589
556 琅东八组公变交采 2012-09-25 00:00 0.6979 0.2607 0.1862 0.2509 0.1019 0.0529 0.0265 0.0224 239.5000 240.9000 239.7000 1.1100 0.7800 1.0500 0.9900 0.9800 0.9900 1.0000 0.2000 运行 0160005989
557 上海滩公馆1号配变交采 2012-09-25 00:00 0.2093 0.0587 0.0889 0.0610 0.0087 0.0009 -0.0006 0.0074 239.5000 238.5000 238.6000 0.2500 0.3700 0.2600 1.0000 1.0000 1.0000 1.0000 0.2100 运行 01700780
558 上海滩公馆2号配变交采 2012-09-25 00:00 0.1396 0.0620 0.0316 0.0460 -0.0481 -0.0143 -0.0178 -0.0159 239.0000 239.3000 238.8000 0.2700 0.1500 0.2000 0.9400 0.9800 0.8900 0.9500 0.2000 运行 01700781
559 青湖中心1号配变交采 2012-09-25 00:00 0.0816 0.0250 0.0300 0.0268 -0.0061 0.0009 -0.0027 -0.0043 237.5000 237.7000 237.2000 0.1100 0.1300 0.1200 1.0000 1.0000 1.0000 0.9900 0.1200 运行 0100003542
560 青湖中心2号配变交采 2012-09-25 00:00 0.0717 0.0233 0.0312 0.0171 0.0107 0.0008 0.0069 0.0029 237.1000 236.5000 237.1000 0.1000 0.1400 0.0800 0.9900 1.0000 0.9800 1.0000 0.1000 运行 0100003543
561 上东国际1号配变交采 2012-09-25 00:00 0.0793 0.0244 0.0248 0.0300 -0.0096 -0.0059 -0.0018 -0.0018 226.8000 226.4000 226.5000 0.1200 0.1200 0.1400 0.9900 0.9800 1.0000 1.0000 0.1600 运行 0100002940
562 上东国际3号配变交采 2012-09-25 00:00 0.2600 0.0853 0.0977 0.0771 0.0107 0.0023 0.0062 0.0022 226.1000 225.5000 225.7000 0.3800 0.4300 0.3400 1.0000 1.0000 1.0000 1.0000 0.2000 运行 0100002942
563 民生路7号公变交采 2012-09-25 00:00 0.2586 0.0756 0.1207 0.0625 0.0730 0.0316 0.0275 0.0138 238.5000 238.0000 238.4000 0.3500 0.5400 0.2700 0.9600 0.9200 0.9800 0.9800 0.3600 运行 01225090
564 东葛路1号公变交采 2012-09-25 00:00 0.0006 0.0000 0.0005 0.0000 0.0003 0.0000 0.0003 0.0000 233.0000 232.7000 运行 01200184
565 东葛路5号公变交采 2012-09-25 00:00 0.1446 0.0487 0.0392 0.0606 0.0442 0.0088 0.0147 0.0205 226.3000 225.5000 225.5000 0.2200 0.1900 0.2800 0.9600 0.9900 0.9400 0.9500 0.2100 运行 01225078
566 南湖3组公变交采 2012-09-25 00:00 0.8076 0.1912 0.2683 0.3480 -0.0409 -0.0085 -0.0169 -0.0154 224.9000 223.9000 223.2000 0.8500 1.2000 1.5600 1.0000 1.0000 1.0000 1.0000 0.5500 运行
567 市民主党派配变交采 2012-09-25 00:00 0.0691 0.0201 0.0348 0.0145 0.0199 0.0039 0.0089 0.0072 243.0000 242.7000 244.2000 0.0900 0.1500 0.0700 0.9600 0.9800 0.9700 0.8900 0.0700 运行 01101104
568 人防生活区配变交采 2012-09-25 00:00 0.1986 0.0562 0.0905 0.0528 0.0422 0.0115 0.0151 0.0156 240.1000 239.9000 240.2000 0.2400 0.3900 0.2300 0.9800 0.9800 0.9900 0.9600 0.0700 运行 01225642
569 东葛路4号公变交采 2012-09-25 00:00 1.0192 0.3712 0.3072 0.3391 0.1248 0.0580 0.0439 0.0257 225.7000 225.8000 225.7000 1.6800 1.3900 1.5200 0.9900 0.9900 0.9900 1.0000 0.1600 运行 01225077
570 市房改办配变交采 2012-09-25 00:00 0.2397 0.0716 0.0693 0.0988 0.0821 0.0145 0.0358 0.0318 242.2000 242.2000 241.9000 0.3000 0.3200 0.4300 0.9500 0.9800 0.8900 0.9500 0.0500 运行 01125445
571 东方明珠花园配变交采 2012-09-25 00:00 0.3195 0.1068 0.1028 0.1159 0.0712 0.0137 0.0276 0.0309 240.3000 239.7000 240.0000 0.4600 0.4500 0.5000 0.9800 0.9900 0.9700 0.9700 0.0200 运行 01003901
572 琅园房产3号配变交采 2012-09-25 00:00 0.3980 0.1548 0.0993 0.1417 0.0541 0.0197 0.0195 0.0142 238.0000 237.9000 238.5000 0.6600 0.4300 0.6000 0.9900 0.9900 0.9800 1.0000 0.1600 运行 01700468
573 生殖健康中心配变交采 2012-09-25 00:00 0.2483 0.0722 0.0936 0.0864 0.1032 0.0309 0.0340 0.0384 238.0000 238.1000 237.9000 0.3500 0.4200 0.4000 0.9300 0.9100 0.9400 0.9100 0.1000 运行 01225360
574 明臣置业1号配变交采 2012-09-25 00:00 0.0343 0.0086 0.0067 0.0194 0.0235 -0.0192 -0.0098 0.0525 238.3000 239.3000 238.7000 0.0900 0.0500 0.2400 0.8200 0.3900 0.5700 0.3500 0.2200 运行 0100003210
575 腾云阁配变交采 2012-09-25 00:00 0.2502 0.1012 0.0696 0.0787 0.0054 0.0045 0.0000 0.0000 237.7000 238.1000 238.4000 0.4300 0.3000 0.3400 1.0000 1.0000 1.0000 1.0000 0.1100 运行 0100003883
576 上海滩公馆3号配变交采 2012-09-25 00:00 0.1725 0.0707 0.0567 0.0466 0.0161 0.0047 0.0049 0.0073 239.3000 239.4000 238.8000 0.3000 0.2400 0.2000 1.0000 1.0000 1.0000 0.9900 0.0900 运行 0100003828
577 上海滩公馆4号配变交采 2012-09-25 00:00 0.1784 0.0687 0.0435 0.0656 0.0212 0.0110 0.0000 0.0095 239.7000 239.5000 239.4000 0.2900 0.1800 0.2800 0.9900 0.9900 1.0000 0.9900 0.0300 运行 0100003829
578 竹溪路1号公变交采 2012-09-25 00:00 0.4093 0.1080 0.1366 0.1592 0.0677 0.0165 0.0232 0.0269 225.2000 225.3000 224.6000 0.5000 0.6300 0.7300 0.9900 0.9900 0.9900 0.9900 0.2000 运行 01225411
579 区建材局宿舍配变交采 2012-09-25 00:00 0.0370 0.0005 0.0354 0.0008 0.0193 0.0000 0.0187 0.0000 232.7000 231.6000 232.2000 0.0000 0.1700 0.0000 0.8800 1.0000 0.8800 1.0000 0.1700 运行 01001956
580 金龙理想1号配变交采 2012-09-25 00:00 0.2020 0.0734 0.0580 0.0673 0.0000 0.0015 0.0000 -0.0015 226.1000 226.0000 226.2000 0.3300 0.2600 0.3000 1.0000 1.0000 1.0000 1.0000 0.0500 运行 0100002069
581 金龙理想2号配变交采 2012-09-25 00:00 0.1912 0.0524 0.0706 0.0685 0.0073 0.0000 0.0008 0.0057 237.5000 237.0000 237.2000 0.2300 0.3000 0.2900 1.0000 1.0000 1.0000 1.0000 0.0500 运行 0100002070
582 华盛小区配变交采 2012-09-25 00:00 0.3206 0.0864 0.1194 0.1140 0.0564 0.0261 0.0165 0.0139 231.5000 231.6000 231.4000 0.3900 0.5300 0.5000 0.9900 0.9600 0.9900 0.9900 0.1500 运行 01002936
583 金旺角3号配变交采 2012-09-25 00:00 0.2620 0.1195 0.0750 0.0677 0.0406 0.0204 0.0128 0.0072 233.9000 234.3000 234.8000 0.5200 0.3300 0.3000 0.9900 0.9900 0.9900 0.9900 0.2000 运行 0100002438
584 浩天广场配变交采 2012-09-25 00:00 0.1919 0.0411 0.0769 0.0734 0.0296 0.0096 0.0103 0.0096 242.0000 241.7000 241.7000 0.1800 0.3200 0.3100 0.9900 0.9700 0.9900 0.9900 0.1500 运行 0100003379
585 七星路2配变交采 2012-09-25 00:00 0.0565 0.0203 0.0182 0.0179 0.0543 0.0164 0.0199 0.0179 225.7000 225.7000 225.2000 0.1200 0.1200 0.1100 0.7200 0.7800 0.6800 0.7100 0.0100 运行 01003977
586 市经委配变交采 2012-09-25 00:00 0.2599 0.0884 0.0747 0.0927 0.0365 0.0151 0.0138 0.0071 231.4000 231.2000 230.0000 0.4000 0.3300 0.4100 0.9900 0.9900 0.9800 1.0000 0.0600 运行
587 城市花园3号配变交采 运行 01227135
588 国贸中心1号配变交采 2012-09-25 00:00 0.3090 0.1250 0.1053 0.0784 0.0503 0.0198 0.0129 0.0147 239.0000 238.6000 238.6000 0.5400 0.4500 0.3400 0.9900 0.9900 0.9900 0.9800 0.1900 运行 0100003837
589 国贸中心2号配变交采 2012-09-25 00:00 0.1764 0.0741 0.0516 0.0536 0.0161 0.0020 0.0080 0.0000 239.1000 238.7000 238.4000 0.3200 0.2300 0.2300 1.0000 1.0000 0.9900 1.0000 0.0800 运行 0100003839
590 国贸中心3号配变交采 2012-09-25 00:00 0.2193 0.0657 0.0732 0.0813 0.0202 0.0053 0.0068 0.0074 239.1000 238.6000 238.2000 0.2800 0.3200 0.3300 1.0000 1.0000 1.0000 1.0000 0.0500 运行 0100003841
591 宁汇富仕园1号配变交采 2012-09-25 00:00 0.1368 0.0378 0.0305 0.0682 0.0198 0.0073 0.0037 0.0083 240.2000 240.4000 240.2000 0.1600 0.1300 0.2900 0.9900 0.9800 0.9900 0.9900 0.1000 运行 01225657
592 英歌坡2号公变交采 2012-09-25 00:00 0.4479 0.1805 0.1442 0.1227 0.0875 0.0456 0.0190 0.0225 249.5000 248.4000 248.1000 0.7600 0.6000 0.5100 0.9800 0.9700 0.9900 0.9800 0.4300 运行 0101019740
593 半岛融园7号公变交采 2012-09-25 00:00 0.2821 0.1112 0.1033 0.0685 -0.0047 -0.0036 -0.0049 0.0027 225.3000 225.5000 224.8000 0.5000 0.4600 0.3100 1.0000 1.0000 1.0000 1.0000 0.3700 故障 0100003151
594 雍华庭公变交流采样 2012-09-25 00:00 3.1072 3.2343 3.6669 2.7596 1.2143 0.4573 0.4824 0.2746 226.2000 225.9000 226.0000 0.9300 1.5800 0.8000 0.0000 0.0000 0.0000 0.0000 0.2800 运行 2021167
595 丽景花园1号公变交流采样 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 237.9000 237.1000 236.4000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 运行 20001241
596 东方广场2号公变交流采样 2012-09-25 00:00 0.4344 0.1490 0.1513 0.1341 0.0727 0.0205 0.0343 0.0179 232.2000 231.5000 231.3000 0.6600 0.6900 0.6000 0.0000 0.0000 0.0000 0.0000 0.0100 运行 20Z2019
597 东方广场1号公变交流采样 2012-09-25 00:00 0.4959 0.1635 0.1856 0.1468 0.0655 0.0222 0.0287 0.0146 231.9000 230.6000 231.3000 0.7300 0.8300 0.6500 0.0000 0.0000 0.0000 0.0000 0.0500 运行 20Z2017
598 彩虹家园2号公变交流采样 2012-09-25 00:00 0.4801 0.1533 0.1273 0.1995 0.0586 0.0166 0.0151 0.0269 231.3000 232.1000 231.3000 0.6600 0.5500 0.8800 0.0000 0.0000 0.0000 0.0000 0.0900 运行 2021146
599 彩虹家园3号公变交流采样 测试 2021151
600 彩虹家园4号公变交流采样 2012-09-25 00:00 0.1765 0.0446 0.0623 0.0696 0.0240 0.0116 0.0053 0.0071 236.4000 236.7000 236.7000 0.2000 0.2600 0.3000 0.0000 0.0000 0.0000 0.0000 0.0200 运行 2021141
601 仙葫枫景公变交流采样 2012-09-25 00:00 0.2879 0.1341 0.0899 0.0639 0.0394 0.0193 0.0112 0.0089 237.8000 238.2000 238.0000 0.5700 0.3800 0.2700 0.0000 0.0000 0.0000 0.0000 0.0800 运行 2005696
602 宝城花园小区1号公变交流采样 运行 20000171
603 丽景花园2号公变交流采样 2012-09-25 00:00 5.9958 1.8705 1.7692 2.3561 -0.0615 0.1950 -0.2565 0.0000 237.8000 238.3000 238.2000 0.1300 0.1300 0.1700 0.0000 0.0000 0.0000 0.0000 0.0000 运行 20001242
604 丽景花园3号公变交流采样 2012-09-25 00:00 0.0794 0.0330 0.0179 0.0285 0.0226 0.0031 0.0031 0.0164 237.1000 237.3000 237.1000 0.1400 0.0700 0.1400 0.0000 0.0000 0.0000 0.0000 0.0300 运行 20001244
605 联发国际村1号公变交流采样 测试 20002257
606 联发国际村2号公变交流采样 2012-09-25 00:00 0.5834 0.2399 0.1965 0.1470 0.0228 0.0135 0.0093 0.0000 228.1000 228.7000 228.7000 1.0600 0.8700 0.6500 0.0000 0.0000 0.0000 0.0000 0.1100 运行 20Z2069
607 联发国际村3号公变交流采样 运行 20Z2072
608 联发国际村4号公变交流采样 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 234.7000 234.9000 234.3000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 运行 20Z2065
609 联发国际村5号公变交流采样 2012-09-25 00:00 0.3267 0.1123 0.1229 0.0915 -0.0089 0.0000 -0.0089 0.0000 229.1000 228.6000 228.3000 0.4800 0.5300 0.4000 0.0000 0.0000 0.0000 0.0000 0.0400 运行 20001852
610 润和谷公变交流采样 运行 2021140
611 昌泰3号公变交流采样 运行 20Z2043
612 滨江别墅1号公变交流采样 运行 20001502
613 滨江别墅2号公变交流采样 2012-09-25 00:00 0.0923 0.0188 0.0540 0.0194 -0.0035 -0.0029 0.0008 -0.0014 233.1000 232.5000 232.6000 0.0900 0.2300 0.0900 1.0000 0.9900 1.0000 1.0000 0.2400 运行 20001515
614 滨江别墅3号公变交流采样 2012-09-25 00:00 0.2741 0.1746 0.0567 0.0428 0.0839 0.0330 0.0238 0.0271 235.9000 235.5000 244.4000 0.7400 0.2600 0.2000 0.0000 0.0000 0.0000 0.0000 0.1800 运行 2021144
615 滨江别墅4号公变交流采样 2012-09-25 00:00 0.0810 0.0094 0.0483 0.0233 0.0028 0.0002 0.0016 0.0010 239.0000 237.2000 241.3000 0.0400 0.2000 0.0900 0.0000 0.0000 0.0000 0.0000 0.0400 运行 2021158
616 海茵一期别墅1号公变交流采样 2012-09-25 00:00 0.0596 0.0310 0.0174 0.0112 -0.0055 0.0000 -0.0035 -0.0020 236.6000 236.8000 236.4000 0.1300 0.0700 0.0500 0.0000 0.0000 0.0000 0.0000 0.0200 运行 2002456
617 海茵一期别墅2号公变交流采样 运行 2002455
618 利源商住城1号公变交流采样 运行 20000856
619 利源商住城2号公变交流采样 2012-09-25 00:00 0.9864 0.2642 0.3839 0.3383 0.1519 0.0352 0.0611 0.0556 237.1000 236.4000 235.9000 1.1400 1.6700 1.4700 0.0000 0.0000 0.0000 0.0000 0.1400 运行 20000860
620 利源商住城3号公变交流采样 2012-09-25 00:00 0.2876 0.1050 0.0683 0.1143 0.0278 0.0096 0.0000 0.0182 237.6000 237.6000 236.5000 0.4500 0.3000 0.5000 0.0000 0.0000 0.0000 0.0000 0.0700 运行 20000861
621 利源商住城4号公变交流采样 2012-09-25 00:00 0.4770 0.1376 0.1693 0.1701 0.0296 0.0096 0.0148 0.0052 237.9000 237.3000 237.1000 0.6100 0.7200 0.7300 0.0000 0.0000 0.0000 0.0000 0.0400 运行 20000864
622 利源商住城5号公变交流采样 2012-09-25 00:00 0.5528 0.2193 0.1451 0.1884 0.0668 0.0293 0.0138 0.0237 235.9000 237.7000 236.4000 0.9500 0.6300 0.8200 0.0000 0.0000 0.0000 0.0000 0.0900 运行 20000863
623 海茵香榭怡园2号公变交流采样 2012-09-25 00:00 0.1914 0.0992 0.0383 0.0539 0.0061 0.0071 -0.0030 0.0020 237.9000 239.4000 238.9000 0.4200 0.1600 0.2300 0.0000 0.0000 0.0000 0.0000 0.0800 运行 20Z2053
624 海茵香榭怡园3号公变交流采样 2012-09-25 00:00 0.1436 0.0514 0.0431 0.0491 0.0034 0.0017 0.0017 0.0000 238.6000 239.3000 238.4000 0.2200 0.1800 0.2100 0.0000 0.0000 0.0000 0.0000 0.0100 运行 20Z2054
625 上水人家1号公变交流采样 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 238.8000 238.4000 238.2000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 运行 20003208
626 上水人家2号公变交流采样 2012-09-25 00:00 0.8794 0.3396 0.2776 0.2622 0.1591 0.0542 0.0528 0.0521 237.6000 237.5000 237.6000 1.4500 1.1900 1.1400 0.0000 0.0000 0.0000 0.0000 0.0900 运行 20Z2984
627 荣昌1号公变交流采样 2012-09-25 00:00 0.6916 0.2061 0.2753 0.2102 0.1624 0.0484 0.0641 0.0499 225.6000 225.1000 225.3000 0.9500 1.2500 0.9700 0.0000 0.0000 0.0000 0.0000 0.0900 运行 2021050
628 昌泰2号公变交流采样 测试 20Z2080
629 蓉茉二区2号公变交流采样 2012-09-25 00:00 0.2255 0.0808 0.0751 0.0696 0.0230 0.0048 0.0108 0.0074 228.2000 226.9000 227.6000 0.3500 0.3400 0.3100 0.0000 0.0000 0.0000 0.0000 0.0000 运行 20003197
630 建政路7号公变交流采样 运行 0100005554
631 花陈公变交流采样 2012-09-25 00:00 0.3600 0.0510 0.0700 0.2390 0.0955 0.0105 0.0270 0.0580 234.0000 242.6000 226.2000 0.2200 0.3100 1.1000 0.0000 0.0000 0.0000 0.0000 0.2900 运行 2002005
632 大通公变交流采样 2012-09-25 00:00 0.2144 0.0449 0.0843 0.0852 0.0525 0.0341 0.0000 0.0184 238.8000 240.7000 235.1000 0.2400 0.3500 0.3700 0.0000 0.0000 0.0000 0.0000 0.0400 运行 2002007
633 定禁坡公变交流采样 2012-09-25 00:00 0.8615 0.3320 0.2602 0.2693 0.4667 0.1723 0.1529 0.1415 231.8000 236.8000 241.4000 1.6200 1.2900 1.2800 0.0000 0.0000 0.0000 0.0000 0.0900 运行 2002166
634 福庆旧坡公变交流采样 2012-09-25 00:00 0.0898 0.0038 0.0403 0.0457 0.0440 0.0027 0.0280 0.0133 239.1000 237.9000 236.4000 0.0200 0.2100 0.2000 0.0000 0.0000 0.0000 0.0000 0.0800 运行 2002588
635 牛湾小坡公变交流采样 运行 2002577
636 坛么新坡公变交流采样 2012-09-25 00:00 0.2013 0.0465 0.0722 0.0826 0.0441 0.0218 0.0119 0.0104 237.4000 238.0000 238.3000 0.2300 0.3400 0.3700 0.0000 0.0000 0.0000 0.0000 0.0500 运行 2002574
637 坛么旧坡公变交流采样 运行 2002575
638 坛板大坡公变交流采样 2012-09-25 00:00 0.0836 0.0177 0.0477 0.0182 0.0182 0.0031 0.0064 0.0087 237.7000 238.7000 238.0000 0.0800 0.2000 0.0900 0.0000 0.0000 0.0000 0.0000 0.0300 运行 2002571
639 蓉茉一区2号公变交流采样 运行 2021004
640 蓉茉一区4号公变交流采样 2012-09-25 00:00 1.6827 0.6054 0.6963 0.3810 0.2058 0.1601 0.0711 -0.0254 224.0000 225.4000 224.7000 2.8000 3.1300 1.7700 0.0000 0.0000 0.0000 0.0000 0.5900 运行 2021099
641 蓉茉二区5号公变交流采样 2012-09-25 00:00 0.2321 0.0713 0.0860 0.0748 0.0255 0.0099 0.0103 0.0053 224.9000 225.4000 225.3000 0.3200 0.3900 0.3400 0.0000 0.0000 0.0000 0.0000 0.0200 运行 2021183
642 仙湖桥南小区公变交流采样 2012-09-25 00:00 0.5720 0.2103 0.1304 0.2313 0.1575 0.0586 0.0170 0.0819 234.5000 234.6000 233.4000 0.9200 0.5500 1.0400 0.0000 0.0000 0.0000 0.0000 0.1600 运行 2002472
643 大明印刷厂公变交流采样 2012-09-25 00:00 0.3848 0.1141 0.1562 0.1145 0.0289 0.0039 0.0175 0.0075 229.5000 229.8000 229.4000 0.5000 0.7000 0.5100 0.0000 0.0000 0.0000 0.0000 0.0600 运行 2002930
644 矿产小区公变交流采样 2012-09-25 00:00 0.1097 0.0392 0.0410 0.0295 -0.0018 0.0039 -0.0067 0.0010 229.0000 230.8000 229.7000 0.1700 0.1700 0.1300 0.0000 0.0000 0.0000 0.0000 0.0200 运行 2002931
645 银葫小区1号公变交流采样 运行 2002728
646 农行小区公变交流采样 2012-09-25 00:00 0.2092 0.0686 0.0786 0.0620 -0.0092 -0.0092 0.0072 -0.0072 229.8000 229.5000 229.2000 0.3000 0.3300 0.2600 0.0000 0.0000 0.0000 0.0000 0.0100 运行 2002934
647 计划发展局公变交流采样 2012-09-25 00:00 0.1611 0.0660 0.0509 0.0442 -0.1880 -0.0737 -0.0748 -0.0395 241.4000 241.5000 241.1000 0.4100 0.3800 0.2400 0.0000 0.0000 0.0000 0.0000 0.0700 运行 2002771
648 技术监督局公变交流采样 2012-09-25 00:00 0.1454 0.0549 0.0631 0.0274 -0.0107 -0.0042 0.0020 -0.0085 241.9000 241.1000 242.2000 0.2300 0.2600 0.1200 0.0000 0.0000 0.0000 0.0000 0.0400 运行 2021114
649 那窝公变交流采样 2012-09-25 00:00 1.4425 0.5843 0.3223 0.5359 0.2460 0.0955 0.0613 0.0892 234.8000 236.6000 235.0000 2.5400 1.4000 2.3000 0.0000 0.0000 0.0000 0.0000 0.3400 运行 2002586
650 那律公变交流采样 2012-09-25 00:00 0.0378 0.0048 0.0048 0.0282 0.0009 -0.0005 -0.0009 0.0023 234.1000 236.4000 234.8000 0.0200 0.0200 0.1200 0.0000 0.0000 0.0000 0.0000 0.0300 运行 2002687
651 蓉茉一区5号公变交流采样 2012-09-25 00:00 0.3316 0.1961 0.0659 0.0696 -0.0511 0.0000 -0.0197 -0.0314 234.6000 240.9000 237.2000 0.8600 0.2900 0.3400 0.0000 0.0000 0.0000 0.0000 0.1700 运行 2021185
652 广播电视局公变交流采样 2012-09-25 00:00 0.5890 0.2289 0.2698 0.0903 0.0398 0.0362 0.0307 -0.0271 225.0000 225.7000 225.7000 1.0200 1.2100 0.4200 0.0000 0.0000 0.0000 0.0000 0.2800 运行 2021066
653 土地局小区公变交流采样 运行 2021018
654 荣昌2号公变交流采样 2012-09-25 00:00 0.9765 0.3284 0.2767 0.3714 0.1427 0.0181 0.0727 0.0519 236.7000 237.9000 236.0000 1.3900 1.2000 1.6000 0.0000 0.0000 0.0000 0.0000 0.1800 运行 2021058
655 金腾生态园公变交流采样 2012-09-25 00:00 0.4113 0.1345 0.0744 0.2024 0.0296 -0.0041 0.0092 0.0245 228.8000 233.7000 229.7000 0.6100 0.3300 0.8900 0.0000 0.0000 0.0000 0.0000 0.1900 运行 20Z2998
656 审计局公变交流采样 运行 20Z2995
657 金葫2号公变交流采样 运行 2021074
658 金葫4号公变交流采样 2012-09-25 00:00 0.9031 0.4119 0.3630 0.1282 0.0870 0.0302 0.0420 0.0148 215.4000 243.2000 239.4000 1.9400 1.5400 0.5600 0.0000 0.0000 0.0000 0.0000 0.3900 运行 2021075
659 那窝新坡公变交流采样 2012-09-25 00:00 0.2991 0.0937 0.1139 0.0915 0.0428 0.0131 0.0076 0.0221 241.2000 240.4000 240.7000 0.3900 0.4700 0.3900 0.0000 0.0000 0.0000 0.0000 0.0200 运行 2021077
660 应高公变交流采样 2012-09-25 00:00 0.7747 0.2975 0.2846 0.1926 0.2642 0.1139 0.0718 0.0785 238.2000 238.6000 239.1000 1.3600 1.2300 0.8900 0.0000 0.0000 0.0000 0.0000 0.1800 运行 2002591
661 牛湾大坡1号公变交流采样 2012-09-25 00:00 0.1087 0.0379 0.0191 0.0517 -0.0334 -0.0097 -0.0136 -0.0101 229.1000 228.9000 228.6000 0.1700 0.1000 0.2400 0.9500 0.9700 0.8100 0.9800 0.1600 运行 2002576
662 花里公变交流采样 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 运行 2002573
663 坛板新坡公变交流采样 2012-09-25 00:00 0.1427 0.0466 0.0440 0.0521 -0.8331 -0.2819 -0.2541 -0.2971 237.3000 230.9000 235.5000 1.2000 1.1100 1.2800 0.0000 0.0000 0.0000 0.0000 0.0500 运行 2002572
664 南宁外事办公变交流采样 2012-09-25 00:00 0.2384 0.0626 0.0891 0.0867 0.0822 0.0196 0.0258 0.0368 236.7000 227.6000 236.1000 0.2800 0.4100 0.3900 0.0000 0.0000 0.0000 0.0000 0.0200 运行 2021106
665 马山公变交流采样 2012-09-25 00:00 0.1844 0.1211 0.0138 0.0495 -0.0026 0.0142 -0.0200 0.0032 239.4000 239.5000 239.5000 0.5200 0.1500 0.2300 0.0000 0.0000 0.0000 0.0000 0.1600 运行 2002002
666 子垒公变交流采样 运行 2002167
667 曾屋二队公变交流采样 2012-09-25 00:00 0.7118 0.3294 0.2214 0.1610 -0.0944 -0.0257 -0.0326 -0.0361 225.7000 226.3000 226.3000 1.4800 1.0000 0.7600 0.0000 0.0000 0.0000 0.0000 0.2100 运行 20Z2973
668 蓉茉二区3号公变交流采样 2012-09-25 00:00 0.7283 0.2620 0.2205 0.2458 0.0259 0.0000 0.0155 0.0104 236.8000 236.6000 236.1000 1.1000 0.9300 1.0500 0.0000 0.0000 0.0000 0.0000 0.0500 运行 2021094
669 新村2号公变交流采样 2012-09-25 00:00 0.2521 0.1278 0.0836 0.0407 0.0137 0.0000 0.0039 0.0098 234.7000 236.5000 235.6000 0.5400 0.3500 0.1800 0.0000 0.0000 0.0000 0.0000 0.1000 运行 20000787
670 新村公变交流采样 2012-09-25 00:00 0.4029 0.1218 0.0899 0.1912 -0.0561 -0.0218 -0.0343 0.0000 235.9000 236.5000 235.8000 0.5200 0.4100 0.8100 0.0000 0.0000 0.0000 0.0000 0.1300 运行 2021046
671 天池山1号公变交流采样 2012-09-25 00:00 0.0609 0.0263 0.0222 0.0124 -0.0142 -0.0087 -0.0024 -0.0031 233.2000 233.2000 233.0000 0.1100 0.0900 0.0500 0.0000 0.0000 0.0000 0.0000 0.0200 运行 2021067
672 天池山2号公变交流采样 2012-09-25 00:00 0.1046 0.0313 0.0425 0.0308 0.0303 0.0094 0.0085 0.0124 237.2000 239.3000 238.0000 0.1300 0.1800 0.1400 0.0000 0.0000 0.0000 0.0000 0.0100 运行 20Z2010
673 天池山3号公变交流采样 2012-09-25 00:00 0.6769 3.9946 2.2520 0.9839 4.2644 1.1998 1.8713 1.1933 238.0000 237.5000 236.4000 0.3000 0.4200 0.5000 0.0000 0.0000 0.0000 0.0000 0.0900 运行 20Z2032
674 天池山5号公变交流采样 2012-09-25 00:00 0.0419 0.0137 0.0111 0.0171 -0.0072 -0.0026 -0.0046 0.0000 227.2000 227.1000 226.3000 0.0600 0.0500 0.0700 0.0000 0.0000 0.0000 0.0000 0.0100 运行 20001258
675 天池山4号公变交流采样 2012-09-25 00:00 0.2171 0.0547 0.0851 0.0773 -0.0028 0.0000 0.0000 -0.0028 233.3000 232.8000 231.0000 0.2300 0.3600 0.3400 0.0000 0.0000 0.0000 0.0000 0.0400 运行 2021182
676 天池山7号公变交流采样 2012-09-25 00:00 0.2712 0.0947 0.0953 0.0812 0.0105 0.0000 0.0045 0.0060 238.7000 238.1000 236.8000 0.4100 0.4100 0.3500 0.0000 0.0000 0.0000 0.0000 0.0100 运行 20003125
677 天池山9号公变交流采样 2012-09-25 00:00 0.2326 0.0682 0.1032 0.0612 -0.0029 0.0028 -0.0057 0.0000 238.3000 237.2000 237.4000 0.2900 0.4400 0.2600 0.0000 0.0000 0.0000 0.0000 0.0400 运行 20002801
678 天池山6号公变交流采样 2012-09-25 00:00 0.1537 0.0449 0.0657 0.0431 0.0156 0.0049 0.0081 0.0026 238.3000 237.9000 237.4000 0.1900 0.2800 0.2000 0.0000 0.0000 0.0000 0.0000 0.0300 运行 20001256
679 邕宁公安小区1号公变交流采样 2012-09-25 00:00 0.2538 0.1100 0.0720 0.0718 0.0133 0.0035 0.0037 0.0061 227.5000 230.2000 228.3000 0.4900 0.3100 0.3100 0.0000 0.0000 0.0000 0.0000 0.0600 运行 20Z0979
680 邕宁公安小区2号公变交流采样 运行 20Z0005
681 邕宁公安小区3号公变交流采样 2012-09-25 00:00 0.2970 0.1400 0.1031 0.0539 0.0075 0.0075 0.0000 0.0000 227.8000 228.4000 228.2000 0.6200 0.4500 0.2400 0.0000 0.0000 0.0000 0.0000 0.1100 运行 20Z0006
682 邮政局公变交流采样 2012-09-25 00:00 0.2644 0.1142 0.0924 0.0578 0.0265 0.0074 0.0138 0.0053 240.2000 240.0000 240.2000 0.4600 0.3900 0.2400 0.0000 0.0000 0.0000 0.0000 0.0500 运行 2002933
683 英歌公变交流采样 2012-09-25 00:00 1.1460 0.2065 0.5843 0.3552 0.2611 0.0770 0.0641 0.1200 245.9000 236.8000 232.0000 0.9300 2.5400 1.6700 0.0000 0.0000 0.0000 0.0000 0.4000 运行 2021078
684 技发公变交流采样 2012-09-25 00:00 0.3104 0.0000 0.1319 0.1785 -0.0032 0.0000 -0.0207 0.0175 235.8000 237.0000 235.2000 0.0000 0.5700 0.7600 0.0000 0.0000 0.0000 0.0000 0.1800 运行 2021071
685 天池山8号公变交流采样 2012-09-25 00:00 3.3627 1.1061 1.0171 1.2395 0.0263 -0.0714 0.0000 0.0977 237.7000 237.6000 237.3000 0.0700 0.0600 0.0800 0.0000 0.0000 0.0000 0.0000 0.0000 运行
686 古城路4号公变交流采样 2012-09-25 00:00 0.3633 0.1044 0.1211 0.1377 0.0679 0.0238 0.0226 0.0215 232.4000 232.1000 231.9000 0.4600 0.5300 0.6000 0.9800 0.9800 0.9800 0.9900 0.1200 运行 0101012004
687 龙胤凤凰城1号公变交流采样 2012-09-25 00:00 0.3509 0.1366 0.1201 0.0942 0.0147 0.0059 0.0045 0.0043 235.4000 236.5000 236.4000 0.5800 0.5100 0.4000 0.0000 0.0000 0.0000 0.0000 0.0500 运行 20Z030
688 龙胤凤凰城2号公变交流采样 测试 20000056
689 龙胤凤凰城4号公变交流采样 运行 20000049
690 彩虹家园1号公变交流采样 2012-09-25 00:00 0.1589 0.0472 0.0427 0.0690 0.0079 0.0019 0.0023 0.0037 237.8000 237.5000 237.3000 0.2000 0.1800 0.3000 0.0000 0.0000 0.0000 0.0000 0.0400 运行 2021143
691 莫村六队公变交流采样 运行 2002327
692 银葫小区2号公变交流采样 2012-09-25 00:00 0.3407 0.1517 0.1047 0.0843 -0.0655 -0.0177 -0.0256 -0.0222 227.4000 228.3000 227.7000 0.6600 0.4700 0.3900 0.0000 0.0000 0.0000 0.0000 0.0900 运行 0101015254
693 邕宁公务员小区1号公变交流采样 运行 20Z0099
694 邕宁公务员小区2号公变交流采样 运行 20Z0100
695 崇左国税局公变交流采样 运行 2021081
696 邕宁国土局公变交流采样 运行 2021155
697 龙湾华府1号公变交流采样 测试 20Z2016
698 交流采样 2012-09-25 00:00 0.1243 0.0298 0.0630 0.0315 0.0017 0.0017 0.0000 0.0000 235.9000 235.8000 238.2000 0.1200 0.2700 0.1300 0.0000 0.0000 0.0000 0.0000 0.0400 运行 0101015333
699 交流采样 2012-09-25 00:00 0.0696 0.0229 0.0227 0.0240 -0.0166 -0.0065 -0.0052 -0.0049 239.4000 240.1000 239.6000 0.1000 0.1000 0.1100 0.0000 0.0000 0.0000 0.0000 0.0000 运行 2003082
700 龙晟小区公变交流采样 2012-09-25 00:00 0.0956 0.0380 0.0368 0.0208 0.0056 0.0059 -0.0015 0.0012 239.7000 239.6000 239.3000 0.1600 0.1500 0.0800 0.0000 0.0000 0.0000 0.0000 0.0300 运行 20Z2041
701 仙葫美食城公变交流采样 2012-09-25 00:00 0.7054 0.1996 0.2118 0.2940 0.4528 0.1457 0.0904 0.2167 226.5000 227.0000 225.3000 1.0900 0.9600 1.6300 0.0000 0.0000 0.0000 0.0000 0.1600 运行 2021073
702 海茵水榭怡园1号公变交流采样 测试 003459
703 海茵水榭怡园2号公变交流采样 2012-09-25 00:00 0.1231 0.0517 0.0451 0.0263 0.0220 0.0076 0.0123 0.0021 238.8000 238.3000 238.7000 0.2200 0.1900 0.1100 0.0000 0.0000 0.0000 0.0000 0.0200 运行 010559003
704 海茵亚美利加1号公变交流采样 测试 003489
705 海茵亚美利加2号公变交流采样 运行 20Z2081
706 海茵香榭怡园1号公变交流采样 运行 20Z2051
707 凌铁村3号公变交流采样 2012-09-25 00:00 0.3790 0.0966 0.1476 0.1348 -0.0589 -0.0221 -0.0171 -0.0197 232.0000 232.2000 231.1000 0.4400 0.6600 0.6100 0.9900 0.9700 0.9900 0.9900 0.0700 运行 0100005307
708 长岗三组4号公变交采 2012-09-25 00:00 0.9323 0.3139 0.3479 0.2705 0.0421 0.0169 0.0168 0.0084 226.6000 227.4000 226.9000 1.4100 1.5600 1.2200 1.0000 1.0000 1.0000 1.0000 0.8300 运行 012448339
709 长岗1、2组5号公变交采 2012-09-25 00:00 0.7684 0.2092 0.2530 0.3062 -0.0080 -0.0071 -0.0236 0.0227 231.9000 231.7000 230.7000 0.9200 1.1200 1.3500 1.0000 1.0000 1.0000 1.0000 0.6600 运行 0101018718
710 安湖路1号公变交采 2012-09-25 00:00 0.6315 0.2098 0.2158 0.2058 -0.0951 -0.0298 -0.0390 -0.0261 243.4000 243.5000 243.8000 0.8700 0.9000 0.8500 0.9900 0.9900 0.9800 0.9900 0.0600 运行
711 利海国际1号配变交采 2012-09-25 00:00 0.0029 0.0011 0.0000 0.0017 -0.0006 -0.0001 0.0000 -0.0004 228.5000 228.1000 227.9000 0.0100 0.0000 0.0100 0.9800 1.0000 1.0000 1.0000 0.0100 运行 0100004639
712 新竹路6号公变交采 2012-09-25 00:00 0.4181 0.1379 0.1795 0.1007 -0.0186 -0.0009 -0.0077 -0.0100 231.3000 231.5000 231.4000 0.6200 0.7900 0.4400 1.0000 1.0000 1.0000 1.0000 0.4100 运行 012456019
713 利海国际2号配变交采 2012-09-25 00:00 0.1644 0.1177 0.0451 0.0015 0.0056 0.0034 0.0021 0.0000 228.3000 228.0000 227.8000 0.5100 0.2000 0.0100 1.0000 1.0000 1.0000 1.0000 0.4400 运行 0100004640
714 利海国际3号配变交采 2012-09-25 00:00 0.0134 0.0058 0.0040 0.0035 0.0003 0.0003 0.0003 -0.0003 228.1000 228.0000 227.7000 0.0300 0.0200 0.0100 1.0000 1.0000 1.0000 1.0000 0.0100 运行 0100004641
715 利海国际4号配变交采 2012-09-25 00:00 0.0921 0.0885 0.0000 0.0034 -0.0004 -0.0003 0.0000 -0.0001 228.2000 227.8000 227.7000 0.3900 0.0000 0.0200 1.0000 1.0000 1.0000 1.0000 0.3800 运行 0100004642
716 西湖新天地1号配变交采 2012-09-25 00:00 0.2776 0.1136 0.0785 0.0854 0.0210 0.0129 0.0024 0.0056 238.4000 238.0000 237.9000 0.4800 0.3300 0.3600 1.0000 0.9900 1.0000 1.0000 0.3000 运行
717 津头二组2号公变交采 运行
718 长岗1、2组3号公变交采 2012-09-25 00:00 1.0069 0.3338 0.4158 0.2573 -0.0433 -0.0129 0.0000 -0.0304 233.6000 232.2000 233.7000 1.4800 1.8400 1.1300 1.0000 1.0000 1.0000 0.9900 0.2000 运行
719 长岗1、2组4号公变交采 2012-09-25 00:00 -0.1499 0.1838 -0.5115 0.1777 0.0603 -0.3002 -0.0282 0.3889 230.1000 230.7000 231.2000 1.5900 2.2600 1.8800 0.9300 -0.5200 -1.0000 0.4100 1.1900 运行
720 长岗1、3组2号公变交采 2012-09-25 00:00 1.1997 0.3799 0.4158 0.4040 0.0422 0.0000 0.0174 0.0248 232.8000 231.9000 232.9000 1.6300 1.8100 1.7300 1.0000 1.0000 1.0000 1.0000 0.0300 运行
721 长岗二组3号公变交采 2012-09-25 00:00 0.5940 0.2455 0.2005 0.1480 -0.0112 0.0000 -0.0112 0.0000 232.9000 233.2000 233.5000 1.0300 0.8600 0.6200 1.0000 1.0000 1.0000 1.0000 0.1300 运行
722 墙体材料办2号配变交采 2012-09-25 00:00 0.0893 0.0331 0.0484 0.0077 -0.0082 -0.0038 -0.0020 -0.0023 232.0000 231.5000 232.3000 0.1500 0.2100 0.0400 1.0000 1.0000 1.0000 1.0000 0.2400 运行
723 津头街3号公变交采 2012-09-25 00:00 1.1617 0.2868 0.4450 0.4299 -0.5680 -0.2044 -0.1908 -0.1728 238.7000 238.1000 237.9000 1.4700 2.0400 1.9700 0.9000 0.8100 0.9200 0.9300 0.1900 运行
724 长岗三组5号公变交流采样 2012-09-25 00:00 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 0.0000 运行
725 长岗三组3号公变交流采样 2012-09-25 00:00 -0.0475 0.2735 -0.5270 0.2059 -0.0532 -0.4316 -0.0571 0.4354 227.4000 227.3000 227.7000 2.2600 2.3700 2.1400 -0.6700 -0.5400 -0.9900 0.4300 1.0500 运行
726 盛天国际1号配变交流采样 运行
727 盛天国际3号配变交流采样 运行
728 盛天国际4号配变交流采样 运行
729 区政府发展研究中心2号配变交采 2012-09-25 00:00 0.0640 0.0391 0.0159 0.0089 -0.0034 -0.0005 -0.0007 -0.0020 226.8000 226.2000 226.3000 0.1700 0.0700 0.0400 1.0000 1.0000 1.0000 1.0000 0.2000 运行
730 紫金苑1号配变交采 运行
731 紫金苑1号配变交采 运行
732 区政府发展研究中心1号配变交采 2012-09-25 00:00 0.0766 0.0388 0.0155 0.0222 -0.0083 -0.0043 -0.0011 -0.0028 226.8000 226.3000 225.8000 0.1700 0.0700 0.1000 0.9900 1.0000 1.0000 1.0000 0.1600 运行
733 羿园小区2号配变交采 2012-09-25 00:00 0.0671 0.0340 0.0224 0.0106 0.0004 -0.0022 0.0021 0.0006 231.8000 231.8000 231.6000 0.1500 0.1000 0.0500 1.0000 1.0000 1.0000 1.0000 0.1600 运行
734 羿园小区1号配变交采 2012-09-25 00:00 0.1037 0.0392 0.0350 0.0294 0.0004 -0.0006 0.0004 0.0006 237.8000 237.9000 237.6000 0.1700 0.1500 0.1300 1.0000 1.0000 1.0000 1.0000 0.1200 运行
735 紫金苑2号配变交采 运行
736 柳沙丽园3号配变交采 运行
737 柳沙丽园4号配变交采 2012-09-25 00:00 0.0203 0.0068 0.0065 0.0068 -0.0031 -0.0007 -0.0010 -0.0014 228.8000 228.5000 228.8000 0.0300 0.0300 0.0300 0.9900 1.0000 1.0000 1.0000 0.0200 运行
738 柳沙丽园5号配变交采 2012-09-25 00:00 0.1859 0.0670 0.0527 0.0662 -0.0118 -0.0039 -0.0042 -0.0035 237.8000 237.8000 237.2000 0.2900 0.2300 0.2900 1.0000 1.0000 1.0000 1.0000 0.2300 运行
739 紫金苑3配变交采 运行
740 紫金苑3配变交采 运行
741 和美家园1号配变交采 运行
742 和美家园2号配变交采 运行
743 紫金苑4号配变交采 运行
744 盘龙居1号配变交采 2012-09-25 00:00 0.0777 0.0183 0.0467 0.0125 0.0022 -0.0022 0.0014 0.0014 226.6000 226.7000 226.1000 0.0800 0.2100 0.0600 1.0000 1.0000 1.0000 1.0000 0.2300 运行
745 盘龙居2号配变交采 2012-09-25 00:00 0.0814 0.0239 0.0287 0.0287 0.0022 -0.0023 -0.0016 0.0062 226.3000 226.7000 226.0000 0.1100 0.1300 0.1200 1.0000 1.0000 1.0000 0.9800 0.1200 运行
746 盘龙居3号配变交采 运行
747 盘龙居4号配变交采 2012-09-25 00:00 0.0697 0.0226 0.0308 0.0162 -0.0084 0.0012 -0.0022 -0.0048 226.4000 226.9000 226.4000 0.1000 0.1400 0.0800 0.9900 1.0000 1.0000 0.9600 0.1000 运行
748 盘龙居5号配变交采 运行
749 盘龙居6号配变交采 运行
750 盘龙居8号配变交采 运行
751 盘龙居12号配变交采 2012-09-25 00:00 0.0522 0.0161 0.0120 0.0240 -0.0048 -0.0034 -0.0009 -0.0004 231.6000 232.4000 231.8000 0.0700 0.0500 0.1100 1.0000 0.9800 1.0000 1.0000 0.1000 运行
752 盘龙居16号配变交采 运行
753 盘龙居7号配变交采 2012-09-25 00:00 0.0131 0.0047 0.0039 0.0044 -0.0043 -0.0011 -0.0015 -0.0016 232.0000 232.2000 231.8000 0.0200 0.0200 0.0200 0.9500 1.0000 1.0000 1.0000 0.0400 运行
754 盘龙居17号配变交采 2012-09-25 00:00 0.0202 0.0040 0.0096 0.0065 -0.0040 -0.0014 -0.0017 -0.0008 231.7000 232.2000 231.9000 0.0200 0.0400 0.0300 0.9800 1.0000 1.0000 1.0000 0.0500 运行
755 盘龙居10号配变交采 运行
756 盘龙居13号配变交采 2012-09-25 00:00 0.0407 0.0102 0.0049 0.0255 -0.0029 -0.0013 0.0009 -0.0025 231.4000 232.0000 231.9000 0.0500 0.0200 0.1100 1.0000 1.0000 0.9700 1.0000 0.1200 运行
757 盘龙居11号配变交采 2012-09-25 00:00 0.0510 0.0058 0.0107 0.0344 -0.0019 -0.0008 0.0007 -0.0018 231.7000 232.3000 232.0000 0.0200 0.0500 0.1500 1.0000 1.0000 1.0000 1.0000 0.1600 运行
758 盘龙居15号配变交采 运行
759 盘龙居9号配变交采 运行
760 盘龙居14号配变交采 2012-09-25 00:00 0.1613 0.0573 0.0517 0.0522 0.0138 0.0009 0.0115 -0.0014 225.3000 225.3000 225.6000 0.2600 0.2400 0.2400 1.0000 1.0000 0.9800 1.0000 0.2200 运行
761 盛天茗城7号配变交采 2012-09-25 00:00 0.1688 0.0466 0.0756 0.0465 0.0032 0.0002 -0.0009 0.0044 228.2000 227.8000 228.5000 0.2100 0.3300 0.2100 1.0000 1.0000 1.0000 1.0000 0.1900 运行
762 盛天茗城4号配变交采 运行
763 盛天茗城1号配变交采 运行
764 盛天茗城6号配变交采 运行
765 盛天茗城3号配变交采 2012-09-25 00:00 0.1433 0.0571 0.0586 0.0275 -0.0001 -0.0012 -0.0014 0.0000 228.0000 228.0000 228.2000 0.2500 0.2500 0.1300 1.0000 1.0000 1.0000 1.0000 0.2200 运行
766 盛天茗城5号配变交采 运行
767 盛天茗城8号配变交采 2012-09-25 00:00 0.1661 0.0609 0.0507 0.0544 -0.0232 -0.0077 -0.0106 -0.0048 227.8000 227.9000 227.9000 0.2700 0.2300 0.2400 0.9900 0.9900 0.9800 1.0000 0.1500 运行
768 盛天茗城2号配变交采 运行

422
readxml/output.cpp Normal file
View File

@ -0,0 +1,422 @@
#include "head.h"
//int extern balance_node;
#include "qt_readxml.h"
#include <iomanip>
#include <iostream>
using namespace std;
bool Qt_readxml::XmlReaderwriteFile(QIODevice *file_output)
{
//std::cout<<"XmlReaderwriteFile"<<std::endl;
QTextStream out(file_output);
int breakerNo = breaker.size();
int headBus;
for (int i=0;i<breakerNo;i++)
{
if (breaker[i].MemberOf_EquipmentContainer_res.size())
{
headBus = breaker[i].flag;
}
}
int line=acline_segment.size();
int trans=power_transformer.size();
for (int i=0;i<line;i++)
{
if (acline_segment[i].link_to>totalBus)
{
totalBus=acline_segment[i].link_to;
maxIsland=acline_segment[i].island;
}
}
for (int i=0;i<trans;i++)
{
if (power_transformer[i].link_2>totalBus)
{
totalBus=power_transformer[i].link_2;
maxIsland=power_transformer[i].island;
}
}
for (int i=0;i<line;i++)
{
if (acline_segment[i].island==maxIsland)
totalLine++;
}
for (int i=0;i<trans;i++)
{
if (power_transformer[i].island==maxIsland)
totalLine++;
}
/*------------------------------------------
-------------------------------------------*/
out<<totalBus<<","<<totalLine<<","<<100<<","<<"1e-5"<<","<<"0""\r\n";
out<<0<<"\r\n";
/*----------------------------------------
-----------------------------------------*/
// balance_node=1;
// out<<1<<","<<balance_node<<","<<1<<"\r\n";
int sub_no=substation.size();
int k=1;
int sign=0;
for (int i=0;i<sub_no;i++)
{
int node;
if (sign)
break;
if (substation[i].GIS_type=="1001")
{
int connector_no=connector.size();
for (int j=0;j<connector_no;j++)
{
if (connector[j].island==maxIsland)
{
if (connector[j].MemberOf_EquipmentContainer_res.size())
{
if (connector[j].MemberOf_EquipmentContainer_res[0].contains(substation[i].ID))
{
node = connector[j].link_from;
substation[i].flag=node;
out<<k<<","<<node<<","<<"1"<<"\r\n";
k++;
sign=1;
break;
}
}
}
}
}
}
out<<0<<"\r\n";
/*----------------------------------------
线
-----------------------------------------*/
int no=acline_segment.size();
k=1;
for (int i=0;i<no;i++)
{
if (acline_segment[i].island==maxIsland)
{
out<<k<<","<<acline_segment[i].link_from<<","<<acline_segment[i].link_to<<","<<QString().sprintf("%.10lf",acline_segment[i].r)<<","<<QString().sprintf("%.10lf",acline_segment[i].x)<<","<<0<<","<<0<<"\r\n";
k++;
}
}
out<<0<<"\r\n";
/*-------------------------------------------
--------------------------------------------*/
k=1;
for (int i=0;i<trans;i++)
{
if (power_transformer[i].island==maxIsland)
{
out<<k<<","<<"0"<<","<<power_transformer[i].link_1<<","<<power_transformer[i].link_2<<","<<QString().sprintf("%.10lf",power_transformer[i].r)<<","<<QString().sprintf("%.10lf",power_transformer[i].x)<<","<<1<<","<<1<<","<<1<<","<<1<<"\r\n";
k++;
}
}
out<<0<<"\r\n";
/*-------------------------------------------
--------------------------------------------*/
out<<1<<","<<0<<","<<0<<","<<0<<","<<0<<","<<0<<","<<0<<","<<0<<","<<0<<","<<0<<","<<0<<","<<0<<"\r\n";
out<<0<<"\r\n";
/*-------------------------------------------
--------------------------------------------*/
k=1;
for (int i=0;i<trans;i++)
{
if (power_transformer[i].island==maxIsland)
{
int high=power_transformer[i].link_1;
if (high==power_transformer[i].low)
{
high=power_transformer[i].link_2;
}
out<<k<<","<<high<<","<<QString().sprintf("%.10lf",power_transformer[i].g)<<","<<QString().sprintf("%.10lf",power_transformer[i].b)<<"\r\n";
k++;
}
}
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
/*-------------------------------------------
--------------------------------------------*/
k=1;
double UB=0;
for (int i=1;i<=totalBus;i++)
{
for (int j=0;j<line;j++)
{
if ((acline_segment[j].link_from==i || acline_segment[j].link_to==i) && acline_segment[j].island==maxIsland)
{
UB=acline_segment[j].UB;
break;
}
}
if (!UB)
{
for (int j=0;j<trans;j++)
{
if ((power_transformer[j].link_1==i || power_transformer[j].link_2==i) && power_transformer[j].island==maxIsland)
{
UB=power_transformer[j].UB;
break;
}
}
}
int m;
for (m=0;m<trans;m++)
{
if (power_transformer[m].island==maxIsland)
if (power_transformer[m].low == i)
break;
}
if(m<trans)
{
double PL=((power_transformer[m].APower)+(power_transformer[m].BPower)+(power_transformer[m].CPower))/(base_power[0].basePower*1000);
double QL=((power_transformer[m].AReactivePower)+(power_transformer[m].BReactivePower)+(power_transformer[m].CReactivePower))/(base_power[0].basePower*1000);
if (PL==0 && QL==0)
{
out<<k<<","<<-1<<","<<i<<","<<UB<<","<<"0"<<","<<"0"<<","<<"-1"<<","<<"-1"<<","<<"0"<<","<<"0"<<"\r\n";
k++;
}
else
{
out<<k<<","<<-1<<","<<i<<","<<UB<<","<<"0"<<","<<"0"<<","<<QString().sprintf("%.10lf",PL)<<","<<QString().sprintf("%.10lf",QL)<<","<<"0"<<","<<"0"<<"\r\n";
k++;
}
}
else
{
out<<k<<","<<-1<<","<<i<<","<<UB<<","<<"0"<<","<<"0"<<","<<"0"<<","<<"0"<<","<<"0"<<","<<"0"<<"\r\n";
k++;
}
}
out<<0<<"\r\n";
/*----------------------------------------
-----------------------------------------*/
//out<<1<<","<<1<<","<<balance_node<<","<<1<<","<<"-100"<<","<<"100"<<","<<0<<","<<0<<","<<0<<","<<0<<"\r\n";
k=1;
sign=0;
for (int i=0;i<sub_no;i++)
{
int node;
if (sign)
break;
if (substation[i].GIS_type=="1001")
{
int connector_no=connector.size();
for (int j=0;j<connector_no;j++)
{
if (connector[j].island==maxIsland)
{
if (connector[j].MemberOf_EquipmentContainer_res.size())
{
if (connector[j].MemberOf_EquipmentContainer_res[0].contains(substation[i].ID))
{
node = connector[j].link_from;
substation[i].flag=node;
out<<k<<","<<1<<","<<node<<","<<1<<","<<"-100"<<","<<"100"<<","<<0<<","<<0<<","<<0<<","<<0<<"\r\n";
k++;
sign=1;
break;
}
}
}
}
}
}
out<<0<<"\r\n";
out<<0<<"\r\n";
/*----------------------------------------
-----------------------------------------*/
//out<<1<<","<<1<<","<<balance_node<<","<<1<<","<<"1.0"<<","<<"-100"<<","<<"100"<<"\r\n";
k=1;
sign=0;
for (int i=0;i<sub_no;i++)
{
int node;
if (sign)
break;
if (substation[i].GIS_type=="1001")
{
int connector_no=connector.size();
for (int j=0;j<connector_no;j++)
{
if (connector[j].island==maxIsland)
{
if (connector[j].MemberOf_EquipmentContainer_res.size())
{
if (connector[j].MemberOf_EquipmentContainer_res[0].contains(substation[i].ID))
{
node = connector[j].link_from;
substation[i].flag=node;
out<<k<<","<<1<<","<<node<<","<<1<<","<<"1.0"<<","<<"-100"<<","<<"100"<<"\r\n";
k++;
sign=1;
break;
}
}
}
}
}
}
out<<0<<"\r\n";
out<<0<<"\r\n";
/*----------------------------------------
-----------------------------------------*/
out<<1<<","<<balance_node<<","<<0.999<<","<<1.001<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
// /*------------------------------------------
// 输出第一行
//-------------------------------------------*/
// int bus=busbar_section.size();
// int lineNo = acline_segment.size();
// int trans=power_transformer.size();
// int busNo=0;
// for (int i=0;i<lineNo;i++)
// {
// if (acline_segment[i].link_from>busNo)
// busNo=acline_segment[i].link_from;
// if (acline_segment[i].link_to>busNo)
// busNo=acline_segment[i].link_to;
// }
// for (int i=0;i<trans;i++)
// {
// if (power_transformer[i].link_1>busNo)
// busNo=power_transformer[i].link_1;
// if (power_transformer[i].link_2>busNo)
// busNo=power_transformer[i].link_2;
// }
// double basePower= base_power[0].basePower;
// //out<<busNo<<","<<lineNo+trans<<","<<basePower<<","<<"50"<<","<<"0.1"<<"\r\n";
// out<<busbar_section[bus-1].flag<<","<<lineNo+trans<<","<<basePower<<","<<"50"<<","<<"0.1"<<"\r\n";
// out<<"1e-5"<<","<<"2"<<"\r\n";
// out<<"1"<<","<<headBus<<"\r\n";
// out<<0<<"\r\n";
// /*----------------------------------------
// 输出线路参数
//-----------------------------------------*/
// int no=acline_segment.size();
// for (int i=0;i<no;i++)
// {
// out<<i+1<<","<<acline_segment[i].link_from<<","<<acline_segment[i].link_to<<","<<QString().sprintf("%.10lf",acline_segment[i].r)<<","<<QString().sprintf("%.10lf",acline_segment[i].x)<<","<<0<<"\r\n";
// }
// out<<0<<"\r\n";
// /*-------------------------------------------
// 输出接地支路参数
//--------------------------------------------*/
// no=power_transformer.size();
// for (int i=0;i<no;i++)
// {
// int high=power_transformer[i].link_1;
// if (high==power_transformer[i].low)
// {
// high=power_transformer[i].link_2;
// }
// out<<high<<","<<QString().sprintf("%.10lf",power_transformer[i].g)<<"\r\n";
// }
// out<<0<<"\r\n";
// /*-------------------------------------------
// 输出变压器参数
//--------------------------------------------*/
// no=power_transformer.size();
// for (int i=0;i<no;i++)
// {
// out<<i+1<<","<<power_transformer[i].link_1<<","<<power_transformer[i].link_2<<","<<QString().sprintf("%.10lf",power_transformer[i].r)<<","<<QString().sprintf("%.10lf",power_transformer[i].x)<<","<<1<<","<<1<<","<<1<<"\r\n";
// }
// out<<0<<"\r\n";
// /*-------------------------------------------
// 输出节点功率参数
//--------------------------------------------*/
// no=busbar_section[bus-1].flag;
// int k=0;
// for (int i=0;i<bus;i++)
// {
// if (busbar_section[i].flag!=busbar_section[i+1].flag)
// {
// std::vector<PowerTransformer>::iterator it = find_if(power_transformer.begin(), power_transformer.end(), bus_finder(busbar_section[i].flag)); //得到与ID号相对应的元素
// if(it!=power_transformer.end())
// {
// double PL=((it->APower)+(it->BPower)+(it->CPower))/(base_power[0].basePower*1000);
// double QL=((it->AReactivePower)+(it->BReactivePower)+(it->CReactivePower))/(base_power[0].basePower*1000);
// if (PL==0 && QL==0)
// {
// out<<busbar_section[i].flag<<","<<"0"<<","<<"0"<<","<<"-1"<<","<<"-1"<<"\r\n";
// k++;
// }
// else
// {
// out<<busbar_section[i].flag<<","<<"0"<<","<<"0"<<","<<QString().sprintf("%.10lf",PL)<<","<<QString().sprintf("%.10lf",QL)<<"\r\n";
// k++;
// }
// }
// else
// {
// out<<busbar_section[i].flag<<","<<"0"<<","<<"0"<<","<<"0"<<","<<"0"<<"\r\n";
// k++;
// }
// }
// }
// for (int i=0;i<busNo;i++)
// {
// out<<i+1<<","<<"0"<<","<<"0"<<","<<"0"<<","<<"0"<<"\r\n";
// }
// out<<0<<"\r\n";
// out<<0<<"\r\n";
// out<<0<<"\r\n";
return 0;
}

37
readxml/output1.cpp Normal file
View File

@ -0,0 +1,37 @@
#include "head.h"
#include "qt_readxml.h"
bool Qt_readxml::XmlReaderzero_rx(QIODevice *file2)
{
//std::cout<<"XmlReaderzero_rx"<<std::endl;
QTextStream out(file2);
out<<"no length:"<<"\r\n";
out<<"i,link_from,link_to,ID,description"<<"\r\n";
int ac_no=acline_segment.size();
for (int i=0;i<ac_no;i++)
{
int k=1;
if (acline_segment[i].island==maxIsland)
{
if (!acline_segment[i].LongLength)
{
out<<k<<","<<acline_segment[i].link_from<<","<<acline_segment[i].link_to<<","<<acline_segment[i].ID<<","<<acline_segment[i].description<<"\r\n";
k++;
}
}
}
out<<"\r\n";
out<<"cannot find model:"<<"\r\n";
out<<"i,link_from,link_to,ID,Model"<<"\r\n";
for (int i=0;i<ac_no;i++)
{
if (acline_segment[i].island==maxIsland)
{
if (acline_segment[i].LongLength && !acline_segment[i].x)
{
out<<acline_segment[i].link_from<<","<<acline_segment[i].link_to<<","<<acline_segment[i].ID<<","<<acline_segment[i].Model<<"\r\n";
}
}
}
return 0;
}

25
readxml/output2.cpp Normal file
View File

@ -0,0 +1,25 @@
#include "head.h"
#include "qt_readxml.h"
bool Qt_readxml::XmlReadernone_trans_pq(QIODevice *file3)
{
//std::cout<<"XmlReadernone_trans_pq"<<std::endl;
QTextStream out(file3);
//out<<"no Power:"<<"\r\n";
int trans_no=power_transformer.size();
for (int i=0;i<trans_no;i++)
{
if (power_transformer[i].island==maxIsland)
{
double ABCPower=power_transformer[i].APower+power_transformer[i].BPower+power_transformer[i].CPower;
double ABCReactivePower=power_transformer[i].AReactivePower+power_transformer[i].BReactivePower+power_transformer[i].CReactivePower;
//if (!power_transformer[i].APower)
if(ABCPower==0 && ABCReactivePower==0 )//by DMY 20121014
{
//out<<power_transformer[i].low<<","<<power_transformer[i].ratedMVA<<","<<0.9<<","<<power_transformer[i].Serial_Number.trimmed()<<"\r\n";
//暂时不写编号20121013 by DMY
out<<power_transformer[i].low<<","<<power_transformer[i].ratedMVA<<","<<0.9<<"\r\n";
}
}
}
return 0;
}

21
readxml/output3.cpp Normal file
View File

@ -0,0 +1,21 @@
#include "head.h"
#include "qt_readxml.h"
bool Qt_readxml::XmlReadernone_trans_rx(QIODevice *file4)
{
//std::cout<<"XmlReadernone_trans_rx"<<std::endl;
QTextStream out(file4);
out<<"no Pk and Uk:"<<"\r\n";
int trans_no=power_transformer.size();
for (int i=0;i<trans_no;i++)
{
if (power_transformer[i].island==maxIsland)
{
if (!power_transformer[i].Uk && !power_transformer[i].Pk)
{
out<<i<<","<<power_transformer[i].Model<<","<<power_transformer[i].Serial_Number<<"\r\n";
}
}
}
return 0;
}

16
readxml/output4.cpp Normal file
View File

@ -0,0 +1,16 @@
#include "head.h"
#include "qt_readxml.h"
bool Qt_readxml::XmlReaderline_info(QIODevice *file5)
{
//std::cout<<"XmlReaderline_info"<<std::endl;
QTextStream out(file5);
int ac_no=acline_segment.size();
for (int i=0;i<ac_no;i++)
{
if (acline_segment[i].island==maxIsland)
{
out<<i<<","<<acline_segment[i].link_from<<","<<acline_segment[i].link_to<<","<<acline_segment[i].description<<","<<acline_segment[i].ID<<"\r\n";
}
}
return 0;
}

33
readxml/output5.cpp Normal file
View File

@ -0,0 +1,33 @@
#include "head.h"
#include "qt_readxml.h"
bool Qt_readxml::XmlReadertrans_info(QIODevice *file6)
{
//std::cout<<"XmlReadertrans_info"<<std::endl;
QTextStream out(file6);
int trans_no=power_transformer.size();
for (int i=0;i<trans_no;i++)
{
if (power_transformer[i].island==maxIsland)
{
QString Serial_Number=power_transformer[i].Serial_Number;
Serial_Number=Serial_Number.trimmed();
out<<i<<","<<power_transformer[i].link_1<<","<<power_transformer[i].link_2<<","<<power_transformer[i].ratedMVA<<","<<power_transformer[i].name<<",";
out<<Serial_Number<<','<<power_transformer[i].ID<<",";
out<<power_transformer[i].Pk<<',';//额定负载损耗
out<<power_transformer[i].P0<<"\r\n";//额定空载损耗
// QFile fi("privatePublic.txt");
// fi.open(QIODevice::Append);
// QTextStream stream(&fi);
// stream<<power_transformer[i].ratedMVA<<","<<power_transformer[i].isPublic<< "\r\n";
// fi.close();
}
}
return 0;
}
bool Qt_readxml::XmlReaderTotalLineLenghth(QIODevice *file)
{
QTextStream out(file);
out<<this->total_length;
return 0;
}

60
readxml/output6.cpp Normal file
View File

@ -0,0 +1,60 @@
#include "head.h"
//int extern balance_node;
#include "qt_readxml.h"
#include <iomanip>
#include <iostream>
using namespace std;
bool Qt_readxml::XmlReaderContactPoint(QIODevice *file7)
{
QTextStream out(file7);
for (int j=1;j<=totalBus;j++)
{
int count=0;
int line=acline_segment.size();
vector<ACLineSegment> lineOfCircuit;
for (int i=0;i<line;i++)
{
if(acline_segment[i].island==maxIsland)
{
if(acline_segment[i].link_from==j || acline_segment[i].link_to==j)
{
int size=lineOfCircuit.size();
count++;
int sign=0;
for (int m=0;m<size;m++)
{
if (acline_segment[i].MemberOf_EquipmentContainer_res.size()!=0)
{
if (lineOfCircuit[m].MemberOf_EquipmentContainer_res[0]==acline_segment[i].MemberOf_EquipmentContainer_res[0])
{
sign=1;
break;
}
}
}
if (!sign)
if (acline_segment[i].MemberOf_EquipmentContainer_res.size()!=0)
lineOfCircuit.push_back(acline_segment[i]);
}
}
}
count=lineOfCircuit.size();
if (count==2)
{
int circuit_no=circuit.size();
QString circuit1=" ";
QString circuit2=" ";
for (int i=0;i<circuit_no;i++)
{
if (lineOfCircuit[0].MemberOf_EquipmentContainer_res[0].contains(circuit[i].ID))
circuit1=circuit[i].name;
if (lineOfCircuit[1].MemberOf_EquipmentContainer_res[0].contains(circuit[i].ID))
circuit2=circuit[i].name;
}
out<<circuit1<<","<<lineOfCircuit[0].description<<","<<lineOfCircuit[0].ID<<","<<j<<","<<circuit2<<","<<lineOfCircuit[1].description<<","<<lineOfCircuit[1].ID<<"\r\n";
}
}
//out<<"\r\n";
return 0;
}

144
readxml/output7.cpp Normal file
View File

@ -0,0 +1,144 @@
#include "head.h"
//int extern balance_node;
#include "qt_readxml.h"
#include <iomanip>
#include <iostream>
using namespace std;
bool Qt_readxml::XmlReaderDisnetReconfig(QIODevice *file8)
{
//std::cout<<"XmlReaderwriteFile"<<std::endl;
QTextStream out(file8);
/*------------------------------------------
-------------------------------------------*/
out<<totalBus<<" "<<totalLine<<"\r\n";
out<<0<<"\r\n";
/*------------------------------------------
-------------------------------------------*/
int sub_no=substation.size();
int k=1;
for (int i=0;i<sub_no;i++)
{
int node;
if (substation[i].GIS_type=="1001")
{
int connector_no=connector.size();
for (int j=0;j<connector_no;j++)
{
if (connector[j].island==maxIsland)
{
if (connector[j].MemberOf_EquipmentContainer_res.size())
{
if (connector[j].MemberOf_EquipmentContainer_res[0].contains(substation[i].ID))
{
node = connector[j].link_from;
substation[i].flag=node;
out<<k<<" "<<node<<"\r\n";
k++;
break;
}
}
}
}
}
}
out<<0<<"\r\n";
/*------------------------------------------
-------------------------------------------*/
k=1;
int line=acline_segment.size();
int trans=power_transformer.size();
for (int i=0;i<line;i++)
{
if (acline_segment[i].island==maxIsland)
{
out<<k<<" "<<acline_segment[i].link_from<<" "<<acline_segment[i].link_to<<"\r\n";
k++;
}
}
for (int i=0;i<trans;i++)
{
if (power_transformer[i].island==maxIsland)
{
out<<k<<" "<<power_transformer[i].link_1<<" "<<power_transformer[i].link_2<<"\r\n";
k++;
}
}
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
out<<0<<"\r\n";
/*------------------------------------------
-------------------------------------------*/
k=1;
double UB=0;
for (int i=1;i<=totalBus;i++)
{
double PG=0;
double QG=0;
for (int j=0;j<sub_no;j++)
{
if (substation[j].flag==i)
PG=150;
}
int m;
for (m=0;m<trans;m++)
{
if (power_transformer[m].island==maxIsland)
if (power_transformer[m].low == i)
break;
}
if(m<trans)
{
double PL=((power_transformer[m].APower)+(power_transformer[m].BPower)+(power_transformer[m].CPower));
double QL=((power_transformer[m].AReactivePower)+(power_transformer[m].BReactivePower)+(power_transformer[m].CReactivePower));
if (PL==0 && QL==0)
{
out<<k<<" "<<i<<" "<<PG<<" "<<QG<<" "<<"0"<<" "<<"0"<<"\r\n";
k++;
}
else
{
out<<k<<" "<<i<<" "<<PG<<" "<<QG<<" "<<QString().sprintf("%.6lf",PL)<<" "<<QString().sprintf("%.6lf",QL)<<"\r\n";
k++;
}
}
else
{
out<<k<<" "<<i<<" "<<PG<<" "<<QG<<" "<<"0"<<" "<<"0"<<"\r\n";
k++;
}
}
out<<0<<"\r\n";
out<<0<<"\r\n";
/*------------------------------------------
-------------------------------------------*/
k=1;
for (int i=0;i<line;i++)
{
if (acline_segment[i].island==maxIsland)
{
out<<k<<" "<<acline_segment[i].link_from<<" "<<acline_segment[i].link_to<<" "<<"1"<<"\r\n";
k++;
}
}
for (int i=0;i<trans;i++)
{
if (power_transformer[i].island==maxIsland)
{
out<<k<<" "<<power_transformer[i].link_1<<" "<<power_transformer[i].link_2<<" "<<"0"<<"\r\n";
k++;
}
}
out<<0<<"\r\n";
out<<0<<"\r\n";
return 0;
}

62
readxml/qt_readxml.cpp Normal file
View File

@ -0,0 +1,62 @@
#include "qt_readxml.h"
Qt_readxml::Qt_readxml()
{
substation.clear();
terminal.clear();
base_voltage.clear();
base_power.clear();
connectivity_node.clear();
acline_segment.clear();
busbar_section.clear();
disconnector.clear();
power_transformer.clear();
transformer_winding.clear();
list1.clear();
ground_disconnector.clear();
composite_switch.clear();
circuit.clear();
bay.clear();
connector.clear();
fuse.clear();
pole.clear();
load_break_switch.clear();
breaker.clear();
ac_kind.clear();
ResContainer.clear();
Notfound.clear();
R1.clear();
cn.clear();
busContainer.clear();
dis_substation.clear();
dis_line.clear();
dis_sec_node.clear();
dis_trans.clear();
bus_no=-1;
nextBus.clear();
k=0;
i1=0;
i2=0;
i3=0;
i4=0;
i5=0;
i6=0;
i7=0;
i8=0;
i9=0;
i10=0;
i11=0;
i12=0;
i13=0;
i14=0;
i15=0;
i16=0;
i17=0;
i18=0;
i19=0;
total_length=0;
isAcnode=0;
maxIsland=0;
totalLine=0;
totalBus=0;
}

114
readxml/qt_readxml.h Normal file
View File

@ -0,0 +1,114 @@
#ifndef QT_READXML_H
#define QT_READXML_H
#include <QtCore>
#include <vector>
#include "head.h"
class Qt_readxml : public QXmlStreamReader
{
public:
Qt_readxml();
public:
std::vector<QString> ResContainer;
std::vector<QString> Notfound;
std::vector<Substation> substation;
std::vector<Terminal> terminal;
std::vector<BaseVoltage> base_voltage;
std::vector<BasePower> base_power;
std::vector<ConnectivityNode> connectivity_node;
std::vector<ACLineSegment> acline_segment;
std::vector<BusbarSection> busbar_section;
std::vector<Disconnector> disconnector;
std::vector<PowerTransformer> power_transformer;
std::vector<TransformerWinding> transformer_winding;
std::vector<List> list1;
std::vector<GroundDisconnector> ground_disconnector;
std::vector<CompositeSwitch> composite_switch;
std::vector<Circuit> circuit;
std::vector<Bay> bay;
std::vector<Connector> connector;
std::vector<Fuse> fuse;
std::vector<Pole> pole;
std::vector<LoadBreakSwitch> load_break_switch;
std::vector<Breaker> breaker;
std::vector<AC_kind> ac_kind;
std::vector<DisSubstation> dis_substation;
std::vector<DisLine> dis_line;
std::vector<DisSecNode> dis_sec_node;
std::vector<DisTrans> dis_trans;
std::vector<int> busContainer;
std::vector<QString> nextBus;
double total_length;
QStringRef R1;
QString str;
int i1;
int i2;
int i3;
int i4;
int i5;
int i6;
int i7;
int i8;
int i9;
int i10;
int i11;
int i12;
int i13;
int i14;
int i15;
int i16;
int i17;
int i18;
int i19;
QString cn;
int bus_no;
int balance_node;
int k;
int isAcnode; //是否为孤点的标记1为是孤点
int maxIsland; //最大的拓扑岛
int totalLine;
int totalBus;
///////////////////////
bool XmlReaderreadFile(QIODevice *file);
void XmlReaderread();
void XmlReaderTopologyAnalyse();
void XmlReaderDealData();
void XmlReaderInterface();
bool XmlReaderwriteFile(QIODevice *file1);
bool XmlReaderzero_rx(QIODevice *file2);
bool XmlReadernone_trans_pq(QIODevice *file3);
bool XmlReadernone_trans_rx(QIODevice *file4);
bool XmlReaderline_info(QIODevice *file5);
bool XmlReadertrans_info(QIODevice *file6);
bool XmlReaderTotalLineLenghth(QIODevice *file);//杜孟远加的
bool XmlReaderContactPoint(QIODevice *file7);
bool XmlReaderDisnetReconfig(QIODevice *file8);
void XmlReaderread_Substation();
void XmlReaderread_Terminal();
void XmlReaderread_BaseVoltage();
void XmlReaderread_BasePower();
void XmlReaderread_VoltageLevel();
void XmlReaderread_ConnectivityNode();
void XmlReaderread_ACLineSegment();
void XmlReaderread_LoadBreakSwitch();
void XmlReaderread_BusbarSection();
void XmlReaderread_Disconnector();
void XmlReaderread_PowerTransformer();
void XmlReaderread_TransformerWinding();
void XmlReaderread_GroundDisconnector();
void XmlReaderread_CompositeSwitch();
void XmlReaderread_Circuit();
void XmlReaderread_Bay();
void XmlReaderread_Connector();
void XmlReaderread_Fuse();
void XmlReaderread_Pole();
void XmlReaderread_Breaker();
void XmlReaderFormList(int i,QString name1,QString id);
void XmlReaderInputResource(int i);
int XmlReaderFindResource(int j, int n, int sign);
void XmlReaderFindResource1(int i);
void XmlReaderFindResource2(int i);
void XmlReaderdeal_ac();
};
#endif // QT_READXML_H

390
readxml/topology.cpp Normal file
View File

@ -0,0 +1,390 @@
#include "head.h"
#include <QStringRef>
//extern vector<QString> ResContainer;
//extern vector<QString> Notfound;
//extern QString cn;
//extern int bus_no;
//extern int balance_node;
//extern int k;
#include "qt_readxml.h"
void Qt_readxml::XmlReaderTopologyAnalyse()
{
k=0;
bus_no=busbar_section.size();
int terminal_no=terminal.size();
ResContainer.clear();
Notfound.clear();
for (int i=0;i<terminal_no;i++ )
{
ResContainer.push_back(terminal[i].ConductingEquipment_res[0]);
ResContainer.push_back(terminal[i].ConnectivityNode_res[0]);
QString type;
int res_no=ResContainer.size();
for (int j=0;j<res_no;j++)
{
std::vector<List>::iterator it = find_if(list1.begin(), list1.end(), vector_finder(ResContainer[0].remove(0,1))); //得到与ID号相对应的元素
if(it!=list1.end())
{
QString a;
type=it->name;
if (type=="busbar_section")
{
busbar_section[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="substation")
{
substation[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="connectivity_node")
{
connectivity_node[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="acline_segment")
{
acline_segment[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="disconnector")
{
disconnector[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="power_transformer")
{
power_transformer[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="transformer_winding")
{
transformer_winding[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="ground_disconnector")
{
ground_disconnector[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="composite_switch")
{
composite_switch[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="circuit")
{
circuit[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="bay")
{
bay[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="connector")
{
connector[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="fuse")
{
fuse[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="pole")
{
pole[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="load_break_switch")
{
load_break_switch[it->no].Terminal_res.push_back(terminal[i].ID);
}
else if (type=="breaker")
{
breaker[it->no].Terminal_res.push_back(terminal[i].ID);
}
}
//else if(ResContainer[0].left(2)=="CN")
else
{
ConnectivityNode CN;
CN.ID = ResContainer[0];
CN.Terminal_res.push_back(terminal[i].ID);
CN.flag = 0;
connectivity_node.push_back(CN);
QString name="connectivity_node";
XmlReaderFormList(i5,name,CN.ID);
i5++;
Notfound.push_back(ResContainer[0]);
}
ResContainer.erase(ResContainer.begin());
}
}
int i=0;
if (!bus_no)
{
BusbarSection T1;
T1.flag=0;
T1.BaseVoltage_res.push_back(acline_segment[i].BaseVoltage_res[0]);
T1.Terminal_res.push_back(acline_segment[i].Terminal_res[0]);
T1.busSequence=0;
busbar_section.push_back(T1);
bus_no++;
}
int ac_no=acline_segment.size();
for (int i=0;i<ac_no;i++)
{
std::vector<AC_kind>::iterator it = find_if(ac_kind.begin(), ac_kind.end(), ac_finder(acline_segment[i].GIS_ID)); //得到与ID号相对应的元素
if(it==ac_kind.end())
{
AC_kind A;
A.GIS_ID=acline_segment[i].GIS_ID;
A.quantity=1;
A.calculateTimes=0;
ac_kind.push_back(A);
}
else
{
(it->quantity)++;
}
}
int j=0;
for (i=0;i<bus_no;i++)
{
if (!busbar_section[i].flag && busbar_section[i].Terminal_res.size())
{
j++; //拓扑岛编号
int n=1; //节点编号
busbar_section[i].flag=1;
busbar_section[i].island=j;
int sign=0; //sign=0表示有对线路或变压器编号
int res_no=busbar_section[i].Terminal_res.size();
for (int m=0;m<res_no;m++)
{
ResContainer.push_back(busbar_section[i].Terminal_res[m]);
}
sign=XmlReaderFindResource(j,n,sign);
while (nextBus.size())
{
ResContainer.push_back(nextBus[0]);
nextBus.erase(nextBus.begin());
n=n+1-sign;
sign=1;
sign=XmlReaderFindResource(j,n,sign);
}
}
}
}
int Qt_readxml::XmlReaderFindResource(int j, int n,int sign)
{
QString type;
int res_no=ResContainer.size();
for (int i=0;i<res_no;i++)
{
std::vector<List>::iterator it = find_if(list1.begin(), list1.end(), vector_finder(ResContainer[0])); //得到与ID号相对应的元素
ResContainer.erase(ResContainer.begin());
if(it!=list1.end())
{
type=it->name;
if (type=="terminal" && !terminal[it->no].flag)
{
terminal[it->no].flag=n;
terminal[it->no].island=j;
ResContainer.push_back(terminal[it->no].ConductingEquipment_res[0].remove(0,1));
ResContainer.push_back(terminal[it->no].ConnectivityNode_res[0].remove(0,1));
}
else if (type=="connectivity_node" && !connectivity_node[it->no].flag)
{
connectivity_node[it->no].flag=n;
connectivity_node[it->no].island = j;
int no1=connectivity_node[it->no].Terminal_res.size();
if (no1)
{
for (int m=0;m<no1;m++)
{
ResContainer.push_back(connectivity_node[it->no].Terminal_res[m]);
}
}
}
else if (type=="acline_segment")
{
isAcnode = 0;
acline_segment[it->no].island=j;
if (!acline_segment[it->no].link_from)
{
acline_segment[it->no].link_from=n;
nextBus.push_back(acline_segment[it->no].ID);
sign=0;
}
else if (!acline_segment[it->no].link_to)
{
int no1=acline_segment[it->no].Terminal_res.size();
if (no1)
{
for (int m=0;m<no1;m++)
{
ResContainer.push_back(acline_segment[it->no].Terminal_res[m]);
}
}
acline_segment[it->no].link_to=n;
sign=0;
std::vector<AC_kind>::iterator ac = find_if(ac_kind.begin(), ac_kind.end(), ac_finder(acline_segment[it->no].GIS_ID));
(ac->calculateTimes)++;
}
}
else if (type=="load_break_switch" && !load_break_switch[it->no].flag)
{
load_break_switch[it->no].flag=n;
load_break_switch[it->no].island=j;
int no1=load_break_switch[it->no].Terminal_res.size();
if (no1)
{
for (int m=0;m<no1;m++)
{
ResContainer.push_back(load_break_switch[it->no].Terminal_res[m]);
}
}
}
else if (type=="disconnector" && !disconnector[it->no].flag)
{
disconnector[it->no].flag=n;
disconnector[it->no].island=j;
int no1=disconnector[it->no].Terminal_res.size();
if (no1)
{
for (int m=0;m<no1;m++)
{
ResContainer.push_back(disconnector[it->no].Terminal_res[m]);
}
}
}
else if (type=="transformer_winding"&& !transformer_winding[it->no].flag)
{
isAcnode = 0;
int a=transformer_winding[it->no].MemberOf_PowerTransformer_res[0].length();
QString b=transformer_winding[it->no].MemberOf_PowerTransformer_res[0];
std::vector<List>::iterator trans = find_if(list1.begin(), list1.end(), vector_finder(b.right(a-1)));
transformer_winding[it->no].island = j;
transformer_winding[it->no].flag = n;
if (!power_transformer[trans->no].link_1)
{
power_transformer[trans->no].link_1=n;
power_transformer[trans->no].island=j;
sign=0;
//isAcnode = 0;
if (transformer_winding[it->no].description=="低压侧绕组")
{
power_transformer[trans->no].low=n;
}
int winding_no=transformer_winding.size();
for (int m=0;m<winding_no;m++)
{
if (transformer_winding[m].MemberOf_PowerTransformer_res[0]==b && m!=(it->no))
{
nextBus.push_back(transformer_winding[m].ID);
}
}
}
else if (!power_transformer[trans->no].link_2&&power_transformer[trans->no].link_1!=n)
{
power_transformer[trans->no].link_2=n;
sign=0;
//isAcnode = 0;
if (transformer_winding[it->no].description=="低压侧绕组")
{
power_transformer[trans->no].low=n;
}
if (transformer_winding[it->no].Terminal_res.size())
{
ResContainer.push_back(transformer_winding[it->no].Terminal_res[0]);
}
}
else if (!power_transformer[trans->no].link_3&&power_transformer[trans->no].link_2!=n &&power_transformer[trans->no].link_1!=n)
{
power_transformer[trans->no].link_3=n;
sign=0;
//isAcnode = 0;
if (transformer_winding[it->no].description=="低压侧绕组")
{
power_transformer[trans->no].low=n;
}
if (transformer_winding[it->no].Terminal_res.size())
{
ResContainer.push_back(transformer_winding[it->no].Terminal_res[0]);
}
}
}
else if (type=="connector" && !connector[it->no].flag)
{
connector[it->no].link_from=n;
connector[it->no].island=j;
int no1=connector[it->no].Terminal_res.size();
if (no1)
{
for (int m=0;m<no1;m++)
{
ResContainer.push_back(connector[it->no].Terminal_res[m]);
}
}
}
else if (type=="fuse" && !fuse[it->no].flag)
{
fuse[it->no].flag=n;
fuse[it->no].island=j;
int no1=fuse[it->no].Terminal_res.size();
if (no1)
for (int m=0;m<no1;m++)
{
ResContainer.push_back(fuse[it->no].Terminal_res[m]);
}
}
else if (type=="ground_disconnector" && !ground_disconnector[it->no].flag)
{
ground_disconnector[it->no].flag=n;
ground_disconnector[it->no].island=j;
int no1=ground_disconnector[it->no].Terminal_res.size();
for (int m=0;m<no1;m++)
{
ResContainer.push_back(ground_disconnector[it->no].Terminal_res[m]);
}
}
else if (type=="breaker" && !breaker[it->no].flag)
{
breaker[it->no].flag=n;
breaker[it->no].island=j;
int no1=breaker[it->no].Terminal_res.size();
if (no1)
{
for (int m=0;m<no1;m++)
{
ResContainer.push_back(breaker[it->no].Terminal_res[m]);
}
}
}
else if (type=="busbar_section" && !busbar_section[it->no].flag)
{
int no1=busbar_section[it->no].Terminal_res.size();
if (no1)
{
for (int m=0;m<no1;m++)
{
ResContainer.push_back(busbar_section[it->no].Terminal_res[m]);
}
}
busbar_section[it->no].flag=n;
busbar_section[it->no].island=j;
//balance_node=n;
}
}
}
while (ResContainer.size())
{
XmlReaderFindResource(j,n,sign);
}
return sign;
}

View File

@ -0,0 +1,231 @@
#include "transformerparser.h"
//QHash<QString,TransformerParser::ThreePhrasePower> *TransformerParser::mTransHash=NULL;
//#include <QMessageBox>
QSharedPointer<QHash<QString,TransformerParser::ThreePhrasePower> > TransformerParser::msharedPoint=QSharedPointer<QHash<QString,TransformerParser::ThreePhrasePower> >();
QSharedPointer<QHash<QString,TransformerParser::TransRX> > TransformerParser::mTransRXsharedPoint=QSharedPointer<QHash<QString,TransformerParser::TransRX> >();
TransformerParser::TransformerParser(QObject *parent) :
QObject(parent)
{
}
double TransformerParser::GetTransformerAPower(const QString &file,const QString &id)
{
if(TransformerParser::msharedPoint.isNull())
{
TransformerParser::msharedPoint=QSharedPointer<QHash<QString,ThreePhrasePower> >(new QHash<QString,ThreePhrasePower>);
TransformerParser::ReadData(file);
}
QHash<QString,TransformerParser::ThreePhrasePower> *pHash=TransformerParser::msharedPoint.data();//仅仅为了后面使用方便。
if(pHash->contains("id"))
{
qDebug()<<"found\n";
}
return (*pHash)[id.trimmed()].A;
}
double TransformerParser::GetTransformerBPower(const QString &file,const QString &id)
{
if(TransformerParser::msharedPoint.isNull())
{
TransformerParser::msharedPoint=QSharedPointer<QHash<QString,ThreePhrasePower> >(new QHash<QString,ThreePhrasePower>);
TransformerParser::ReadData(file);
}
QHash<QString,TransformerParser::ThreePhrasePower> *pHash=TransformerParser::msharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].B;
}
double TransformerParser::GetTransformerCPower(const QString &file,const QString &id)
{
if(TransformerParser::msharedPoint.isNull())
{
TransformerParser::msharedPoint=QSharedPointer<QHash<QString,ThreePhrasePower> >(new QHash<QString,ThreePhrasePower>);
TransformerParser::ReadData(file);
}
QHash<QString,TransformerParser::ThreePhrasePower> *pHash=TransformerParser::msharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].C;
}
bool TransformerParser::ReadData(const QString &file)
{
if(!QFile::exists(file))
{
// QMessageBox::warning(0,"警告","变压器参数文件不存在!");
return false;
}
QFile _file(file);
if(_file.open(QIODevice::ReadOnly))
{
QString line;
QStringList sep;
QTextStream stream(&_file);
// stream.readLine();//跳过第一行
// stream.readLine();//跳过第二行
while(!stream.atEnd())
{
line=stream.readLine();
sep=line.split(',');
ThreePhrasePower power;
bool ok;
power.A=sep.at(14).toDouble(&ok);
if(!ok)
{
continue;
}
power.B=sep.at(15).toDouble(&ok);
if(!ok)
{
continue;
}
power.C=sep.at(16).toDouble(&ok);
if(!ok)
{
continue;
}
power.RA=sep.at(18).toDouble(&ok);
if(!ok)
{
continue;
}
power.RB=sep.at(19).toDouble(&ok);
if(!ok)
{
continue;
}
power.RC=sep.at(20).toDouble(&ok);
if(!ok)
{
continue;
}
QHash<QString,TransformerParser::ThreePhrasePower> *pHash=TransformerParser::msharedPoint.data();//仅仅为了后面使用方便。
pHash->insert(sep.at(1).trimmed(),power);
}
_file.close();
return true;
}
return false;
}
bool TransformerParser::ReadRXData(const QString &file)
{
if(!QFile::exists(file))
{
//QMessageBox::warning(0,"警告","变压器功率文件不存在!");
return false;
}
QFile _file(file);
if(_file.open(QIODevice::ReadOnly))
{
QString line;
QStringList sep;
QTextStream stream(&_file);
while(!stream.atEnd())
{
line=stream.readLine();
sep=line.split(',');
TransRX x;
x.Pk=sep.at(2).toDouble();
x.Uk=sep.at(4).toDouble();
x.P0=sep.at(1).toDouble();
x.I0=sep.at(3).toDouble();
if(x.Uk==0)
{
x.Uk=4;
}
QHash<QString,TransformerParser::TransRX> *pHash=TransformerParser::mTransRXsharedPoint.data();//仅仅为了后面使用方便。
pHash->insert(sep.at(0).trimmed(),x);
}
_file.close();
return true;
}
return false;
}
double TransformerParser::GetDisTransformerPk(const QString &file, const QString &id)
{
if(TransformerParser::mTransRXsharedPoint.isNull())
{
TransformerParser::mTransRXsharedPoint=QSharedPointer<QHash<QString,TransRX> >(new QHash<QString,TransRX>);
TransformerParser::ReadRXData(file);
}
QHash<QString,TransformerParser::TransRX> *pHash=TransformerParser::mTransRXsharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].Pk;
}
double TransformerParser::GetDisTransformerUk(const QString &file, const QString &id)
{
if(TransformerParser::mTransRXsharedPoint.isNull())
{
TransformerParser::mTransRXsharedPoint=QSharedPointer<QHash<QString,TransRX> >(new QHash<QString,TransRX>);
TransformerParser::ReadRXData(file);
}
QHash<QString,TransformerParser::TransRX> *pHash=TransformerParser::mTransRXsharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].Uk;
}
double TransformerParser::GetTransformerAReactivePower(const QString &file, const QString &id)
{
if(TransformerParser::msharedPoint.isNull())
{
TransformerParser::msharedPoint=QSharedPointer<QHash<QString,ThreePhrasePower> >(new QHash<QString,ThreePhrasePower>);
TransformerParser::ReadData(file);
}
QHash<QString,TransformerParser::ThreePhrasePower> *pHash=TransformerParser::msharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].RA;
}
double TransformerParser::GetTransformerBReactivePower(const QString &file, const QString &id)
{
if(TransformerParser::msharedPoint.isNull())
{
TransformerParser::msharedPoint=QSharedPointer<QHash<QString,ThreePhrasePower> >(new QHash<QString,ThreePhrasePower>);
TransformerParser::ReadData(file);
}
QHash<QString,TransformerParser::ThreePhrasePower> *pHash=TransformerParser::msharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].RB;
}
double TransformerParser::GetTransformerCReactivePower(const QString &file, const QString &id)
{
if(TransformerParser::msharedPoint.isNull())
{
TransformerParser::msharedPoint=QSharedPointer<QHash<QString,ThreePhrasePower> >(new QHash<QString,ThreePhrasePower>);
TransformerParser::ReadData(file);
}
QHash<QString,TransformerParser::ThreePhrasePower> *pHash=TransformerParser::msharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].RC;
}
double TransformerParser::GetDisTransformerP0(const QString &file, const QString &id)
{
if(TransformerParser::mTransRXsharedPoint.isNull())
{
TransformerParser::mTransRXsharedPoint=QSharedPointer<QHash<QString,TransRX> >(new QHash<QString,TransRX>);
TransformerParser::ReadRXData(file);
}
QHash<QString,TransformerParser::TransRX> *pHash=TransformerParser::mTransRXsharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].P0;
}
double TransformerParser::GetDisTransformerI0(const QString &file, const QString &id)
{
if(TransformerParser::mTransRXsharedPoint.isNull())
{
TransformerParser::mTransRXsharedPoint=QSharedPointer<QHash<QString,TransRX> >(new QHash<QString,TransRX>);
TransformerParser::ReadRXData(file);
}
QHash<QString,TransformerParser::TransRX> *pHash=TransformerParser::mTransRXsharedPoint.data();//仅仅为了后面使用方便。
return (*pHash)[id.trimmed()].I0;
}

View File

@ -0,0 +1,67 @@
#ifndef TRANSFORMERPARSER_H
#define TRANSFORMERPARSER_H
/*****************************/
/* 这是一个单件(Singlton)类 */
/*****************************/
#include <QObject>
#include <QtCore>
#include <QHash>
#include <QTextStream>
#include <QFile>
#include <QStringList>
#include <QSharedPointer>
class TransformerParser : public QObject
{
Q_OBJECT
public:
private:
//static bool mFileOpened;
typedef struct
{
double A;//有功
double B;//有功
double C;//有功
double RA;//无功
double RB;//无功
double RC;//无功
} ThreePhrasePower;
typedef struct
{
double Pk;
double Uk;
double P0;
double I0;
} TransRX;
static QSharedPointer<QHash<QString,ThreePhrasePower> > msharedPoint;//功率
static QSharedPointer<QHash<QString,TransRX> > mTransRXsharedPoint;//阻抗
public:
static double GetTransformerAPower(const QString &file, const QString &id);
static double GetTransformerBPower(const QString &file, const QString &id);
static double GetTransformerCPower(const QString &file, const QString &id);
static double GetTransformerAReactivePower(const QString &file, const QString &id);
static double GetTransformerBReactivePower(const QString &file, const QString &id);
static double GetTransformerCReactivePower(const QString &file, const QString &id);
static double GetDisTransformerPk(const QString &file, const QString &id);
static double GetDisTransformerUk(const QString &file, const QString &id);
static double GetDisTransformerP0(const QString &file, const QString &id);
static double GetDisTransformerI0(const QString &file, const QString &id);
private:
explicit TransformerParser(QObject *parent = 0);
//static QHash<QString,ThreePhrasePower> *mTransHash;
static bool ReadData(const QString &file);
static bool ReadRXData(const QString &file);//读阻抗
signals:
public slots:
};
#endif // TRANSFORMERPARSER_H