How to calculate inter channel delay for ni6013

I have a NI 6013.I am using this board to acquire data from 4 channels , with minimum inter channel delay.Inspite of going through the answers on the developers zone i am confused about the caluclation of sampling rate for each channel...
I have 3 questions:
1) What is the minumum interchannel delay possible in NI 6013?.
2)Since i have an acoustic application,I would like to sample at around 20 Khz.
3) Can I use a higher frequency for scanning?

You are correct in all your assessments except for the last sentence that should say "the only way to make the delay insignificant would be to increase my sampling rate". The higher the max sample rate of the board, the smaller the inter-channel delay can be.
If you are interested in minimizing (or totally removing) your inter-channel delay, you may want to consider the following. Since you know the value of your delay, you can either correct for it in the frequency domain (if you are doing frequency domain analysis) or even process your signals in the time domain using appropriate filtering. The last technique was described in an NI-Week 2000 presentation. See:
ftp://ftp.ni.com/pub/devzone/pr1h.ppt
Finally, if you choose to correct for the int
er-channel delay in a post-processing operation, it may actually be better to maximize (!) your inter-channel delay in order to minimize inter-channel cross-talk caused by the physical settling time of your board. The AI-Config VI provides an input where you can control the interchannel delay (as a multiple of 5 us in your case) so with 4 channels configured you could enter for example 10 us.
I can send you the LabVIEW software used for the presentation on request. Please email me at [email protected]

Similar Messages

  • How to calculate number of rows for perticular characterstic in SAP BI Bex

    Hi experts,
    Please let me know how to calculate  ' number of rows  ' for perticular characterstic in Bex query. 
    Thanks & Regards,
    Babu..

    Hello,
    You can try this
    Create a CKF and assign the vale 1 to it. Open the query and select Character where you want to display ' number of rows ', go to properties windows, select 'display', in the results row drop down box, select  'always display'.
    Thanks.
    With regards,
    Anand Kumar

  • How to calculate work in process for maintenance order

    how to calculate work in process for maintenance order i.e raw materials not used

    Hi,
    Generally, when u create PR from maintenance order, account assignment category should be F. Cost of services first settles on the order when u create service entry sheet. Further it got settled onto settlement receiver given in order.
    If you want to change the category from F to K for maintenance orders then follow the IMG menu path as given below.
    Plant Maintenance and Customer Service > Maintenance and Service Processing > Maintenance and Service Orders  >
    General Data > Define Account Assignment Cat. and Document Type for Purchase Requisitions

  • How to calculate no.of records for a specific company Code and Transaction

    Hi All,
    Could you please help me how to calculate or count no.of records, in a table which are having a specific Company Code and Transaction Code and populate  in an output table displaying that these many records are present for this company code and Transaction code.
    The table is having the data like this:
    LOB   TRAN CODE    COUNT
    X1                             1   
    X1                              2   
    X1                              3   
    X1                              4   
    F1   NB                      5   
    F1   NB                     6   
    F1   NB                     7   
    F1   NB                    8   
    F1   NB                    9   
    F1   NB                    10  
    F1   NB                    11  
    F1   NB                    12  
    F1   NB                     13  
    F1   NB                     14  
    F1   NB                     15  
    F1   NB                     16  
    F1   NB                     17  
    F1   NB                     18
    F1   NB                    19  
    F1   NB                    20  
    F1   NB                   21  
    F1   NB                   22  
    F1   NB                   23  
    F1                          24  
    F1                         25  
    F1                         26  
    F1                         27  
        In the above table there are totally 27 records,where as the no.of records with F1 as company code and NB as transaction code are 18..so i have to display like F1 NB and 18 as one record as output.
    Thanks and Regards,
    Johny

    You can go for Control Breaks for your requirement.
    First sort the internal table by company code and transaction. Declare a counter variable.
    Now loop the internal table and increment the counter variable. within the loop use AT END OF tcode.......ENDAT. Within the control break append the counter variable as well as the company code and tcode to some other ITAB and clear the counter.
    This will give you the total number of records for a combination of co code and tcodes.
    This will be a good reference for your requirement. What I am doing here is, for each Vendor i am calculating total number of deliveries and amounts for that vendor. For every new vendor i am writing the ouput on to a list and clearing the counter variables.
      LOOP AT t_vend_prod_grp INTO fs_vend_prod_grp.
        w_total_delv = w_total_delv + 1.
        w_total_amt = w_total_amt + fs_vend_prod_grp-dmbtr.
        AT NEW matkl.
          w_mat_grp = fs_vend_prod_grp-matkl.
    * To display the material group and the header texts for the data
    * grouped by material group and vendor.
          SKIP 1.
          WRITE:  text-mtk  COLOR COL_HEADING
                                  INTENSIFIED,
                / w_mat_grp COLOR COL_NORMAL
                                  INTENSIFIED OFF.
          SKIP 1.
          FORMAT COLOR COL_HEADING ON INTENSIFIED.
          ULINE  1(54).
          WRITE:/ sy-vline,
                2 text-ven,
               12 sy-vline,
                  text-dlv,
               26 sy-vline,
               38 text-amt,
                  sy-vline,
               46 text-cur,
               54 sy-vline.
          ULINE /1(54).
          FORMAT COLOR COL_HEADING OFF INTENSIFIED.
        ENDAT.                             " AT NEW MATKL
        AT END OF lifnr.
    * To display the actual data for the grouping based on Material group
    * and Vendor.
          FORMAT COLOR COL_NORMAL ON INTENSIFIED OFF.
          WRITE: / sy-vline,
                 2 fs_vend_prod_grp-lifnr COLOR COL_KEY,
                12 sy-vline,
                   w_total_delv,
                26 sy-vline,
                   w_total_amt CURRENCY text-usd,
                   sy-vline,
                46 text-usd,
                54 sy-vline.
          FORMAT COLOR COL_NORMAL OFF INTENSIFIED OFF.
          CLEAR: w_total_amt,
                 w_total_delv.
        ENDAT.                             " AT END OF LIFNR
      ENDLOOP.                             " LOOP AT T_VEND_PROD_GRP

  • How to calculate TLF Text Position for PHP

    Hi, we are using TLF Text for creating a simple application, to create PDF files from PHP.
    We tried with our TLF and Classic text difference for y Position. there we got 20% approx gap, from top, in TLF. Can anybody tell me? How to calculate Y position of TLF Text including line height for the new line text, for PHP?

    Holy cow... by the loop you just mentioned you're literally trying to make a TextField for every single character?! That's really unadvisable as an approach overall.
    I'm not sure how this suits your needs but finding a common medium is the best route here. Here's a couple route change suggestions and then at the end if you really still want to persue this method I'll let you know the method you want to use.
    One way is is to make a stylesheet that is re-usable between both TLFTextField and TextField. As long as the same classes are applied to both fields they will look "as close as possible" to identical as long as the same stylesheet is applied to both. Then it's just copying all the text from one field to another once.
    The other way which offers a bit less flexibility but still can work is to use HTML directly to style the text. Some attributes like line spacing and such are not supported directly in HTML without stylesheets but you can do a bit of common formtting (like color, font family, font size, bold, italic, etc). Then if you enable the classic TextField's .html property to true you can again just copy the text directly into it and it will format based on the HTML.
    If you can't persue either of these, the method you're looking for is this:
    http://help.adobe.com/en_US/FlashPlatform/beta/reference/actionscript/3/fl/text/TLFTextFie ld.html#getCharBoundaries()
    getCharBoundaries() returns a Rectangle which contains the x, y, width and height boundaries of the character index you supply. So in your loop you would do something like:
    txt.y = tlft.getCharBoundaries(i).y;
    The height and width would also be useful for you in certain cases where exotic formatting is used.

  • How to calculate with holding tax for the open item

    Dera all,
    Can you tel me how to simulate with holding tax for the open item? i will try do it using FI_WT_F110_CALCULATE FM  but it dosnt work. plz help me
    regard
    nawa

    Hi Sushil,
    can you please elaborate on how you resolved it. we are facing the same issue with BAPI not calculating the withholding tax data.
    Thanks,
    Sanket

  • How to calculate Length of service for an employee

    Hi All,
    I need to calculate Length of Service for an Employee in PA.
    Is there any Function Module for that?
    Thanks and Regards
    Partha.

    Here is what we use in our reports...
        CALL FUNCTION 'COMPUTE_SEARVIS_YEARS_J'
          EXPORTING
            first_date                  = start_date
            second_date                 = end_date
          IMPORTING
            years_between_dates         = llength_service
          EXCEPTIONS
            sequence_of_dates_not_valid = 1
            OTHERS                      = 2.

  • How to calculate the maximum session for Confernecing and Xcoder on VG

    Hi All
    Please help me to understand the logic and concept that how we can calculate the number of session that we can define for the Conferencing and Xcoder  Configuration on the VG.
    Regards
    Chaman

    Hi Jaime
    Thanks for Reply.
    I created the Dsp profile . According to ISR i configured the Sessions . But i want to know the exact concept how to calcluate and if suppose i want some modification in future according to the conference calls that i want to support how do i calculate??
    dspfarm profile 2 transcode 
    codec g729abr8
    codec g729ar8
    codec g711alaw
    codec g711ulaw
    codec g729r8
    codec g722-64
    maximum sessions 13
    associate application SCCP
    dspfarm profile 1 conference 
    codec g729br8
    codec g729r8
    codec g729abr8
    codec g729ar8
    codec g711alaw
    --More--                            codec g711ulaw
    maximum conference-participants 16
    maximum sessions 3
    associate application SCCP

  • How to calculate 25,000 ceiling for uploaded songs

    Can you help me calculate how close I am to hitting the 25,000 ceiling for uploaded songs? 
    I still have more CDs to upload but don't know how to measure what capacity I have left for more songs.
    Here are my stats -
    A.    Under My Music, on the left side, it says
    All artists - 46,762 songs
    Compilations - 733 songs
    Question 1:  Is the total number of iTunes Match songs 46,762 or 47,495 (46,762 + 733)?
    B.  Under Playlists, on the left side, it says
    I have only uploaded music albums so I have songs PLUS digital booklets or a small number of music
    videos that come with the albums. iTunes Match doesn't seem to upload the digital booklets or music videos.
    Purchased (with the circle and arrow symbol beside it) - 25,169
    Purchased AAC audio file - 29,137
    Question 2:  Which of these numbers - 25,169 or 29,137 - represent the number of songs I have purchased, and should then be
    deducted from the number of songs in Question 1?
    Many thanks in advance for any help.

    Hi,
    I suggest that you make two playlists:
    Use iCloud status = purchased
    use iCloud status = matched or uploaded.
    THe he second on will tell you how close you are to the limit.
    Managing iTunes match with over 25k tracks
    Digital booklets and music videos (not purchased from iTunes store) are ineligible for match.
    JIm

  • How to calculate different tax rates for  same material in single invoice.

    Dear All,
    If the excise rates are changed during the budget and the stock is lying with the client with the existing rate.
    After effective date of new rates we receive the good with new rates.The new and the old rate stock is sent to a customer in single invoice.How can we configure such case. The excise should calculate by old rate to old stock and new stock should be calculated by new rate.
    Please guide in such case.
    Thanks in advance.
    deepti

    Hi Deepti
    In copy control you will have to redeterfine taxes whilst billing.
    If you want you change this and keep it as copy pricing. This won't change anything. Else use Copy prices and redetermine tax. You can find this setting in VTLA and VTFA in item category Pricing type.
    You can't have both of then in the same invoice as procedure is decided for the whole invoice and not a single Item. You can rather have two different item category type. TAN and ZTAN you redetermine taxes for tan and copy them as it is for ZTAN.
    Regards

  • How to calculate the Processing time for material based on its route ?

    Hello experts,
    I would like to calculate the Scheduled in-house production time based on route.
    Actually this is done in the prod. route in tcode CA02. (via menu Extras => scheduling => schedule).
    After getting the schedule table press the 'scheduling results' button I received the Processing time, Setup and teardown time,... Scheduled in-house production time.
    So I'm looking for a function or any tool to use it in report.
    thanks,
    Eli

    hi,
    from routing screen,extras>scheduling>schedule(give a variant name)>scheduling results>update material master.this writes the info in the temp file.use tcode CA96 to update material master.this updates lot size dependent in house production time in work scheduling view of material master and  deletes the lot size independent inhouse prod, time in MRP2 view.this tool gives more accurate results  for your  inhouse prod. time.
    > Hello experts,
    > I would like to calculate the Scheduled in-house
    > production time based on route.
    > Actually this is done in the prod. route in tcode
    > CA02. (via menu Extras => scheduling => schedule).
    > After getting the schedule table press the
    > 'scheduling results' button I received the Processing
    > time, Setup and teardown time,... Scheduled in-house
    > production time.
    > So I'm looking for a function or any tool to use it
    > in report.
    >
    > thanks,
    > Eli

  • How to calculate number of hour for projects

    Hello Experts
    I got a table which has all the information about employee. I need to find the number of hours an employee worked on a project. Let say employee ‘ABC’ worked on 2 different projects. I need to find out how many hours he worked on each project. In my table I’ve
    employee_id, employee_name, proj_startdate, proj_enddate, finishtime fields.
    Can please somebody show me how I can find out the hours?
    Thanks a lot in advance

    it's useless...
    but you need to add a field 'project_id', if an employee works for multiple projects..
    furthermore, you can also add a field named like 'working_hours' into your table...
    your table new structure, let's say the table name is employee
    employee_id, employee_name, project_id, proj_start_date, proj_end_date, working_hours
    then you can use the below codes to update it and make your data be more clear...
    UPDATE employee a
    SET a.working_hours = (SELECT (proj_end_date-proj_start_date)*24 FROM employee b
    WHERE a.employee_id = b.employee_id
    AND a.project_id = b.project_id);
    BUT, you have to add a constraint on your table to make the fields(employee_id, project_id) be unique

  • How to Calculate the total orders for Items with supplier

    How do I write a function or SQL query that will give me the total quantity of an item that an organization has on order with other suppliers? Any help would be greatly appreciated. Thank you.

    It would help if you provided the description of the tables.
    To do totals by say item_id
    select item_id, sum(quantity)
          from supply_table A
          where org_id = 1
               and exists (select 1 from supplier B
                                         where a.org_id = b.org_id )
    group by item_id
    How do I write a function or SQL query that will give me the total quantity of an item that an organization has on order with other suppliers? Any help would be greatly appreciated. Thank you.

  • How to calculate 10% of depreciation for first year and 20% going forward

    Certain categories are using flat rate depreciation. One category requires 10% of depreciation to be calculated in the first year of addition and 20% going forward. How to define this in Oracle?
    Thanks

    Hello.
    Create a depreciation method with Method Type = Table.
    Octavio

  • How to calculate Cumulative of Daily  for particular field(Actual Meter )

    hi,
          pls help me in this
    thanks

    Hi,
         refer the link it may help you
    https://forums.sdn.sap.com/click.jspa?searchID=4388506&messageID=3350823
    https://forums.sdn.sap.com/click.jspa?searchID=4388506&messageID=3889681
    Regards

Maybe you are looking for

  • YouTube is no longer showing up

    Don't know when this happened. I have a 160GB AppleTV. I updated a while ago to 1.1, and have watched YouTube on it before. I checked today, and YouTube is not there. I can connect to the Apple Store for movie trailers, popular music videos, etc. No

  • Smartform as PDF attachment

    Hi Friends, I have created a Smartform for PO driver program its working fine but my requirement is i want to mail this SF as PDF attachment and they have given me Partner function as "MP' for mail Partner and "MA" ,medium 7 ( Simple mail).  Can any

  • Flat file to SQL BizTalk Server

    Hi, Currently I have a requirement in my project to import flat file data to multiple SQL tables using BizTalk. As of now I am doing the following steps : 1. Prepare a input schema using flat file schema wizard 2. Prepare a Output schema(creating a S

  • LIV : Invoice price validation as per Info record

    Dear All,               Requirement : Invoice Verification (MIRO) should pick lowest price among Info-record or Purchase Order. Normally client is maintaining Info-record as the lowest among both. Pls Suggest . Regards

  • Autogenerate XML tag names from other style palettes

    Map Styles to Tags works great when you already have a bunch of tags named identically to the other styles you want to map. Today, however,  I had to manually create and type in tag names to match about 25 paragraph styles. Ick! It would be really ne