How to simulate a radar device? #270
-
|
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
Hi @qiangdadi, thanks for asking! DiffeRT mainly provides physical-layer utilities, so you might need to implement a few things yourself if you want to model a complete radar system. If you have moving targets, and you want to have information about the Doppler effect with respect to those moving objects, you should be able to derive the resulting path coordinates with respect to the targets' positon. To do so, you could create some function Do you have an example problem you want to solve so I can better guide you and probably provide some actual code? |
Beta Was this translation helpful? Give feedback.
-
|
Sorry for the later reply and thanks for your reply. I found the solution. |
Beta Was this translation helpful? Give feedback.
Hi @qiangdadi, thanks for asking! DiffeRT mainly provides physical-layer utilities, so you might need to implement a few things yourself if you want to model a complete radar system. If you have moving targets, and you want to have information about the Doppler effect with respect to those moving objects, you should be able to derive the resulting path coordinates with respect to the targets' positon. To do so, you could create some function
add_moving_objects(positions: Array, mesh: TriangleMesh) -> TriangleMesh, wherepositionsis an array of your targets' position, and another bigger functiontrace_paths(positions: Array, scene: TriangleScene) -> Pathsthat traces all the paths for a g…