问题描述:
Citect和PLC怎样对时,以Citect PC机时间为准?所属产品线:
AVEVA™ Plant SCADA解决方法:
1, 取Citect PC机时间,Citect需要定义变量标签分别取年月日时分秒的值,Set_Year,Set_Month,Set_Day,Set_Hour,Set_Minute,Set_Second,然后取值如下
Set_Year=DATEYEAR(TimeCurrent(),1);
Set_Month=DateMonth(TimeCurrent());
Set_Day=DateDay(TimeCurrent());
Set_Hour=TimeHour(TimeCurrent());
Set_Minute=TimeMin(TimeCurrent());
if Second>60 then Set_Second=0;
else Set_Second=TimeSec(TimeCurrent())+1;
end
2, 取PLC的系统时间,PLC需要定义变量标签也分别取年月日时分秒的值,Year, Month,Day,Hour,Minute,Second
3, 将Citect时间变量的值赋给PLC的变量
Year=Set_Year
Month=Set_Month
Day=Set_Day
Hour=Set_Hour
Minute=Set_Minute
Sencond=Set_Sencond
是否有帮助?