LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Question: How to make a radar simulation on XY Graph?

Solved!
Go to solution

yeah!! really helped a lot!!

0 Kudos
Message 31 of 52
(1,826 Views)

how to make 0-100 to vary with user input? and how to keep a reference limit where the object come near to reference it should do something (sound or led blink)?

0 Kudos
Message 32 of 52
(1,801 Views)

how to make 0-100 to vary with user input? and how to keep a reference limit where the object come near to reference it should do something (sound or led blink)?

0 Kudos
Message 33 of 52
(1,798 Views)

The nice things with complex numbers is that the absolute value of the difference of two points in the complex plane is the distance directly. So just subtract one complex position from the reference position, take the absolute value, and do a "less or equal" comparison, for example. Act based on the result of the comparison, e.g. using a case structure.

0 Kudos
Message 34 of 52
(1,793 Views)

Hi,

I have looked at "LocalDSP" example and tried to make something similar but with angle and length instead of X,Y coordinates.

Not sure if this is the best way to do it, but it seems to work, ich..., except that multiple "dots" are ploted when hitting a target.
Any suggestion on how to preventing this (multi dots)?
Or maybe another way to plot "one" dot when hitting a object (when object < 60) ?

 

________________________________________________
"Science is about knowing, while engineering is about doing"
0 Kudos
Message 35 of 52
(1,578 Views)

Hi S. Stock, 

 

I have not looked into the best way to architect a radar simulation, but why weren't you able to convert LocalDSP's example to polar? I haven't adapted the code myself, but I can't see how you would get two dots if LocalDSP's example is only plotting one. 

 

Thanks,

David F.

Applications Engineering

National Instruments

www.ni.com/support

0 Kudos
Message 36 of 52
(1,550 Views)

I have not tried to convert LocalDSP example to polar, but instead tried solving this using two polar-plots...
But again, this works only ich.... So i'm probably better of trying to convert he's application instead.
Since i'm not that familiar with polar-plots, maybe someone could come up with an example on how to convert; "distance" and "angle" to X,Y coordinates (for a 180-, not 360-plot ) for he's application (LocalDSP)? 🙂

 

________________________________________________
"Science is about knowing, while engineering is about doing"
0 Kudos
Message 37 of 52
(1,532 Views)

I already replied to your question through private email some days ago:

 

"The XY coordinates can be converted to/from polar coordinate if you prefer a distance & angle approach. Use the Re/Im to Polar or Polar to Re/Im LabVIEW primitives (Numeric>>Complex palette) to perform the conversion. Your X and Y values then represent resp. the Real and Imaginary values connected to the primitives. Remember that all angles are represented in radians, not degrees."

Message 38 of 52
(1,521 Views)

This is what I've got so far (after converting as mentioned) Smiley Happy
The remaining problem now is that the "dot" disappear to fast from 180-360 and looks halved from 0-180 Smiley Surprised


________________________________________________
"Science is about knowing, while engineering is about doing"
0 Kudos
Message 39 of 52
(1,495 Views)

I tried running the revised VI you attached, but I'm unable to see the point plotted at all, no matter what value I change the input to. Is this the behavior you're experiencing?

 

 

Lindsey Nestor
Program Manager, Hardware Services
National Instruments
0 Kudos
Message 40 of 52
(1,478 Views)