Forum Replies Created
-
AuthorPosts
-
Mikhail
ModeratorEverything look fine except Auto Report Module automatically export the Event Report even I didn’t activate it.
It’s a bug. Will be fixed in the next version.
Mikhail
ModeratorEverything look fine except Auto Report Module automatically export the Event Report even I didn’t activate it.
Restart the service after changing the configuration.
Mikhail
ModeratorHi,
After I change culture to en-GB, no errors at log and excel file (Historical Data Report & Elastic Report) when I opened them.
The PlgElasticReport.zh-Hans.xml file includes a line
<Phrase key="WorksheetName">工作表{0}</Phrase>
Likely there is some forbidden character.
Try replacing that line by the similar line from PlgElasticReport.en-GB.xml-
This reply was modified 3 months ago by
Mikhail.
Mikhail
ModeratorIn case of Modbus coils
Cmd > 0 ? 0 : 1
Mikhail
ModeratorHi,
In the output formula of the channel, put something like
Cmd > 0 ? 0xFF : 0x00
If it doesn’t work, make screenshots.Mikhail
ModeratorHello,
To do that, add a new function in the Scripts table, and then use it in a channel.public void MyFunc() { SetData(501, Val(500), 1); SetData(502, Val(501)-Val(500)); }
Mikhail
Moderatorcan you link me with some example projects backup? I will try to restore the project and learn from there.
The Hello World project is in C:\Program Files\SCADA\ProjectSamples\HelloWorld
Other projects are owned by the customers.
There is a YouTube video about connecting devices by Modbus. It should not be hard.Mikhail
ModeratorHello,
I have tried to make channels which aren’t linked to any device/communication lines
I suggest to add a device in the Devices table that has no a real device under it. It is useful for grouping channels.
SetData(417,Cmd,1)
If that output formula is used in the channel 417 itself, it can be simplified to
SetData()
Mikhail
Moderator5000 channels is not so many. It should be 10 iterations per second. To measure it, you could write timestamps in a text file from a channel formula. A formula for writing to file somewhere on the forum.
Mikhail
ModeratorHi,
What do you see in the modules window?
Note that ASP.NET 8 must be installed after IIS.Mikhail
ModeratorHi,
1. Could you make a screenshot of the report when you download the same report from a web page?
2. What result do you get if you choose the HTML format in the Auto Report settings?
3. Try using en-GB culture if you use another culture.Mikhail
ModeratorHello,
This has led to a polling cycle of calculation taking up to 10 seconds.
How did you calculate that?
Mikhail
ModeratorHello,
The main loop of the Server service iterates approximately 10 times a second. If you need faster calculation rate, I suggest to develop a specific module in C#.Mikhail
Moderatorif I want to determine that the conditions of Channel1==1 && Channel2==2 are met, and I want to send the Value of Channel3
It can be configured in Auto Control Module using a Multi-Channel Data Trigger.
-
This reply was modified 3 months ago by
-
AuthorPosts