Frquency & Duty cycle Value changes- every time

Hello all
 im using pcie 6320 to measure the frequency and the duty cycle of a signal.i have attached my vi & the data measured for reference.The values highlighted in red ,is my actual frequency and duty cycle but values changes for every 1 sec.Please correct me if i have any mistake.
Solved!
Go to Solution.
Attachments:
measure frquency-duty.vi ‏54 KB
HZ-DUTY.JPG ‏37 KB

You'll need to enable digital filtering--insert the following property node into your code (call the property node before starting the task):
Try a "Min Pulse Width" of a few us and increase it if you still are picking up incorrect readings.
The errant numbers are coming from false edges being picked up during transitions, enabling digital filtering will cause the DAQ device to ignore any transitions with a pulse width of less than the set value.  Your 475 Hz 72% duty cycle signal should have a high time of about 1.52 ms and a low time of about .59 ms):
656 Hz = ~1/(high time)
1718 Hz = ~1/(low time)
MHz values = multiple edges picked up during a single transition.
Best Regards,
John Passiak

Similar Messages

  • Duty cycle value & user prompt

    1. Duty cycle
    The value input in the front panel works fine up to 34%, but then it fails for any value above 35%.
    (for input value 35% and above, instrument shows 0.5% instead..for all values..)
    How can I fix this to make it between 0-100%???
    2. User Prompt for config file
    Currently, config file will be loaded via "Load Config" case, but is it possible to kick this off when the main VI starts?
    The idea is to force a user to load config file to synchronize between the instrument display and the LV front panel.
    (when every time the program gets kicked off)
    Does anyone have an idea how to do this?
    Thanks,
    Attachments:
    Pulse Channel with Load and Save_no event_v09.4.2.llb ‏2689 KB

    I am still having a trouble with setting duty cycle value above 35%...
    Tried to add timebase mode subVI in the application function VI, but the outcome is still the same.
    Plz help on this...
    Attachments:
    HP8133A Application Function_mod2.vi ‏129 KB
    Pulse Channel with Load and Save_no event_v09.4.3.vi ‏580 KB
    HP8133A Ex-Div Timebase_mod.vi ‏48 KB

  • How do I make a web page that changes every time the user refreshes it? Is it possible in Muse?

    Hi, i'd like to make quite a simple website where the main text in the centre of the page changes every time the user refreshes the page in their browser. I assume i'll have to make one master, and multiple pages that are all the same except for the changes in the text, but i'm not sure how to make it so that every refresh directs to a different page and not just the home page? Is this even possible in Muse?
    This is an example of what i'm going for: :: procatinator ::
    Thanks!

    You can't do it with Muse alone. Would probably be fairly simple to do with a bit of Javascript. Check the widget directory as it is possible someone has made a widget for random content. If not, maybe I will make one this weekend. ;-)

  • Resource_manager_plan and Reserved pool size  parameter changing every time

    Hello All,
    In my production database (Oracle 11g  RAC )Resource_manager_plan and Reserved pool size  parameter changing every time .
    Below is my question .
    This parameter changed automatically  or it require manual intervention .
    In what case this parameter changed if it automatically changed.
    I had checked dba_hist_parameter a, dba_Hist_snapshot b table for parameter changed history parameter changed .
    This parameter linked with process and sql performances?.
    Please help me . Thanks .
    Regards
    Ranjeet

    When scheduler window opens, its resource plan becomes active. For example, MONDAY_WINDOW begins on monday at 22:00. At this time current plan is changed to DEFAULT_MAINTENANCE_PLAN. At 00:00 (Tuesday) plan that was active before monday 22:00, becomes active. DEFAULT_MAINTENANCE_PLAN is used for Autotask clients :
    select client_name,WINDOW_GROUP from DBA_AUTOTASK_CLIENT ;
    CLIENT_NAME                     WINDOW_GROUP
    auto optimizer stats collection ORA$AT_WGRP_OS
    auto space advisor              ORA$AT_WGRP_SA
    sql tuning advisor              ORA$AT_WGRP_SQ
    select * from DBA_SCHEDULER_WINGROUP_MEMBERS where WINDOW_GROUP_NAME in (select WINDOW_GROUP from DBA_AUTOTASK_CLIENT);
    WINDOW_GROUP_NAME WINDOW_NAME
    ORA$AT_WGRP_OS    MONDAY_WINDOW
    ORA$AT_WGRP_OS    TUESDAY_WINDOW
    ORA$AT_WGRP_OS    WEDNESDAY_WINDOW
    ORA$AT_WGRP_OS    THURSDAY_WINDOW
    ORA$AT_WGRP_OS    FRIDAY_WINDOW
    ORA$AT_WGRP_OS    SATURDAY_WINDOW
    ORA$AT_WGRP_OS    SUNDAY_WINDOW
    ORA$AT_WGRP_SA    MONDAY_WINDOW
    ORA$AT_WGRP_SA    TUESDAY_WINDOW
    ORA$AT_WGRP_SA    WEDNESDAY_WINDOW
    ORA$AT_WGRP_SA    THURSDAY_WINDOW
    ORA$AT_WGRP_SA    FRIDAY_WINDOW
    ORA$AT_WGRP_SA    SATURDAY_WINDOW
    ORA$AT_WGRP_SA    SUNDAY_WINDOW
    ORA$AT_WGRP_SQ    MONDAY_WINDOW
    ORA$AT_WGRP_SQ    TUESDAY_WINDOW
    ORA$AT_WGRP_SQ    WEDNESDAY_WINDOW
    ORA$AT_WGRP_SQ    THURSDAY_WINDOW
    ORA$AT_WGRP_SQ    FRIDAY_WINDOW
    ORA$AT_WGRP_SQ    SATURDAY_WINDOW
    ORA$AT_WGRP_SQ    SUNDAY_WINDOW

  • How can you make an image change every time you refresh a page?

    Hi.
    I've recently redone my website and was wondering how I could make the image on my main page change every time you refresh the page?
    Like is there a certain script you can use?
    Here's my website
    www.liamfawcett.com
    Thanks

    Copy & Paste the following JavaScript code between the <head> and </head> tags in your HTML document, in Code View of course.
    <script type="text/javascript">
    <!--//Random Banner image on Page Reload
    //store the images in arrays below
    images = new Array(5);
    images[0] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[1] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[2] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[3] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    images[4] = "<a href='http://www.example.com'><img src='some_image.gif' </a>";
    index = Math.floor(Math.random() * images.length);
    document.write(images[index]);
    //done
    // -->
    </script>
    In the array, change URLs (http://www.example.com) to your own links.  Change images (some_image.gif) to your own images.
    Save page.  Preview in browser.  Hit refresh (F5 or Ctrl+R) to see the images change.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • I am trying to download a movie in iTunes and I was asked two security questions. They are different form the questions I chose and whenever I exit and try again, I see that the questions change every time. How can I reset the questions?

    I am trying to download a movie in iTunes and I was asked two security questions. They are different form the questions I chose and whenever I exit and try again, I see that the questions change every time. How can I reset the questions?

    From a Kappy  post
    The Best Alternatives for Security Questions and Rescue Mail
    1.  Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    An alternative to using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • Desktop pic changes every time I restart the MAC since the new OIS update

    Anybody can help with?

    ewaller, thank you for your response and interest! at this moment i'm so happy seeing the correct hour on the screen that all that i want is enyoi it!!!
    I live in Barcelona so, teorically my UTC is UTC + 2. During all this time with UTC the time has been changing every time i started the computer but without following a pattern. So one day the time was 30 min. ahead the real time, another day 2 hours before and so on...  a bit crazy!
    I have Windows installed on another partition, but I rarely started it.
    ewaller wrote:
    verduler wrote:This is the output of hwclock --debug. It's a translation because my locale isn't english
    FYI.  You can prepend LC_ALL=C to a command to force English output.  Example:
    LC_ALL=C hwclock --debug
    Could have saved you some translating
    If you are happy with the clock set to localtime, great.  I prefer having it set to UTC for a variety of reasons that have been discussed on these forums that I'll not repeat here.
    The hardware clock is UTC
    Your system assumed the clock was set to UTC
    Time read from Hardware Clock: 04.22.2012 10:38:11
    Hardware Time: 22/04/2012 10:38:11 = 1335091091 seconds after 1969
    Sun April 22 2012 12:38:11 CEST -0.381791 seconds
    The system shows your time as being two hours ahead of UTC.  UTC does not have summer/winter time adjustments.  I assume that you are one hour ahead of UTC, plus an extra hour of adjustment for summer.
    The post I took this from was posted at 01:01:56 PDT (UTC-7).  What time (your local time) did you make that post?
    If it took you 20 minutes for the translation your hardware clock at the time would have been about 11:01.  That is  10 hours ahead of me.
    I am confused, because I expected it to be about 9.  If things are working right, it should be 7.
    Anyway, it would appear if the change you made fixed things then your hardware clock was not set to UTC.  If you want to pursue this, I am glad to help.  If not, I am sure we will be talking about clock settings this fall

  • HT1918 why does my app credit card billing information change every time I have an update on my phone? then it won't let me correct it

    Ok when I install an app, even a free one, it always asks for my log in then takes me to the app. Never have problems with this unless my phone has an update, as soon as I install an update, my billing information get's messed up so it won't allow me to download or update apps. I've gone in to correct the billing information, which was only the security code from the back of my card, and it will not accept the changes. How do I fix this?

    Amylovelyy wrote:
    Every time I try to download an app it says billing info is incorrect but its all correct ...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Amylovelyy wrote:
    ...  it won't let me sign in using a diff apple id ...
    Settings > iTunes and App store > Apple ID = Sign Out... Then Sign In using the preferred Apple ID.
    It should be Noted that anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID.

  • Time/date on my iPhone changes every time I sync with iTunes - any fix?

    Hi All,
    Every time I sync my phone with my computer, the time and date on my phone changes - it goes to one week behind, and about 10 hours earlier than it actually is. My computer calendar has the right time (NYC time zone), the calendar support settings on my iPhone are set to NYC time zone - what could be happening? Any ideas?
    Thanks,
    Maria

    msteinny,
    So i went to the apple store to meet with an apple genius to ask him why my phone's time kept moving up 1 hour everytime I synced my phone. Well he said that he's never seen this problem before, and after a trying a reset and restore he let me exchange my phone. The problem is that when I went to sync my new phone the problem still persisted. They told me it was probably something to do with my computer and its time zone settings.
    So I get home and click on my computers clock in the bottom right hand corner to bring up the date and time properties and sure enought my time is correct, the date is correct and the time zone is correct (Eastern Daylight Time). So I look through the different tabs (Date & Time, Time Zone, Internet Time). The first thing I tried to do was to change where my computer syncs its internet time. It was originaly set on NIST time. I then switched it to Windows time, but this didn't do anything. My clock would still change when I synced to itunes. The next thing I tried was fideling around in the Time Zone tabs. I noticed that the box that says "Automatically adjust clock for daylight savings" was unchecked, so I checked it and my computer's time jumped an hour ahead. So I left the box checked but moved my clock one hour back (to the correct time), clicked on apply and left it at that. I synced my iPhone and voila! The time didn't change! It stayed on the correct time! To to make a long story short, make sure that you computer's clock is set on "automatically adjust clock for daylight savings changes, make sure your time zone is correct, and that the time is right when that box is checked. I hope this helps you. I'm glad I got a new phone out of the deal;)
    Chris P.

  • Screen resolution changes every time I open I-Tunes

    The screen resolution changes when I open I-Tunes. I have to go into control panel every-time to adjust the resolution to make the print and screen layout small enough so its entirety is captured which then allows me to use I-Tunes. Otherwise the graphics are too large to be captured on the screen making the program unusable.

    You are still under warranty.  Call Apple Care. Make sure you get a case number as all repairs have an additional 90 days of warranty. 
    #1 - You have 14 days from the date of purchase to return your computer with no questions asked.
    #2 - You have 90 days of FREE phone tech support.
    #3 - You have the standard one year Apple warranty.
    #4 - If you've purchased an AppleCare Protection Plan, your warranty last for 3 years.   You can obtain AppleCare anytime up to the first year of the purchase of your computer.
    Take FULL advantage of your warranty.  Posting on a message board should be done as a last resort and if you are out of warranty or Apple Care has expired.

  • Why does the port settings on my iPad change every time I sync with my computer. After syncing I have to go in and change the port settings so I can send and receive emails on my iPad.

    Every time iSync my iPad 2 with my computer it changes the port settings. Has anyone else had this issue?

    When you sync the iPad, do you have mail settings configured to sync to the iPad? You could have different settings on your computer that might be affecting the email set up on the iPad when you sync.

  • Why is Password being forcefully changed, every time i buy anything on app store or itunes? happened at least 6 times in the last 2 months.

    i have a apple phone and a ipad Air, eveytime i buy anything on itunes or even something free or not free on the app store, i am forced to changed my password, as it says my old password does not work no more. if there is anything i should know of what is going it would be great.

    For what it's worth, you posted this in 2011, and here in 2014 I am still having this same issue. Over the last two days, I have had to unlock my apple account 8 times. I didn't get any new devices. I haven't initiated a password reset. I didn't forget my password. I set up two factor authentication and have been able to do the unlocking with the key and using a code sent to one of my devices. 
    That all works.
    It's this having to unlock my account every time I go to use any of my devices. And I have many: iMac, iPad, iPad2, iPad mini, iPhone 5s, iPod touch (daughter), and my old iPhone 4 being used as an ipod touch now.  They are all synced, and all was working just fine.
    I have initiated an incident with Apple (again) but I know they are just going to suggest I change my Apple ID. It's a simple one, and one that I am sure others think is theirs. I don't want to change it. I shouldn't have to. Apple should be able to tell me who is trying to use it, or at least from where.
    Thanks for listening,
    Melissa

  • Using laptop in many envirouments (home, office, university..) made change every time the proxy server. May Firefox (in the future..) have same facilitation to learn or try itself to set the correct proxy against the networks?

    In may network envirounments there is a proxy server. I mean, at the office there is one, at the University another one, at home none...
    Every time I get a new place of this I have to change manually the proxy configuration. I think this is not so confortable. I discovered a Antivirus SW that has implemented that idea: First the sw try with the proxy settings, if it's failed it try without. It's not the best, but at own home this make sense. May firefox use more intelligent (may be autolearn: I mean by network id firefox can associate the proxy settings) proxy configuration settings.
    Thx a lot!
    FaB

    You can look at these extensions:
    *FoxyProxy: https://addons.mozilla.org/firefox/addon/2464
    *QuickProxy: https://addons.mozilla.org/firefox/addon/1557
    *SwitchProxy: https://addons.mozilla.org/firefox/addon/125

  • Finder format changes every time - why?

    Every time I open a Finder window, the format of the file structure changes.  Sometimes it's icons, sometimes it's a column view, etc.  Prior to Snow Leopard I never had this problem.  It's irritating as all get-out.  Anybody know if there's a fix for this??
    Tks

    Search these forums for .DS_Store and peruse the hits.

  • Why does my location change every time I start/restart my computer?

    I have yahoo weather set to my location. Every time I switch to an other account or start /restart my computer it changes to another location. I follow the "Firefox cure" Yahoo gives for the problem but it continues to do the same . This started about a week ago when I updated Firefox.
    The problem is about to drive me nuts.
    HELP !!

    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''

Maybe you are looking for

  • Report on Total U/R stock and Open PO quantity

    Dear Friends, Is there any standard report or table which gives the present unrestricted usage stock and Open purchase order stock for all materials in a storage location or material group as selection instead of single material. If we can have open

  • Ical 5. Events not displaying

    Morning. So, Lion is in. Was adding events to Ical5 the other day, and all was going well. These are all normal full day events, that are non re-occuring, and all on my mobileme calendar. (I do have a valid mobile me account and such as well) Made it

  • Mail httpmail Hotmail PowerBook Tiger 10.4.5 Worked But Not Working Now

    Several people have posted about Intel MacBooks having a problem running this plugin that worked great to download hotmail emails into Mail. I had it working fine on my PowerBook G4 under Tiger and 10.4.5 but it has stopped working recently. I tried

  • Nested THREADS!!!

    hi frens, i have made a thread say T1 for a class A which extends another class B. class B also has a thread T2. my problem is when i sleep thread T1, thread T2 is still running. but i want both of them to sleep. thread T2 is private so i cant access

  • How we find tablespace fragmentation and resolve this problem

    Hi, How we find tablespace fragmentation and resolve this in 10 G (R2) windows XP. Regards Faheem