Forum Replies Created
-
AuthorPosts
-
manjey73ParticipantPort forwarding for example
Checking the IP provider, it is not a fact that you will be able to connect to it, since it may be for NAT
For example, routers Zyxel, Mikrotik and perhaps others have a cloud service to access them, then instead of an IP address, you need to know the name that the router manufacturer provides you with
xxxxxxxxxxxa.sn.mynetname.net – On my Mikrotik it looks like this (instead of xxxxx numbers)
manjey73ParticipantID: 0.1.3.6.1.4.1.232.6.2.6.8.1.4.0
Have you tried it ?
manjey73ParticipantThe schema editor has a Link component. Open your mnemonic and see its address in the browser’s address bar, for example http://192.168.0.121/scada/View.aspx?viewID=4 and enter the url in the Navigation parameter
manjey73ParticipantThe individual components of the system have different numbering
manjey73ParticipantIs regular xrdp not enough ?
manjey73ParticipantThe name of the formula is if_S_S not If_S_S
manjey73Participanthttps://github.com/mono/mono/issues/18864#issuecomment-593561532
if the package version does not belong to xamarin6
manjey73ParticipantCheck whether you have libapache2-mod-mono installed. And check what version of the package is, if it is not installed.
manjey73ParticipantCurrently only using the OPC server. If you find an OPC UA for this Protocol it will be better
manjey73ParticipantIt is no different from other modules. Will work
manjey73ParticipantSet the output format of the input channel as D
February 25, 2020 at 6:17 am in reply to: simple Formula that compares an Integer or real and returns Boolean #6555
manjey73ParticipantHysteresis added to Formula tab
int[] HysNum = new int[1]; bool[] Hys = new bool[1]; public double Hysteresis(double inCnl, double low, double high) { bool q = Val(CnlNum) > 0; int res = Array.IndexOf(HysNum, CnlNum); if (res == -1) { res = HysNum.Length; Array.Resize(ref HysNum, res+1); Array.Resize(ref Hys, res+1); HysNum[res] = CnlNum; Hys[res] = q; } if (inCnl < low) Hys[res] = true; if (inCnl > high) Hys[res] = false; return Convert.ToDouble(Hys[res]); }In the channel, use the formula Hysteresis(Val(X), 32.5, 33.5))
Where Val(X) is your measurement channel. Enabling and disabling the output is already configured for the channel in which you use the Hysteresis formulaFebruary 25, 2020 at 6:13 am in reply to: simple Formula that compares an Integer or real and returns Boolean #6554
manjey73ParticipantIt is not correct to compare the real number, simply because it can fluctuate within certain limits, for example, 32,999-33, 019, and then you will have the output turned on and off. You need to apply Hysteresis to avoid this. Kind of laid out the formula of Hysteresis on the forum.
manjey73ParticipantIn Russian, too, the HTTP Error 503 error. The service is unavailable.
manjey73ParticipantDo not pay attention, in SNMP, the variable itself is most likely still text with a label that it is a number. The Communicator displays it probably before sending it to the Scada database. Use the number format in the table to apply the correct multiplier
-
AuthorPosts