What should be the extra circuitry for this??

I am an
undergraduate student working on project for measurement of automotive
relay parameter measurement using LabVIEW. The parameters to be
measured are:
1)Operating time 2)Release time 3)Pull up voltage 4)Drop off voltage 5)Coil Resistance 6)mV drop across contacts.
For this, I am using NI PXI 1052, SCXI 1125 and SCXI 1313 attenuator with LabVIEW.The relay to be tested is of 12V-15A.
I want to know what extra electronic circuitry will be required to measure the above parameters?

Duplicate post !

Similar Messages

  • What are all the tables used for this report:

    hi
    what are all the tables used for this report:
    report:
    •     <b>Stock Report, which will give opening balance, receipt, issue, and closing balance for any given Duration for any material.</b>
    thanks in advance

    Tables: MSEG, MKPF, MARD.
    FOR REFERENCE SEE TRANSACTION : MB5B.
    Message was edited by: Sharath kumar R

  • What r all the tables used for this report. please reply

    hai,
    what r all the tables used for this report.
    report :
    <b>
    •     Report to display all finished goods that go out-of-stock. Developed a drill down report for materials details (totals and subtotals for material stock values by material group and material type).</b>
    thanks in advance

    hi Ashok,
    Check this out
    http://www.allsaplinks.com/tables.html
    http://www.sapgenie.com/abap/tables.htm
    Regards,
    Santosh

  • What should be the data type for a field in ztable?

    i am desing a ztable , wht should be the datatype for a field if i want to enter values like -1.5 and -2.5 , negative values with decimals what should be the data type???

    declare as P type. TYPE P DECIMALS 1
    Type P data allows digits after the decimal point. The number of decimal places is generic, and is determined in the program. The value range of type P data depends on its size and the number of digits after the decimal point. The valid size can be any value from 1 to 16 bytes. Two decimal digits are packed into one byte, while the last byte contains one digit and the sign. Up to 14 digits are allowed after the decimal point. The initial value is zero. When working with type P data, it is a good idea to set the program attribute Fixed point arithmetic.Otherwise, type P numbers are treated as integers.
    You can use type P data for such values as distances, weights, amounts of money, and so on.
    Also check this link.
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb2fd9358411d1829f0000e829fbfe/content.htm
    Regards,
    Maha

  • What should be the client url for managed servers in a cluster

    Hi guys,
    I have created a cluster(cluster_1) having 4 managed servers. 2 managed servers on my machine(IP1) and 2 managed servers on other machine(IP2).
    I am able to deploy a xxx.war file on my admin server
    also
    I am able to deploy the same war file on my cluster
    When I try to hit the client url, it gives me back the correct data, but it creates the session on the admin server and not the cluster.
    If I remove the xxx.war file from the deployment(deployed on admin server) and redeploy the xxx,war file on the cluster, it gets deployed successfully , but the client url gives me a 404 error.
    What should I do, so that after hitting the client url, it creates the session on the managed servers in the cluster ?
    My admin server is not the part of this cluster.
    cluster ip:127.0.0.1
    ip1: 10.25.63.130
    ip2: 10.25.63.131
    please help
    Salil

    Hi Salil
    This is exactly what I mentioned in my earlier post. You CANNOT and should NOT expose the managed server url (host, port) to the end users. Because as you already figured out, you can specify only one. Or they cannot try one at a time like that.
    This is where, the Load Balancer will come into picture like Apache Web Server. After installing Apache web server, usually it runs at default port 80. So you just expose the apache host to outside world. Also most companies will have Firewalls and Apache is outside of Firewall and all weblogic servers are inside the Firewall. In apache, you configure the weblogic cluster details like the host names and ports of each managed server etc in httpd.conf file etc.
    Ex: For outside users, they may try like http://apachehost/myWeb/myHello.jsp -> apachehost is the host name where Apache web server is running at port 80. NOW Apache is smart enough to do Load Balancing and Failover. If 100 users access the site with 4 managed servers, ideally each managed server will get 25 requests (load balancing). Also if 2 servers are killed, automatically, request will NOT go to them, but to other 2 live servers etc etc. Apache takes care of this.
    Bottom line, please see my earlier post, and you need to have some sort of Web Server like Apache for your cluster setup.
    Thanks
    Ravi Jegga

  • What should my sequence settings be for this situation?

    Hello everyone,
    I'm about to start a project with a few different formats combined on the same sequence, so I'm wondering what format you would all use for the sequence?
    My project will consist of:
    10% DVCPRO HD 720p60 footage from a P2 card
    10% AVCHD 1080i30 footage from a Canon Vixia HF20
    10% Quicktime Animation footage created in After Effects
    70% JPEG images (slide show) of resolutions larger than 1920 x 1080
    I'm not sure of the resolution of the Quicktime Animation footage from After Effects, since I haven't created it yet.  I'll create it with a resolution that matches my sequence resolution.
    I'm thinking the sequence resolution should be 1080p30, to take advantage of the high res JPEG images.  The final delivery will be a h.264 file for web streaming on Vimeo.
    So this is where I need the help:  what sequence format should I use for editing?  Is this a good situation in which to use a ProRes format?  I've never used ProRes on a PC before, and I'm not really sure which specific ProRes format would be best to use here.
    I'm editing with Premiere Pro CS5 on a PC, and I do have the latest version of Quicktime Pro installed.
    Thanks!
    Mike Tomei

    Yeah, I agree... edit at 720, because that's the maximum for Vimeo, and also your smallest footage is at 720... bringing it up to 1080 may make it look bad.
    I've edited mixed footage before, and I generally use the sequence for the "hardest" footage to edit (which is generally AVCHD). I do it no because I know that to be the best, but because I DON'T know what information specifically goes into the different sequences, and I do know that AVCHD can tax my system, so when I have to use it, I try to optimize for it.

  • What can be the SQL Query for this requirement ?

    Hi,
    I have a table with fields like this:
    ID DESC PARENT
    01 ABC 02
    02 ABC1 01
    03 ABC2 01
    04 ABC4 02
    In the above table PARENT column refers to ID column , but actually in SQL query i want to have ID, DESC , and PARENTDESC (i.e., desc value of the corresponding ID)
    Actual output that i need is
    select ID , DESC , ?? from table where ID=someValue . Now if i provide ID=01 then output should be like this:
    ID DESC PARDESC
    01 ABC ABC1
    Can anyone help what can be the required sql query ?
    Edited by: bootstrap on Apr 29, 2011 6:15 AM

    SELECT T1.ID, T1.DESC, T2.DESC
    FROM TABLEA T1, TABLEA T2
    WHERE T1.ID='01'
    AND T2.ID = T1.PARENT;

  • What should be the directory structure for new theme

    I want to create a new theme for my BSP pages. Currently all my BSP are using /sap/public/bc/ur/Design2002/themes/sap_tradeshow/ur/ur_ie6.css for styling. I want to create a new theme named testTheme and want to call my bsp pages with sap-themeRoot=testTheme appended to the URL.
    I  am not sure under which directory should I create the new directory. Should I create a  “testTheme” directory to “Design2002” or “ur” or “sap_tradeshow” directory in the MIME repository structure?

    Hi Amit,
    Run the program BSP_UPDATE_MIMEREPOS using SE38 and export the whole theme that you want to base your new theme on (located in /SAP/PUBLIC/BC/UR/Design2002/themes) to a local folder.
    Make your changes locally and then use the program once again to import the new theme folder into the MIME Repository (for example /SAP/ZBSP_THEME/myNewTheme).
    You can find further details in the weblog - /people/sap.user72/blog/2005/04/12/bsphowto-css-hints--custom-design-for-your-bsp-applications
    Regards,
    Rohini.

  • What are all the tables used for this report ? please reply

    hai
    i have practcing reports,
    so any one give me the name of the tables used for the below report
    <b>Created report for invoice details, shipping details and partner function.</b>
    thanks in advance.
    by
    ashok

    Hi Ashok,
      I am sending you the code which will display tables present in SAP with the description and jump to datadic or SE16 by selecting plus F2 or F8.
    REPORT ZZBGS044 MESSAGE-ID Z1 LINE-COUNT 65 LINE-SIZE 132
                    NO STANDARD PAGE HEADING.
    Description: This program list all tables in        regards to the   *
                 selection criteria.                                     *
    Customizing: You need not to make any customizing to use this program*
    Change of    You only have to check that tables, functions and       *
    release:     includes till exists. Bedst just to check and run the   *
                 program.                                                *
    Programmer:  Benny G. Sørensen                                       *
    Date:        July 1995                                               *
    SAP R/3      2.2F                                                    *
    Corrections----
    Date        Userid     Correction                                    *
    xx-xx-xxxx  xxxxxxxxx  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx *
    TABLES: DD02V                "SAP tables view
    DATA: BEGIN OF DYNTAB OCCURS 2000.
            INCLUDE STRUCTURE BDCDATA.
    DATA: END OF DYNTAB.
    DATA: BEGIN OF TABLES OCCURS 100.
            INCLUDE STRUCTURE DD02V.
    DATA: END OF TABLES.
    DATA: L        TYPE I,
          REPL(30) TYPE C VALUE '????????????????????????????'.
    FIELD-SYMBOLS:
    PARAMETERS:
    TABLE(30) TYPE C,
    TITLE(74) TYPE C LOWER CASE DEFAULT ' ',
    DOWNLOAD(1) TYPE C DEFAULT ' ',
    FILENAME(65) TYPE C DEFAULT 'c:SAPDOC?',
    EXCEPT(30) TYPE C DEFAULT ' '.
    START-OF-SELECTION.
    IF TABLE = ''.
    TABLE = '*' .
    ENDIF.
    IF TITLE = ''.
    TITLE = '*' .
    ENDIF.
    TRANSLATE TABLE USING '*%'.
    TRANSLATE TITLE USING '*%'.
    CONDENSE EXCEPT NO-GAPS.
    L = STRLEN( EXCEPT ).
    IF L > 0.
    ASSIGN REPL(L) TO
    ENDIF.
    SELECT * FROM DD02V INTO TABLES
    WHERE DDLANGUAGE = SY-LANGU
    AND TABNAME LIKE TABLE
    AND DDTEXT LIKE TITLE.
    HIDE DD02V-TABNAME.
    IF EXCEPT NE ''.
    REPLACE EXCEPT LENGTH L WITH
    INTO TABLES-TABNAME.
    ENDIF.
    TRANSLATE TABLE USING '% '.
    CONDENSE TABLE NO-GAPS.
    IF TABLES-TABNAME CS TABLE.
    WRITE:/ TABLES-TABNAME, ' ', TABLES-DDTEXT.
    APPEND TABLES.
    ENDIF.
    ENDSELECT.
    IF DOWNLOAD NE ''.
    CALL FUNCTION 'WS_DOWNLOAD'
    EXPORTING
    FILENAME = FILENAME
    FILETYPE = 'WK1' "ASC, WK1, DBF, DAT, bin
    TABLES
    DATA_TAB = TABLES.
    ENDIF.
    AT LINE-SELECTION.
    SET PARAMETER ID 'DOB' FIELD SY-LISEL(30) .
    CALL TRANSACTION 'SE12' AND SKIP FIRST SCREEN.
    AT PF8.
    CHECK SY-LISEL <>
      SET PARAMETER ID 'DTB' FIELD SY-LISEL(10) .
      REFRESH  DYNTAB.
      PERFORM DYNPRO USING:
         'X'  'SAPMSTAZ'     '0100'        "Selection screen
        ,' '  'DD02V-TABNAME'  SY-LISEL(10).
      CALL TRANSACTION 'SE16' USING DYNTAB MODE 'A' .
    FORM DYNPRO USING DYNBEGIN NAME VALUE.
      IF DYNBEGIN = 'X'.
        CLEAR DYNTAB.
        MOVE :  NAME TO DYNTAB-PROGRAM,
                VALUE TO DYNTAB-DYNPRO,
                DYNBEGIN TO DYNTAB-DYNBEGIN.
        APPEND DYNTAB.
      ELSE.
        CLEAR DYNTAB.
        MOVE:  NAME TO DYNTAB-FNAM,
               VALUE TO DYNTAB-FVAL.
        APPEND DYNTAB.
      ENDIF.
    ENDFORM.
    Regards,
    Azaz Ali.

  • What should be the logger name for Dispatcher Flush agent?

    Hi,
    I was trying to setup logging configuration so that the log for Replication agents can be saved on file system. I was able to do it using the logger com.day.cq.replication.Agent.publish.
    What would be the logger for Dispatcher Flush Agent if I need to setup logging for it on the Publish instance?
    And how, where can we find the logger names?
    Thanks

    Thanks Sham.
    I was able to setup the logging configuration for dispatcher flush agent.
    Thanks,
    Guru

  • How much attached storage can a mac server handle? What would be the best suggestion for this?

    Hello, hopefully I am in the correct location, if not, i apologize. Please bear with me as I am fairly new to MAC server. Here is my dillema. I have a mac graphics group that uses about 6TB of storage currently on a Windows server. We are running into issues such as permissions and searching inability. I was considering moving them to a mac server but will need to add storage to this. What would be recommended for such large disk space? We do currenlty have 2 mac mini servers and all the users are bound to AD as well. Thank you in advance for any suggestions!

    One of the Mac Mini Server boxes I deal with has 24 TB hanging off of the box (configured as RAID-6), plus a two-disk RAID-1 mirror set inside the box.   That's also a pretty small configuration, both in terms of its physical size and in terms of its storage capacity in the grand scheme of things.
    A Mac Pro or Mac Pro Server will do 8 TB inside the box, plus a whole lot more outside the box either direct-attached storage (DAS) or via a Storage Area Network (SAN) configuration, but the performance of a Mac Pro Server is probably overkill for your needs, too.
    As much as you are focusing on the capacity, you'll also want to look at how you'll archive and manage that much storage.   At how you'll manage and conduct backups of your data.
    You'll also be looking at the speed and the design of your network, if you're moving large files around regularly.  Gigabit Ethernet does pretty well for small groups, but you may be looking for a different setup of that's not fast enough.

  • What should be the best approach for a novice like me?

    Hello everyone.
    Please be patient. I'm new to the Adobe software family and I have a lot to learn.
    But I came here to find out the best way to learn in order to do what I want to do with my business.
    What programs do you think I need to master first? What is the most common approach to someone in my situation?
    Basically, this is what to create:
    electronic forms (to send to my clients, where they provide all kinds of information)
    short and long coaching programs (rich in text and image, sort of like an e-book)
    new logo and brand identity
    poster and decal designs
    In the future.. I'd like to develop my own website.
    This is it. Any help is welcome.
    Thanks,
    Gus

    Adobe.com is a good place to start.  They have resources that you can look into getting more info.  My approach would be to try and find some kind of formal training somewhere in your area.  Perhaps there is a local community college graphics department that has a certificate program.  There are also CD/DVD tutorials, but you need to work with other people and do assignments that are part of a curriculum.  If you decide to proceed on your own, start with Illustrator where you can gain skills in line manipulations that can then be used to help you make selections in Photoshop later on.  So, in my opinion, Illustrator first, Photoshop second, Dreamweaver third, and Flash/Fireworks fourth.  This all will take time.  It's impossible to learn all of the applications in a week or two.  That's why I think you will benefit from a formal setting like a classroom where you can ask questions and learn tips and tricks.

  • What should be the naming convention for indexes?

    hi,
        I have created some sps and functions, and named them like uspgetreportno,udfgetreportno respectivily.
    please tel me some prevelent prefix for clustered index and non clustered index.
    yours sincerley

    I use 
    PK_ for primary keys
    UK_ for unique keys
    IX_ for non clustered non unique indexes
    UX_ for unique indexes
    Also recommended naming conventions
    PKC_ Primary Key, Clustered
    PKNC_ Primary Key, Non Clusterd
    NCAK_ Non Clustered, Unique
    CAK_ Clustered, Unique
    NC_ Non Clustered
    Hope this Helps
    Thanks,
    Nihar

  • What should be the testing string for searching in Oracle UCM by SES?

    I have crawled through UCM it has found many items, but I am unable to search anything....Please suggest me the points to taken care while testing the SES search (from search window).

    I have crawled through UCM it has found many items, but I am unable to search anything....Please suggest me the points to taken care while testing the SES search (from search window).

  • Wat should be the regular expression for string MT940_UB_*.txt to be used in SFTP sender channel in PI 7.31 ??

    Hi All,
    What should be the regular expression for string MT940_UB_*.txt and MT940_MB_*.txt to be used as filename inSFTP sender channel in PI 7.31 ??
    If any one has any idea on this please let me know.
    Thanks
    Neha

    Hi All,
    None of the file names suggested is working.
    I have tried using - MT940_MB_*\.txt , MT940_MB_*.*txt , MT940*.txt
    None of them is able to pick this filename - MT940_MB_20142204060823_1.txt
    Currently I am using generic regular expression which picks all .txt files. - ([^\s]+(\.(txt))$)
    Let me know ur suggestion on this.
    Thanks
    Neha Verma

Maybe you are looking for

  • Unable to install the 21.0.004 on my white 16GB x6...

    hello Please would you have a solution to my problem: I can see the version 21.0.004 on my phone. I downloaded but can not install it! each time it starts but it breaks from the beginning. would you answer? I'm going crazy because this is the first t

  • Green/Yellow screen issue? (Not blobs, whole screen discolouration)

    Hey there, I know there has been many websites posting about the yellow blobs that have been appearing on the new iPhone 4's retina display as a result of manufacturing issue. However, my entire screen seems to have a much 'cooler' tint that my previ

  • Gujarati fonts

    i am not able to read any gujarati fonts in my nokia e63. Pls send me gujarati fonts or help me in any way, i am in need of this fonts, its really urgent. Pls help

  • Export pdf in discoverer viewer

    Hi All I'm using Disco Viewer 10g. I have a report which have 14 columns and i wanted to display only 11, which is fine i can goto the rows and columns option and set the columns to 11, but now when i export it to the .pdf i still see the 14 columns

  • Update Itemcost from the Production order.

    Hi Experts, I have created a UDF(Amount) in the Production order rows, if iam entering the amount for the input item the Amount should get updated in the Itemcost of the Itemmaster data.. How to write the update statement? Is it possible to update th