如何从 Proficy Historian/iHistorian 中检索原始时间序列数据?
理想情况下,我会询问两个日期之间特定标签的数据。
您可以尝试几种不同的采样模式。
这些模式可通过以下所有 API 使用。
其中趋势采样模式可能是您想要的,因为它是专门为图表/趋势设计的。不过,lab 和 interpolated 也可能有用。
阅读电子书以获取有关每种采样模式的更多信息。在我的机器上它被存储为C:\Program Files\GE Fanuc\Proficy Historian\Docs\iHistorian.chm
并且我安装了 3.5 版。请特别注意以下部分。
以下是构建 OLEDB 进行趋势采样的方法。
set
SamplingMode = 'Trend',
StartTime = '2010-07-01 00:00:00',
EndTime = '2010-07-02 00:00:00',
IntervalMilliseconds = 1h
select
timestamp,
value,
quality
from
ihRawData
where
tagname = 'YOUR_TAG'
使用用户 API 和 SDK 显示等效方法很复杂(使用用户 API 更是如此),因为它们需要在代码中进行大量的设置才能进行设置。客户端访问 API 较新,并在幕后使用 WCF。
顺便说一句,OLEDB 方法有一些限制。
我的一个同事把这个放在一起:
在 web.config 中:
<add name="HistorianConnectionString"
providerName="ihOLEDB.iHistorian.1"
connectionString="
Provider=ihOLEDB.iHistorian;
User Id=;
Password=;
Data Source=localhost;"
/>
在数据层:
public DataTable GetProficyData(string tagName, DateTime startDate, DateTime endDate)
{
using (System.Data.OleDb.OleDbConnection cn = new System.Data.OleDb.OleDbConnection())
{
cn.ConnectionString = webConfig.ConnectionStrings.ConnectionStrings["HistorianConnectionString"];
cn.Open();
string queryString = string.Format(
"set samplingmode = rawbytime\n select value as theValue,Timestamp from ihrawdata where tagname = '{0}' AND timestamp between '{1}' and '{2}' and value > 0 order by timestamp",
tagName.Replace("'", "\""), startDate, endDate);
System.Data.OleDb.OleDbDataAdapter adp = new System.Data.OleDb.OleDbDataAdapter(queryString, cn);
DataSet ds = new DataSet();
adp.Fill(ds);
return ds.Tables[0];
}
}
更新:
这运作良好,但我们遇到了标签不经常更新的问题。如果标签在请求的 startDate 和 endDate 的开始或结束附近没有更新,则趋势看起来很糟糕。更糟糕的是,在请求的窗口期间仍然没有明确的点——我们不会得到任何数据。
我通过三个查询解决了这个问题:
这是一种潜在的低效方法,但它有效:
public DataTable GetProficyData(string tagName, DateTime startDate, DateTime endDate)
{
DataSet ds = new DataSet();
string queryString;
System.Data.OleDb.OleDbDataAdapter adp;
using (System.Data.OleDb.OleDbConnection cn = new System.Data.OleDb.OleDbConnection())
{
cn.ConnectionString = proficyConn.ConnectionString;
cn.Open();
// always get a start value
queryString = string.Format(
"set samplingmode = lab\nselect value as theValue,Timestamp from ihrawdata where tagname = '{0}' AND timestamp between '{1}' and '{2}' order by timestamp",
tagName.Replace("'", "\""), startDate.AddMinutes(-1), startDate);
adp = new System.Data.OleDb.OleDbDataAdapter(queryString, cn);
adp.Fill(ds);
// get the range
queryString = string.Format(
"set samplingmode = rawbytime\nselect value as theValue,Timestamp from ihrawdata where tagname = '{0}' AND timestamp between '{1}' and '{2}' order by timestamp",
tagName.Replace("'", "\""), startDate, endDate);
adp = new System.Data.OleDb.OleDbDataAdapter(queryString, cn);
adp.Fill(ds);
// always get an end value
queryString = string.Format(
"set samplingmode = lab\nselect value as theValue,Timestamp from ihrawdata where tagname = '{0}' AND timestamp between '{1}' and '{2}' order by timestamp",
tagName.Replace("'", "\""), endDate.AddMinutes(-1), endDate);
adp = new System.Data.OleDb.OleDbDataAdapter(queryString, cn);
adp.Fill(ds);
return ds.Tables[0];
}
}
是的,我知道,这些查询应该被参数化。
Michael——在 IP21 中有一个“插值”表,以及“实际”数据点表。Proficy也有吗?
我们编写了一个如下所示的包装 DLL:
[DllImport("IHUAPI.dll", CallingConvention = CallingConvention.StdCall, EntryPoint = "ihuReadRawDataByTime@24")]
public static extern int ihuReadRawDataByTime(int serverhandle, string tagname, ref IHU_TIMESTAMP startTime, ref IHU_TIMESTAMP endTime, ref int noOfSamples, ref IHU_DATA_SAMPLE* dataValues);
...
private int _handle;
public HistorianTypes.ErrorCode ReadRawByTime(string tagName, DateTime startTime, DateTime endTime,
out double[] timeStamps, out double[] values, out IhuComment [] comments)
{
var startTimeStruct = new IhuApi.IHU_TIMESTAMP(); //Custom datetime to epoch extension method
var endTimeStruct = new IhuApi.IHU_TIMESTAMP();
int lRet = 0;
int noOfSamples = 0;
startTimeStruct = DateTimeToTimeStruct(dstZone.ToUniversalTime(startTime));
endTimeStruct = DateTimeToTimeStruct(dstZone.ToUniversalTime(endTime));
IhuApi.IHU_DATA_SAMPLE* dataSample = (IhuApi.IHU_DATA_SAMPLE*)new IntPtr(0);
try {
lRet = IhuApi.ihuReadRawDataByTime
(
_handle, // the handle returned from the connect
tagName, // the single tagname to retrieve
ref startTimeStruct, // start time for query
ref endTimeStruct, // end time for query
ref noOfSamples, // will be set by API
ref dataSample // will be allocated and populated in the user API
);
....
一些注意事项是,iFIX 将检查 DLL 是否在启动时加载,因此您需要执行动态加载/卸载 DLL 等操作,以免其他应用程序崩溃。我们通过动态删除/添加注册表项来做到这一点。
另一种情况是,如果您轮询 10,000 个样本并且其中 1 个样本已损坏,它将丢弃所有 10,000 个样本。您需要实现一个不良数据处理程序,该处理程序将从不良数据的任一侧开始并逐步递增以获取不良样本任一侧的所有数据。
有几个 C 头文件包含所有错误代码和 DLL 的函数头。