معرفی شرکت ها


fmcw-3.2.5


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Library for fmcw radar
ویژگی مقدار
سیستم عامل -
نام فایل fmcw-3.2.5
نام fmcw
نسخه کتابخانه 3.2.5
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Alex Bondoux
ایمیل نویسنده alexandre.bdx@gmail.com
آدرس صفحه اصلی https://github.com/AlexBdx/Heli/tree/master/fmcw
آدرس اینترنتی https://pypi.org/project/fmcw/
مجوز -
# FMCW Based on initial & ongoing work by Henrik Forstén/[@Ttl](https://github.com/Ttl/). **Documentation:** [Read The Docs](https://fmcw.readthedocs.io) 1. [Generalities](#Generalities) 2. [Description of the flow](#Description-of-the-flow) 3. [Technical considerations](#Technical-considerations) ## Generalities ### Version convention Releases have a version number in the following format: X.YYY.ZZZ - X is the hardware version. - YYY is the release version - ZZZ is the minor update version ### History The FMCW package is a library designed to interact at a high level with the fmcw radar from Henrik Forstén/[@Ttl](https://github.com/Ttl/). If you are not familiar with it, start with taking a look at Henrik's blog post on the third version of the radar: [FMCW 3](http://hforsten.com/third-version-of-homemade-6-ghz-fmcw-radar.html) For additional information on this type of radar, you can also take a look at the previous blog posts written by Henrik. These older radars are not be compatible with this library but can help shine some light on radar theory and the history of the project: - [FMCW 1](http://hforsten.com/6-ghz-frequency-modulated-radar.html) - [FMCW 2](http://hforsten.com/homemade-synthetic-aperture-radar.html) Additionnaly, Henrik's fmcw project was covered in a few articles. For instance: - [Hackaday coverage](https://hackaday.com/2017/10/11/homemade-6ghz-radar-v3/) ### Where to get an fmcw3? Short answer: you have to make it yourself. Longer answer: only a few boards seem to have been made so far, all based on the files that Henrik uploaded on his GitHub repository. If you plan on building one, make sure you have: 1. proper hardware to place the components & reflow them 2. 200+ hours ahead of you (**VERY** dependant on your existing knowledge) 3. ~$500 Of course, these are rules of thumbs and should not be taken at face value. ![FMCW3](Pictures/board.jpg) ### I have an fmcw3, what should I do next? Congratulations! There are two main options: 1. You write your own script based on the library. This is expected to be hard as the documentation is lagging behind the code I write. 2. You reuse the latest release I have for the main script. This is the recommended option. In what follows, I will describe how I use the library with **190830\_rt\_fmcw3.py**, uploaded with release 3.1.ZZZ. ## Description of the flow Four main tasks are being executed by the script: 1. Read the data from the FPGA 2. Process the data 3. Save the data to file 4. Display the data in real time ### Architecture A picture is better than a thousand words so here is a schematic: ![Architecture](Pictures/Architecture.png) ### Read the data from the FPGA This step is less easy than it sounds for a simple the reason: the FPGA is a real time chip while everything else (the usb port, the OS on my laptop, python...) is not. As a result, the FPGA outputs data are fixed intervals and if anything down the chain is not ready to receive it, the 4 kb buffers on the FTDI chip will quickly overflow and be overwritten. I have not found a silver bullet for that problem so far and only managed to mitigate it. See here for more information: [Stack Overflow](https://stackoverflow.com/questions/57592288/pylibftdi-device-read-skips-some-bytes/57600370?noredirect=1#comment101895577_57600370) ### Process the data The data coming from the FPGA is parsed to separate it in sweeps. Valid sweeps are then processed in order to display 3 types charts in real time. Invalid sweeps (most of the time incomplete sweeps due to dropped bytes on the USB bus) are zeroed and displayed as such. ### Save the data to file Threads are used to write the data to file. A total of three threads are spawned from the main process: 1. One for writing the settings to file. Note that it is immediately closed after writing to file. 2. One to write the raw, byte data to a text file. 3. One to write the processed data to a csv file. ### Display the data in real time The main script offers the option to display data in real time. But there is no such thing as perfect real time: there is always a lag. Depending on how many sweeps you read at once from the USB port before processing, and how long these sweeps are, the lag can be increased or reduced. With the default settings, the lag is a few hundred ms. The refresh rate is also severly limited on most laptop given the amount of work needed to refresh a plot that can have tens of thousands of pixels on it. Despite minimizing the amount of elements to refresh when updating a plot and keeping each plot in a separate subprocess, 10 Hz appears to be the maximum refresh rate on my CPU (i7-8565U). Below, a few examples of the displayed plots: ![IF signal](https://i.ibb.co/JyPQQCg/IF-signal.png) ![Angle plot](https://i.ibb.co/vm1McyL/Angle.png) ![Range time plot](Pictures/rt.png) ## Technical considerations ### Batch processing Here is quick description of how a batch of data is processed. ![Batch processing](Pictures/while-loop.png) Feel like this is cryptic? It is. In a nutshell, the point is to mitigate the non-real time nature of the script as much as possible. It is not perfect and some data will be lost, but these days less than 5% is lost. If you ever want to learn more just reach out to me.


نحوه نصب


نصب پکیج whl fmcw-3.2.5:

    pip install fmcw-3.2.5.whl


نصب پکیج tar.gz fmcw-3.2.5:

    pip install fmcw-3.2.5.tar.gz