Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHi,
What version do you download?
Where do you from?
Please try to do it using another PC.
MikhailModeratorHi,
> Please where can we define event instructions?
Please ask particular questions on the forum, and we will explain how it works.> how can we add user comments when acknowledge an alarm
Currently, this feature is not implemented.
MikhailModeratorHi,
C:\SCADA\ScadaComm\Log also contains lineXXX.log.bak, where you can find the previous part of the log. But this is also a part of log, not full.
May be we should add the option to set the log file sizes.
MikhailModeratorPlease provide a screenshot with device settings for gmail.
I don’t think that timeout really make sense.July 7, 2019 at 7:15 am in reply to: Digital Counter and calculate elapsed time for a channel in certain state #5684
MikhailModeratorHi,
Other approach is creating your own formula (in the Formulas table) like this
public double CalcSwitch(int counterCnlNum) { if (Val() <= 0 && Cnl > 0 && CnlStat > 0) { SetVal(counterCnlNum, Val(counterCnlNum) + 1); } return Cnl; }Use this formula in the channel 114: CalcSwitch(115)
where 115 is the channel for counting, its type is Calculated real.
Note: I don’t test formulas on the forum. May be you need to fix it.July 6, 2019 at 10:22 am in reply to: Digital Counter and calculate elapsed time for a channel in certain state #5680
MikhailModeratorHi,
Try the following:
The new channel of the Switching counter type should have a formula Val(114)
Its Signal field is not set.If the above doesn’t help, please provide a link to the screenshot of the Input channels table.
July 5, 2019 at 1:30 pm in reply to: Digital Counter and calculate elapsed time for a channel in certain state #5678
MikhailModeratorHi,
A channel of the Switching counter type increases by 1 when the channel changes from 0 to 1 and from 1 to 0.
You should check it using the Generator feature when Communicator is stopped. Please write here about the result.
MikhailModeratorTake into account that
CnlStat – the status that was just received from Communicator
Stat(N) – the current status of an input channel before receiving new status
MikhailModeratorHello,
Main Menu > Deploy > Upload Configuration
And the similar button with a small green arrow on the toolbar.
MikhailModeratorSince Rapid SCADA 5.7.0 we store the configuration database in XML as a part of a project. *.dat files are used in runtime.
-
This reply was modified 6 years, 11 months ago by
Mikhail.
MikhailModeratorWhere can i find and/or change the version number?
Usually in the about page. Version number of what application?
Also is it possible to acces the db like a sql datebase or?
Is the baseDat the only thing i have?You can read the files like written here , get data from Server by TCP and use REST API.
MikhailModeratorHi,
if (CnlStat > 0) …
July 4, 2019 at 6:25 am in reply to: Digital Counter and calculate elapsed time for a channel in certain state #5668
MikhailModeratorHi,
Can we use formula to calculate the elapsed time for the channel being in in True State?
How many times a day a channel may change?
The simplest approach is:
1. Create an input channel of Minute real type.
2. Use a formula Val(101) > 0 ? Val() + 1 : Val()
where 101 is the source channel that can be 0 or 1
The formula is calculated every minute for this type of channel.But this approach is not accurate.
can we use formulas to make a digital counter so that we can calculate how many times channel changed from state to another state for example False to True?
Just choose Switching counter type of the input channel. And it will count.
MikhailModeratorConfigured the aliases in OPC server. Now I have access to them from communicator service and it is now working. I didn“t know that the use of aliases was needed.
That’s good! Thank you for sharing the cure recipe. OPC is a black box.
MikhailModeratorHi,
Stop the Communicator service, and use the Generator feature the collect more information how the formula works. The expected and actual results, you need, are not clear.
-
This reply was modified 6 years, 11 months ago by
-
AuthorPosts