Teilen Sie Ihre Erfahrunge und Wünsche mit uns und anderen Usern!

+1
Fixed

Error importing the Package

rexgatling1988 3 years ago in realvirtual.io Starter and Professional updated by R S 3 years ago 5

I get this error when I import the package to Unity:

Assets/game4automation/private/RuntimeUI/SceneMouseNavigation.cs(801,38): error CS0103: The name 'SpaceNavigator' does not exist in the current context

Answer
Support 3 years ago

Is fixed in latest release.

+1
Fixed

No Mutex PLCSim Advanced Interface proble

Pablo 4 years ago in realvirtual.io Starter and Professional updated by Support 4 years ago 18

Hello,

we are using the PLCSim Advanced Interface.

We can Import the PLCSignals without any Troubles:

Image 519

The first time that we start the simulation in Unity everything is working fine (COM OK).

But after we stop the unity editor and try to start again, we get “No Mutex”... so no communication is established between the plc and Unity.

We found out that creating a new PLC Instance and re-importing the signals “fix the error”... but just for the first run. Then we have to repeat the process of creating a new PLC again and again...

Could be some background process blocking the communication? Thank you in advance.

Answer
Support 4 years ago

Current working coupler.exe is available in the download area:

https://realvirtual.io/download/PLCSimAdvancedCoupler.exe

0

TRIAL

Image 1461


Hi, after making a build for the windows platform I see a big inscription trail verison, I have purchased the pro version, what's going on, the matter is urgent!

0

Downloaded version mismatch

Hello,

I selected version 6.3.3-9052 for download, but upon importing the downloaded file locally, the actual version turned out to be 6.3.3-9028.

Similarly, when attempting to download version 6.0.12-8862, the file I received was 6.0.12-8592.

I have verified this behavior through multiple tests, and the results were consistent each time; other users have also reported this issue.

I look forward to receiving a reasonable explanation from the official team.

Image 1460

0

RealVirtual I.O Digital Twin Professional version 6 vs 6.3

Dear,


I purchased and am currently using RealVirtual I.O Digital Twin Professional version 6.

Recently, when I tried to update my Unity project to version 6.3, 

I discovered that RealVirtual I.O Digital Twin Professional version 6.3 must be purchased separately.

I have two questions.

1) Do users who purchased RealVirtual I.O Digital Twin Professional 6.0 have to pay to purchase version 6.3 again?

(Is there no policy for upgrade costs rather than new purchases?)

2) Could you please tell me the key feature differences between RealVirtual I.O Digital Twin Professional 6.0 and 6.3?

Thanks.

Best regards,

Seokhyun Lee

Image 1459

0
Completed

PLCSimAdvancedCoupler.exe

p kowalczuk uae 2 months ago in realvirtual.io Starter and Professional updated by Support 1 month ago 1

Hi, when I try to run PLCsimAdvance and configure it, the same error appears as on SS and, the PLCSimAdvancedCoupler.exe download page does not exist.

Image 1457

0
Answered

Modbus client support

Andreas 3 months ago in realvirtual.io Starter and Professional updated by Support 3 months ago 1

Hi RV.IO-Team,

I’m currently testing Modbus communication between a Siemens S7-1514 (MB_SERVER) and realvirtual.io.

The TCP connection works and the client connects successfully, but the ModbusInterface script never populates the internal register arrays (e.g. outputregisters). Because of that the signals never receive values.

In the documentation I saw the note:

“Currently realvirtual.io can only be used as a Modbus master. Client support will be added in one of the next releases.”

Does this mean the polling/reading functionality is not fully implemented yet, or is there a recommended setup for reading holding registers from a PLC?

I would like to use Modbus for simulating valves and sensors in a digital twin, so knowing the intended workflow would help a lot.

Best regards
Andreas

0
Fixed

6.3 version problem with S7 TCPIP

Adam Peter 3 months ago in realvirtual.io Starter and Professional updated by p kowalczuk uae 2 months ago 8

Hi all! 

I am using the latest reavirtual. However, I am having problems with S7 TCPIP because the component displays "waiting to connect" and other error messages, and communication with S7-1200/1500 does not work, although it works with version 6.0.3. What could be the problem and what could be the solution? Thank you in advance for your hel

Answer
Support 3 months ago

Ah sorry, please check with this: S7Interface.cs

0
Fixed

realvirtualController CPU 500ms+

陈喜成 6 months ago in realvirtual.io Starter and Professional updated by Support 5 months ago 2

1.realvirtualController CPU 500ms+

private static void PreFixedUpdateCallback()
{
_fixedUpdateFrameCount++;

for (int i = 0; i < _preFixedUpdateHandlers.Count; i++)
{
if (_preFixedUpdateHandlers[i] != null)
{
try
{
_preFixedUpdateHandlers[i].PreFixedUpdate();
}
catch (System.Exception e)
{

//The performance analyzer determined that the `Object.FindFirstObjectByType()` call was taking more than 150ms++, so it was moved inside the catch block to avoid errors on every refresh.
var controllerInstance = Global.realvirtualcontroller ?? Object.FindFirstObjectByType();
Logger.Error($"Error in PreFixedUpdate: {e.Message}", controllerInstance);
}
}
}
}

//! Callback executed after FixedUpdate
private static void PostFixedUpdateCallback()
{
for (int i = 0; i < _postFixedUpdateHandlers.Count; i++)
{
if (_postFixedUpdateHandlers[i] != null)
{
try
{
_postFixedUpdateHandlers[i].PostFixedUpdate();
}
catch (System.Exception e)
{
//The performance analyzer determined that the `Object.FindFirstObjectByType()` call was taking more than 150ms++, so it was moved inside the catch block to avoid errors on every refresh.
var controllerInstance = Global.realvirtualcontroller ?? Object.FindFirstObjectByType();
Logger.Error($"Error in PostFixedUpdate: {e.Message}", controllerInstance);
}
}
}
}


2.The bug in the MQTT code has been fixed in the reply.

MQTT IN/OUTPUT ERROR [Repair] / realvirtual.io Forum / realvirtual.io (formerly game4automation)