How to wire up and use 256 points at a time on the PXI-2532

I have a PXI chassis with a PXI-2532 512-Crosspoint Matrix Switch Module, a TB-2640 connected to it, and a PXI-4072 FlexDMM and LCR meter.
I am trying to use the DMM to make measurements of something connected to the switch matrix.  What I can't seem to figure out, is since the matrix is a 1 wire 4x128 matrix, how do you connect 256 points when there are only 128 conductors in the ribbon cables that attach to the 2640?  There are 2 banks of 8, each with 16-pins, on the TB-2640, that seem to be wired internally together.  I would like to utilize 256 points in the 512 matrix at a time, and currently I have the DMM hooked up to r0 and r1 to take the measurements.  How would I hook up r2 and r3, in the same matrix?
If you are really confused I can explain further, but I haven't found anything that shows how you would actually connect 256 wires to the 2532, when there are only 128 columns.  Any information helps.
Thank you.

Since the matrix is a 4x128, there are 4 rows and 128 columns to which you can connect devices under test (DUTs). You can not connect 256 different DUTs because there are not 256 connections. The points refer to the switches inside the card rather than the actual signals. 
Here's a bit more info:
http://www.ni.com/white-paper/4453/en#toc3
Also I would post future switch questions here:
http://forums.ni.com/t5/Switch-Hardware-and-Software/bd-p/320
I hope this helps,
Eric E.

Similar Messages

  • Can I measure Vibrating Wire Strain Gauges using Field Point Inputs?

    Is wish to connect a Vibrating Wire Strain Gauge using Field Point.
    The sensor requires a swept frequency excitation (typically 400 to 1500 Hz) and then generates a frequency output proportional to the strain applied on the vibrating element. The frequency (roughly upto 1kHz) needs to be measured.

    What sort of resolution is needed on the frequency sweeping? There are currently four FieldPoint modules that can be used for generating pulsed outputs; the FP-CTR-500, FP-CTR-502, FP-PWM-520 and FP-PG-522. For the remained of this posting, I will use FP-CTR-50X to represent both the FP-CTR-500 and FP-CTR-502 as they are identical in functionality, different in their input/output stages.
    The FP-PWM-520 is a Pulse Width Modulation output with 12 bit resolution on duty cycle and 16 bit resolution on the pulse period. The period is adjustable from 1 to 655535 milliseconds, which makes the module slightly less than ideal for frequency sweeping as it's highest frequency is 1 kHz and it's second highest frequency is 500 Hz.
    The FP-PG-522 is a Pulse Generator module that can operate in an continuous pulse mode. The On Time, Off Time and resolution (time base) are adjustable. The smallest time base is 100 ms, for a maximum output frequency of 5 kHz. Like the FP-PWM-520, the FP-PG-522 adjusts it's output rates by changing the time rather than the frequncy, making it difficult to smoothly sweep across frequencies.
    Finally, the FP-CTR-50X modules may be used. The FP-CTR-50X modules have 8 16 bit counters, 4 Gates and 4 outputs. The module has two internal clocks, 1 kHz ad 32 kHz that can be used to feed the counters. The outputs can be configured to toggle each time an adjustable terminal count is reached, allowing output pulse generation of up to 16 kHz (32 kHz internal clock divided by 2). The FP-CTR-50X modules have the advantage over the above modules in that the counters can be cascaded and set for differing terminal counts allowing multiple pre-scalers which may allow better resolution of generated frequncies.
    For measuring the output frequency generated by the gauge, the only current modules that will allow you to directly measure the output are the FP-CTR-50X modules. However, as they were primarily designed for event counting, it takes a little bit of extra programming to allow them to be used to measure frequencies. The effectiveness of frequency measurement on the FP-CTR-50X modules varies on the sampling period, the programming and the network module. There are several KnowledgeBase and Developer Exchange articles talking about how to use a FP-CTR-50X module to measure frequencies, so I will not duplicate the information in this post.
    Regards,
    Aaron

  • Re: How do you create and use "common" type classes?

    Hi,
    You have 2 potential solutions in your case :
    1- Sub-class TextNullable class of Framework and add your methods in the
    sub-class.
    This is the way Domain class work. Only Nullable classes are sub-classable.
    This is usefull for Data Dictionary.
    The code will be located in any partition that uses or references the supplier
    plan.
    2- Put your add on code on a specific class and instanciate it in your user
    classes (client or server).
    You could also use interface for a better conception if needed. The code will
    also be in any partition that uses or references the supplier plan where your
    add on class is located.
    If you don't want that code to be on each partition, you could use libraries :
    configure as library the utility plan where is your add-on class.
    You can find an example of the second case (using a QuickSort class,
    GenericArray add-on) with the "QuickSort & List" sample on my personal site
    http://perso.club-internet.fr/dnguyen/
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    http://perso.club-internet.fr/dnguyen/
    Robinson, Richard a écrit:
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Richard,
    Your question about "utility classes" brings up a number of issues, all of
    which are important to long-term success with Forte.
    There is no such thing as a static method (method that is associated with a
    class but without an implicit object reference - this/self/me "pointer") in
    TOOL, nor is there such thing as a global method (method not associated
    with a class at all). This is in contrast to C++, which has both, and
    Java, which has static methods, but not global classes. Frequently, Forte
    developers will write code like this:
    result, num : double;
    // get initial value for num....
    tmpDoubleData : DoubleData = new;
    tmpDoubleData.DoubleValue = num;
    result = tmpDoubleData.Sqrt().DoubleValue;
    tmpDoubleData = NIL; // send a hint to the garbage collector
    in places where a C++ programmer would write:
    double result, num;
    // get initial value for num....
    result = Math::Sqrt(num);
    or a Java programmer would write:
    double result, num;
    // get initial value for num....
    result = Math.sqrt(num);
    The result of this is that you end up allocating an extra object now and
    then. In practice, this is not a big deal memory-wise. If you have a
    server that is getting a lot of hits, or if you are doing some intense
    processing, then you could pre-allocate and reuse the data object. Note
    that optimization has its own issues, so you should start by allocating
    only when you need the object.
    If you are looking for a StringUtil class, then you will want to use an
    instance of TextData or TextNullable. If you are looking to add methods,
    you could subclass from TextNullable, and add methods. Note that you will
    still have to instantiate an object and call methods on that object.
    The next issue you raise is where the object resides. As long as you do
    not have an anchored object, you will always have a copy of an object on a
    partition. If you do not pass the object in a call to another partition,
    the object never leaves. If you pass the object to another partition, then
    the other partition will have its own copy of the object. This means that
    the client and the server will have their own copies, which is the effect
    you are looking for.
    Some developers new to Forte will try to get around the lack of global
    methods in TOOL by creating a user-visible service object and then calling
    methods on it. If you have a general utility, like string handling, this
    is a bad idea, since a service object can reside only on a single
    partition.
    Summary:
    * You may find everything you want in TextData.
    * Unless you anchor the object, the instance will reside where you
    intuitively expect it.
    * To patch over the lack of static methods in TOOL, simply allocate an
    instance when required.
    Feel free to email me if you have more questions on this.
    At the bottom of each message that goes through the mailing list server,
    the address for the list archive is printed:
    http://pinehurst.sageit.com/listarchive/.
    Good Luck,
    CSB
    -----Original Message-----
    From: Robinson, Richard
    Sent: Tuesday, March 02, 1999 5:44 PM
    To: '[email protected]'
    Subject: How do you create and use "common" type classes?
    I'm relatively new to forte and I'd like to know how can you handle utility
    type classes that you want to use through out your application? Ideally
    what I want is a static class with static methods.
    Let's say that I have a StringUtil class that has a bunch of methods for
    manipulating strings.
    My problem is that we have code that runs on the client and code that runs
    on the server. Both areas could use the StringUtil class, but from what I
    understand, I have to create StringUtil in a plan and then create a server
    object of type StringUtil. The server object will eventually get assigned
    to a partition. That's not good since I really want the server object to
    physically reside at the server end and at the client end. (Actually, I
    don't want a server object, I just want to invoke a static method of a
    static class).
    Any clues on how to solve this problem would be appreciated.
    Also, what is the url at Sage-it that has a summary of all emails that have
    been posted to [email protected]? Perhaps this question has been
    answered previously.
    Thanks in advance

  • How to set-up and use FAMILY Sharing

    Can someone please explain to me in detail how to set-up and use FAMILY Sharing, none of the information I have so far found in the documentation helps at all, in fact it puts you in a constant loop giving the same information over and over again
    We have quite a few devices from ipads, iphones and ipods and I need to set-up Family Sharing.
    We have our main Apple ID which is linked to our Payment method, I have now got my son a new iPad, I have created his Apple ID and set-up a link via FAMILY Sharing to our main Apple ID.
    From what I read we should be able to share our purchased Apps between family members.
    So I figured I would be able to get the Apps now via iTunes that are part of the FAMILY Sharing, however when I go into ITunes (latest version downloaded yesterday) I can only see the Home sharing menu item not FAMILY Sharing, so I cannot work out in Itunes how to get Apps that are FAMILY shared.  So ok I will try and get Apps directly via the Ipad using the App Store.  To test it is working I look for a known paid for App, I then go to download it and it is now asking me to pay for it again. 
    Can someone please explain to me in detail how FAMILY Sharing is supposed to work and how I get it to work please.
    Thanks for your help
    Greg

    Hey GregWr,
    Thanks for the question. The following resources provides some of the best information regarding Family Sharing. Included, you’ll find information on making sure the accounts are set to "Share my purchases”, as well as information on downloading Family Member purchases from the iTunes Purchased section. Please note that some applications are not shareable.
    Sharing purchased content with Family Sharing - Apple Support
    http://support.apple.com/en-us/HT201085
    Which purchased content can I share using Family Sharing - Apple Support
    http://support.apple.com/en-us/HT203046
    If you don't see your family's shared content - Apple Support
    http://support.apple.com/en-us/HT201454
    Thanks,
    Matt M.

  • HT2509 Hello I wonder if anyone knows how to find, download and install a suitable IPA (phonetics) font for the Mac Air? I need to be able to use a pop up window of fonts.

    Hello I wonder if anyone knows how to find, download and install a suitable IPA (phonetics) font for the MacBook  Air? I need to be able to use a pop up window of fonts.

    Unless you've done anything to change it, Google keeps every email that ever passes through their server in your All Mail folder/mailbox/label. Even if you delete stuff, they hold onto it, there. You have to go out of your way to actually delete anything permanently.

  • How do I access and use my Itunes library from a different/new computer?

    How do I access and use my Itunes library from a different/new computer?  My computer is no longer working, so I need to be able to access my library from my wife's computer.

    Your library will only be where you put it.  Copy everything from your backup copy of your old computer to the new one.
    You can redownload some itunes purchases in some countries:
    Download past purchases - Apple Support

  • How do I access and use my iTunes library on a different computer?

    How do I access and use my i Tunes library on a different computer?

    The iTunes library is only where the user puts it.  If desired to have on an additional computer, put it there by copying the ENTIRE iTunes folder from the existing computer to the new computer.

  • I want to buy photoshop creative cloud for teams, how users can install and use it?

    i want to buy photoshop creative cloud for teams, how users can install and use it?

    Cancel old and buy new is the only way I know, but you MAY be able to exchange
    Return, cancel, or exchange an Adobe order

  • How do I find and use the "Spotlight Effect" in PS6?

    How do I find and use the "Spotlight Effect" in PS6?  I was using it yesterday and now I can find it ... help!

    Hi,
    I'll start with the most basic qusetion if you have Spot selected from the dropdown in the Lighting Effects Properties.
    There are also some presets under Presets including a Default Setting.

  • I have moved from a G5 Powermac to an Intel Mac Pro and am porting over Items from a Backup HDD. How can I access and use drawings and documents created on the PC computer on the Intel computer ?

    I have moved from a G5 Powermac to an Intel Mac Pro and selectively porting over items from a backup hard drive.
    How can I access and use documents and drawings created on the PC based computer ?

    Clarisworks, you need Appleworks, which will only work with Mac OS X10.6.8 or earlier.  See this tip if you must go newer.  Mac Pros with newer hardware configuration than July 20, 2011 can't use Mac OS X 10.6.8 or earlier without this tip and then it would be Mac OS X Server.  I'm not sure if the new black Mac Pro supports that configuration or not.
    iPhoto, there is an iPhoto for all versions of Mac OS X.
    iTunes, there is an iTunes for all versions of Mac OS X.  Note with iTunes versions 11 and later, which are needed for syncing with iOS 7 or or later, you will lose coverflow, if you liked that feature.  Sadly you can't run an older version of iTunes from within Mac OS X 10.9 or later.
    Sketchup: http://help.sketchup.com/en/article/60107 shows the versions that will work with intermediate Mac OS X versions, and this shows the latest version: http://help.sketchup.com/en/article/36208 be sure to click on the operating system you choose to use.
    GIF - Viewing GIFs Apple's Preview can do that.  Editing them, I like http://www.lemkesoft.com/ Graphicconverter.
    DMG is able to be opened by all versions of Mac OS X.  This are just "disk images" which store programs on a virtual disk that will open when double clicked.    Frequently you'll find the installer of the said program inside.  To find out if the program itself is compatible with 10.7 through 10.9, see http://www.roaringapps.com/
    Otherwise see the resources on:
    https://discussions.apple.com/docs/DOC-2455
    If you end up deciding to stick with Snow Leopard.

  • How to set up and use AirPlay

    How to set up and use AirPlay

    Welcome to the Apple Community.
    AirPlay; When watching suitable content on the iPad, tap the screen to bring up the controls, tap the AirPlay icon and select the Apple TV. The content will then stream to the Apple TV.
    Mirroring; Double tap the home screen button, swipe the application panel to the right, tap the AirPlay icon and choose the Apple TV. The iPad screen will then be streamed to the Apple TV.

  • How can I access and use the alphabetical keyboard of the phone ?

    How can I access and use the alphabetical keyboard of the phone ? I cannot find the answer in the manual of use.  Thanks for your help !

    Recently I was abroad and tried to contact my voicemail to check my messages. I was asked to enter a password and did not know how to use the letters below the figures on the keyboard.  I had to give up and wait until I was back in my country (no password is then needed).

  • Does my macbook air have a built in virus scan?  how can I access and use it? also any recommendations of what software if this is not avail ?

    does my macbook air have a built in virus scan?  how can I access and use it? also any recommendations of what software if this is not avail ?

    Contrary to what Geeks on Hugs is telling you, Mac OS X does indeed have a basic malware scanner. It is not a feature that is directly accessible to the user, and works a bit differently than every other malware scanner out there. Gatekeeper, which has been mentioned here, is entirely separate, and provides a different method for helping to protect you against malware.
    The anti-malware scanner in Mac OS X is called XProtect. When you download an application (or any other kind of executable code), it is automatically "quarantined," so that when you open it you're asked if you really want to do that. I'm sure you're very familiar with this aspect of Mac OS X if you have ever downloaded any apps from outside the App Store. What you don't know, though, is that each time you try to open a new app, that app is checked by XProtect. If it is identified as malware, you will not be allowed to open it, and will be warned that it's malware.
    At this time, there is no known malware that can infect a properly up-to-date Mac. All current malware will be blocked by one or more methods.
    For more information, see my Mac Malware Guide.
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com.)

  • IN MY IPHONE 5 FACE TIME IS NOT THERE HOW CAN I DOWNLOAD AND USE IN DUBAI

    IN MY IPHONE 5 FACE TIME IS NOT THERE HOW CAN I DOWNLOAD AND USE IN DUBAI
    <Personal Information Edited by Host>

    An iPhone originating from the UAE will never have FaceTime.
    (113483)

  • I have entered a incorrect email address, so cannot update an app I purchased. The email does not exist. How do I delete and use my primary Apple ID

    I have used an incorrect email address for my Apple ID  when I punched an App. Cannot get updates. How do I delete and use my primary account email address?

    Delete and redownload that application when signed into the correct Apple ID. This may require repurchasing it.
    (127051)

Maybe you are looking for

  • Add a carriage return in a Unbound String Field

    Post Author: Razzle00 CA Forum: Formula Hi,      How can I add a carriage return to an unbound string field in a crystal report.  I am using the bundled version of CR with MS Visual Studio 2003 & 2005.  My formula needs to look something like this...

  • SOAP Adapter (Client Authentication)

    Hi Guys, I am trying to follow this blog How to use Client Authentication with SOAP Adapter Am new to this security settings stuffs , i hear that we have to maintainn keys in visual admin and then later authenticate , am confused all around My Questi

  • Making dynamic URLs Hyperlinks

    Hello, I have xml data formatted with url's and email addresses. Can I add a click event to <mx:text> or <mx:label>? Should I use as3 and an event listener? I guess I'm looking for an easy mxml way to do it ;-) Thanks!

  • BAPI for Customer Edit

    Hi all, Which are the BAPIs available for editing customer, I ve created the BAPI for customer creation using the standard program RFBIDE00, can this program be used for editing the customer information. pls suggest Regards Vishal

  • Creation of As-Built Configurations

    DEAR SIR What is the concept of the Creation of As-Built Configurations , what are the Prerequisit.how to crate pl explain in details