From 04:00 PM CDT – 08:00 PM CDT (09:00 PM UTC – 01:00 AM UTC) Tuesday, April 16, 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: 

orthonormal scale

Solved!
Go to solution

Hi,

 

I've got a problem with plotting data with Labview. I am plotting Nyquist charts, but I was not very happy of the nyquist vi on labVIEW. Therefore, I was wondering how to plot the two axis in orthonormal scale (as shown on the picture). It is not something labview does automatically, and it is rather annoying, and therefore I was wondering whether one of you might have a suggestion for this.

 

Let me know

 

Kentmey

 

 

Kentmey
0 Kudos
Message 1 of 29
(3,159 Views)

I am not aware of a nyquest.vi in plain LabVIEW. Are you talking about a toolkit?

 

I am not sure what is specifically important to you in the picture you are showing, but a plain XY graph can probably do that. You can add lines, text, decorations, etc. using the "Plot images" properties. (example)

0 Kudos
Message 2 of 29
(3,138 Views)
Well, my point on the picture was that the lenght between 0 and 1 is the same on the x and y axis, something that is not done automatically when plotting data with labview.

Does it make it more clear now? this is called orthonormal scale.

Kentmey
Kentmey
0 Kudos
Message 3 of 29
(3,126 Views)

Well, you should (1) turn off autoscaling, (2) right-click...advanced... disable "autoadjust scales", then (3) size the graph area with equal number of pixels in each dimension.

0 Kudos
Message 4 of 29
(3,119 Views)

Kentmey,

 

You can use property nodes to set the plot area, the scales, and other plot parameters as well as the plane type (to set it to Nyquist).  I suspect that this is new enough and a relatively low percentage of users of XY Graphs that NI decided not to tie several properties together when you select the Nyquist plane or any of the other specialty graphs.

 

I suggest you customize a graph to get all the parameters set the way you want and make a strict typedef.  Then use that whenever you want a Nyquist plot.

 

Lynn

0 Kudos
Message 5 of 29
(3,116 Views)

@johnsold wrote:

Kentmey,

 

You can use property nodes to set the plot area, the scales, and other plot parameters as well as the plane type (to set it to Nyquist).  I suspect that this is new enough and a relatively low percentage of users of XY Graphs that NI decided not to tie several properties together when you select the Nyquist plane or any of the other specialty graphs.

 

I suggest you customize a graph to get all the parameters set the way you want and make a strict typedef.  Then use that whenever you want a Nyquist plot.

 

Lynn


Untitled.png

 

--
Tim Elsey
Certified LabVIEW Architect
0 Kudos
Message 6 of 29
(3,112 Views)
Now we are talking. will give it a try tomorrow & let you know how that goes.
Thanks 🙂
Kentmey
0 Kudos
Message 7 of 29
(3,110 Views)
@else191 : tried that already, just adds axis, and doesn't actually makes what i want ( described earlier in discussion)
Kentmey
0 Kudos
Message 8 of 29
(3,108 Views)
@altenbach : but wouldn't this keep the same scale during the plotting? or will this keep updating?
Kentmey
0 Kudos
Message 9 of 29
(3,103 Views)

Kentmey,

 

If you want the scales to change as your data changes but also to retain equal scales for both axes, you will need to do the work yourself.  Calculate the range you want and set the scales with property nodes. You may need to use Defer Front Panel Updates while making the changes.

 

There are many properties for graphs, their scales and axes, plot sizes, and so on.  Many of these interact in complicated ways.  Decide what you want the graph to do under various conditions and then write a trial VI which allows you to exercise those conditions and try various properties until you get it to do what you want.

 

Lynn

0 Kudos
Message 10 of 29
(3,098 Views)