How to design a digital filter dump given in dB/Octave

I am designing a filter to DFD based on the attached image 'filter criteria. I think it's the prescription given by this image, the filter should be somewhere between two possible filters "border". I have convinced myself that the attached filter does not fit this criterion.

My thought is now that this criterion could be completed by a butterworth filter, as shown, but with the frequency of edge stopband at 250 Hz instead of 100 Hz, or an elliptic filter with a frequency of 100 Hz and the frequency of edge stopband at 1066 Hz edge of bandwidth, or any filter that is between the two.

I'm looking for details on how to enter the DFD toolkit directly given design criteria, so to know if there is a way to capture the attenuation in dB/Octave, or if my alternative interpretation of this roll-off can be used to design a filter as shown.

Any help is, of course, appreciated.

Thank you

Justin

Hello

It seems that you were using the stopband point as your fN instead of turning it off at the corner of the - 30 dB line and - line 9 dB/Octave.

If you do this, as well as use the 100 Hz points like the edge of your bandwidth, you should find that you can get a nice butterworth filter that is inside your notebook loads. For reference, here's something needs I came what looks like, it adapts to your needs:

Tags: NI Software

Similar Questions

  • How to design a digital filter without addon Kit

    Hello

    I want to design a bandpass filter. Original signal is in analog form, ADC is used to convert the entries in the data digital n vice versa at the end of the output. How in labview 8.5 without addon Toolkit. Secondly how do I check the response of the filter according to these digital data, because by default, it gives the IMPULSE response, so how his will handle digital data...

    Thank you!!

    In the impulse response 1 sample is greater than zero, the rest is equal to zero. For the step response values are zero before the stage and not zero after the stage. To do this just make a table with the signal you want to use. But the table must be long enough to cover your analysis in the time domain. For example. I'm working now with digital phase sensitive detector. For this I use a sampling rate of 20 kHz, one of the last steps is an order of 3 Hz 20 filter low pass. To test the response of this filter, I needed at least 12 seconds of data. If the table that contains the data was 20000 * 12 samples

  • How to apply the classic filter Design Express VI

    I use the digital classic filter Design VI design a bandpass filter (try to follow this example http://www.ni.com/white-paper/4460/en/), but then I can't locate

    Filter Express VI to use the filter

    The express VI filter comes with the LabVIEW base development system. It is found in the range of functions under Express > Signal Analysis > filter. Have you checked here?

  • How to design the oscilloscope... need idea, advice and suggestions...

    Hello...

    Student MI... so I'm new to LabVIEW... so I use LabVIEW 8.6 and NEITHER cDAQ-9178 for the connection between the material... and my PC... now, I have final project... I have to design digital oscilloscope using labview, but I have several problem...

    1) How to design the scope of design

    (2) I have the simple design pattern to display the wave... but stil have some problem, this block diagram... how I want to develop the other party such basis of design time, control vertecal, cityscape control, capture the wave... and etc.., I was the previous oscilloscope in labview reserch and I desgin again by reffer the previous... but still no function...

    Hopefully, someone can help me... to give me an idea, opinion or suggestion for me to complete my project... fnl plz... now, I declare my design... and all I recommend and agree with the suggestion of someone... Thank you very much

    Hello

    That must be validated in the jury of LabVIEW so I'll move it for you. The jury of feedback is used specifically to provide feedback on the forums and their features.

    In order to receive the best support on the Forums of Discussion OR, please post your question publicly on the map that best matches the products you use. This allows your question be seen by members of the forum in the world, thus allowing users the most expertise in this field for you help. Additionally, once your issue is resolved, users of the forum with the same question in the future can benefit from your experience.

    To start a new thread on the Forums OR, go to the correct product management on forums.ni.com Board and click on the "New Message" button. You will be directed through a search to see possible solutions. If you don't find a solution, you can proceed to post your question on this Board.

    Kind regards
    Jordan
    The Forum Moderator OR

  • How do I remove the filter from column of table without QueryEvent

    Hi all

    With the help of JDev 12.1.3.

    I have a table that contains a list of customers and suppliers like so.  Auto Repair Bob is a client.  Chips R Us is a seller.

    Name                | TypeKey (foreign key to the Table of Type) | Unique ID

    Auto repair Bob C 1

    Quickie Mart C 2

    R chips us V 3

    Let's say that I filter on 'V' through the user interface by selecting a choice selection of the column in the table.  Now only chips R Us opens.

    Name                | MasterTypeKey | Unique ID

    R chips us V 3

    Now, let's say that I want to remove my filter I can do another business process programmatically.  How to do that without requiring a QueryEvent and so to refresh a page?  I have been searching the various view classes of being variable Manager and have located the variable I need to remove it, but I'm not sure how to let him go.

            // get the query in it's current state
            String lQuery = bpIterator.getViewObject().getQuery();
            //get Valriables
            VariableValueManager lEnsureVariableManager = bpIterator.getViewObject().ensureVariableManager();
            Variable[] lVariables = lEnsureVariableManager.getVariables();
            int lCount = lEnsureVariableManager.getVariableCount();
            // Dump query
            System.out.println("---query--- " + lQuery);
            // if variables found dump them
            if (lCount > 0){
                System.out.println("---Variables:");
                for (int ii = 0; ii < lCount; ii++){
                    Object lObject = lEnsureVariableManager.getVariableValue(lVariables[ii]);
                    System.out.println("  --- Name: " + lVariables[ii].getName() + " Value: " +
                                       (lObject != null ?  lObject.toString() : "null"));
                }
            }  
    

    Makes me

    ---query--- SELECT BusinessPartners.COMPANY_ACCOUNT_ID,       BusinessPartners.MASTER_TYPE_KEY,         BusinessPartners.NAME,         BusinessPartners.BUSINESS_PARTNER_REF_KEY,      FROM BUSINESS_PARTNERS BusinessPartners WHERE ( ( ( (UPPER(BusinessPartners.MASTER_TYPE_KEY) = UPPER(:vc_temp_1) ) ) ) ) AND BusinessPartners.COMPANY_ACCOUNT_ID = :Bind_CompanyAccountId ORDER BY BusinessPartners.NAME
    ---Variables:
      --- Name: vc_temp_1 Value: C
      --- Name: pCompanyAccountId Value: null
    

    I am trying to get vc_temp_1 is deleted or to accept any value, but when I write what follows I get an error message "missing parameter IN or OUT."

    lEnsureVariableManager.removeVariable("vc_temp_1");
    

    Any ideas on how I can remove the filter on my view object?

    It cannot work without running the query again. As you see that the filter is running a query make the vo is not all data.even if you delete the variable filter, that you do not get the data from the database you need to show.

    You can reset the filter (see https://tompeez.wordpress.com/2013/08/06/jdev-12c-how-to-reset-a-filter-on-an-aftable-the-12c-way/) but you must run the query again to the corresponding data.

    Timo

  • How to get Dolby Digital 5.1 sound on Qosmio?

    I wonder how to sound Dolby Digital 5.1 Qosmio. Whenever I play an original DVD movie, all I can get is Dolby Prologic 2. Have a link with DRM? I use Thomson mini plug opto cable. Home Theater receiver accepts digital input but does not have 5.1 sound. The movies that I download with DRM removed HD forums gives the same results. Where is the problem?
    Thank you

    Hello

    The line line and S/PDIF audio headset uses the same output.

    It is possible to connect the audio/video receiver via SPDIF optical cable.
    http://www.LaCie.com/products/product.htm?PID=10739

  • I hated W8, how do I reinstall the W7? Given that I don't have the installation CD, only the CODE.

    I hated W8, how do I reinstall the W7? Given that I don't have the installation CD, only the CODE that is in the back of the laptop.
    My laptop is HP Pavilion g7-2114so.

    Hello

    You can create a Windows 7 installation disc yourself - just download the good Disk Image ( must be the same version that originally came with your laptop - IE Windows 7 Home Premium 64-bit ) from the link below and use an app like ImgBurn to burn the ISO correctly on a blank DVD - a guide on the use of ImgBurn to write an ISO on a disc is here.  These Images are clean and a well respected source, however there are only limited versions available.

    Windows 7 sp1-iso-official-32-bit-and-64-bit

    Use the disk to perform the installation, enter the activation key of Windows on the label of the COA at the request and once the installation is complete, use ' 'phone Method' described in detail in the link below to activate the operating system -this made method supported by Microsoft and is popular with people who want to just have a new installation of Windows 7 without additional software load normally comes with OEM installations.

    http://www.kodyaz.com/articles/how-to-activate-Windows-7-by-phone.aspx

    All pilots additional and the software, you may need can be found here.

    Kind regards

    DP - K

  • Digital filter on the sample clock 6601/6250

    Hello

    I use a PCI-6601 (Dev1) and the card PCI-6250 (Dev2) connected via a cable RTSI.

    I apply a PWM signal to the 6601 ctr0 (Dev1 / / PFI38) and activate the digital filtering (100 ns) on the respective task (measure of the period).

    I apply an analogue signal to AI0 map of 6250. As I am interested in a sample of analog measurement when the PWM signal changes from low to high, I put the clock sample of the AI task source ' Dev1 / / PFI38 "and the side assets of clock sample"Insurrection. "

    Everything works fine, but I have a question:

    The sample for the AI clock is the task the filtered PWM signal or not filtered PWM signal?

    Kind regards

    Udo

    Hi Udo,

    Great question!  Digital filters are actually not part of the subsystem of counter, but rather the line itself PFI.  So, if you have activated the digital filter for a specific line of the PFI, the signal that you route to any subsystem of the PFI line will have already crossed the filter.

    It's actually the workaround to the PFI filters on M-series / TIO DAQ devices when you are not using meter (materials of filtering on each PFI line but the DAQmx driver allows only the filtering part of duties of counter on these devices).

    I also wanted to emphasize that the 6250 itself has 2 onboard counters, then you could do the same thing using just the 6250 (unless you use more than 2 meters).  I hope this helps!

    Best regards

    John

  • SMU-5451. digital filter Interpolation

    Hello

    I use the SMU-5451 with FPGA SMU-7966R signal generator. They are related to peer-to-peer technology.

    I want to use the digital filter of Interoplation, but there is a place to errors in the property node. Here is a screen of this error.

    What should I do to fix this?

    Looks like the 5451 doesn't have a digital interpolation filter.  There is only a FIR filter on the device.  You can check that this is the case and that the problem is not the use P2P when trying to run a script example that does not use P2P and setting this property.  You should get the same error.

  • How to design and the list in ascending order from the minimum to the maximum with 6 entries

    Hello

    How to design and the list in ascending order from the minimum to the maximum with 6 entries in Labview?

    It is easy to write in C++, but not in Labview, can be that I am new to Labview. I managed to get the 1st and the 6th after a comparison, but I can't get the 2nd, 3rd, 4th, 5th.

    and can I write language c ++ in Labview VI?

    Thank you.

    Try this:

  • digital filter 4474

    I use a card PCI-4474 sampling rate maximum of 102400 Hz

    One of the 4 analog inputs is TTL signal for the timestamp: see exhibit attached with the number the horizontal sample [#] and vertical supply voltage [V].

    The swing before the front, it seems as if a digital filter is applied in this forum.

    With the other signs of my request, there is no margin of time for these oscillations before the face steep.

    Y at - it an option to disable this feature? (that's my assumption is correct: disable the digital filter?)

    I'm with LabWindows CVI with DAQmx

    I use Windows 7 x 64

    Kind regards, Jos

    Yes, it's because of an internal filter.

    No, there is no option to turn it off.  It is inherent to all NI DSA devices.  See this article for more information.

    -Kevin P

  • How can I change the filter settings for the e-mail account of my child?

    How can I change the filter settings for the e-mail account of my child?

    Hi Schaefle,

    May I know if you refer to web filtering? If Yes please visit this link to learn how to change the filter settings.

    Note: for to work in web filtering settings, you must install and configure the filter of family security on each computer your child uses.

    For more information on parental controls, please visit http://windows.microsoft.com/en-US/windows-live/essentials-help-center

    Thank you!

  • How to use the digital pen on W700 (Win 8 version)

    Expert HE,

    How to add the digital pen for W700 with my digital "BAMBOO PEN - CTL-470' pen?

    or I buy Acer digital pen?

    Thank you

    A pen that works with a bamboo tablet is not compatible with the W700. Pens like that (fine point, sensitive to pressure, etc.) require what is called an active digitizer, which does not have the W700.

    You can use an inexpensive capacitive stylus like those that are advertised for the iPad and the iPhone, but those who are actually just a substitute for finger; the contact surface is a bit smaller and so maybe a little more specific than the finger and you will find perhaps more comfortable, but it does not add capacity.

  • How to set up a filter

    I need to know how to check if the filter is properly configured or how to set up a filter...

    I need to do to solve the problems of indexing

    "I suggest you to check if the filter is properly configured. If the problem is not caused by the filter, and then increase the amount of data indexing service allows per document. To do this, you should change the value for MaxFilesizeMultiplier

    registry entry. I suggest you follow the steps mentioned below. »

    Hello

    See the steps listed in the link below:
    How to create and configure a catalog for indexing
    http://support.Microsoft.com/kb/308202

    I hope this helps.

  • How to turn off inprivate filter? When I go to security and turn it off I'm ok until I quit internet Explorer

    Original title: filter inprivate

    How to turn off inprivate filter? When I go to security and turn it off I'm ok until I quit internet Explorer

    What you say has not added to the top...

    InPrivate Browsing must be turned on by you.

    At the time wherever you go out navigation, Inprivate browsing is also disabled.

    Read the last sentence of this screenshot...

    Maybe I misunderstood what you are saying?

Maybe you are looking for

  • No carga los widgets no Twitter in Québec lo usan las webs

    Los widgets twitter para poder see any chronology of any cuenta no las carga en don't webs as lo use.For example, TR saw el blog https://footballmanagerspain.wordpress.com no carga a derecha el widget twitter, don't solo pone 'Put tuits' pero no work

  • Headset doesn't work does not after upgrade Windows 10

    I have a similar problem with Pavilion 500-249. No sound from headphones, well that helmet gets OK in Device Manager. Also, when headphone is plugged, speakers are not dumb. Says Windows troubleshooting headphones do not set as default, but 'apply th

  • Need motherboard for Equium A60

    Hi, I am looking for a motherboard for my laptop, it is a model of P4532/256 / Equium A60 40GB not. PSA67E-00200D8J.Could someone tell me what is the reference number of the card mother or even where I would be able to get an a? Thank you very much R

  • small runtime for more recent versions of labview?

    A few times in the past, I created simple LabVIEW autonomous executibles.  I did this in 8.6 and used minimum duration Engine Setup instead of the full version.  This resulted in a size of 30-35 Meg installation package. Agin need to create a simple

  • WINDOWS 7 STARTER/ACER ASPIRE ONE UPDATE HELP

    I have a brand new Acer Aspire One Netbook.  It is brand new, so after I did the initial installation for the new netbook, Windows 7 is an update.  When the update is complete, it blocks my netbook.  I get a black screen and a cursor only.  The only