From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

ODE Solver - error -2334

Hello,

 

In my VI I want to solve a differential equantions.

My VI is based on examples found in LabView help.

After I started the VI I reciced an error message "Error -2334 occurred at an unidentified location: Control Design and Simulation: An overflow occurred in the ODE solver."

Equation (4.65) is in my VI equation 5 and equation (4.67) is in my VI equation 6.

Equation 9 is in attachments.

I tried to find in help and on the internet what is causing this error, but without any results.

I try to solve a very difficult differential equantion, so maybe it could cause an error.

I am using an Labview 2015.

 

Thank you very much for help

Best regards

Piotr

 

0 Kudos
Message 1 of 7
(1,124 Views)

You need to get rid of ALL your local variables. They are completely misguided here.

 

LabVIEW is a parallel language and all your code islands will execute in parallel, meaning that most local variables will get read way before the terminals gets written, causing glaring race conditions and unpredictable outcome.

 

This is not text programming. In LabVIEW, the wire is the variable. (Local variables just provide alternative access to the terminals of front panel objects).

 

 

(... and why would you hide terminals behind "index array" primitives?? Are you intentionally trying to obfuscate your code even more??? Why is your toplevel caller not part of the project? Why does the toplevel have a greedy while loop?)

0 Kudos
Message 2 of 7
(1,108 Views)

Thank you very much for help.

I'm learning how to program in Labview now.

This code is an adaptation of two examples that I found in "Find Examples" section. 

I simply forgot to add a top caller VI to the project, my mistake.

 

Best regards

Piotr

0 Kudos
Message 3 of 7
(1,069 Views)

Hello

After delating all the local variables (i replaced it with a created subVIs and 3 clusters to transfer data) and error still shows.

Do you have any idea how to fix it?

 

Best regards 

Piotr 

0 Kudos
Message 4 of 7
(1,051 Views)

I doubt it is reasonable that all inputs are zero. As a first step, can you fill all your controls of the toplevel with reasonable values and make them default before saving. We cannot possibly guess what reasonable values are. 

 

It is also very distracting if you still hide the array terminals behind the index array nodes. There is absolutely no reason for that.

Also please use the standard connection panes. It would be significantly less wiring if your subVIs would output arrays instead of hordes of scalars.

0 Kudos
Message 5 of 7
(1,047 Views)

All the equations describes a specific type of pendulum, so if all imput data are 0, the function should return 0.

Even if I chechs how function VI works - all the calculations are correct. I think the problem is in the solver, but I don't know how to correct it.

0 Kudos
Message 6 of 7
(1,036 Views)

The solver is a plain VI that you can inspect in detail to see what's happening inside.

0 Kudos
Message 7 of 7
(1,034 Views)