Jump to content

Search the Community

Showing results for tags 'teststand'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Software & Hardware Discussions
    • LabVIEW Community Edition
    • LabVIEW General
    • LabVIEW (By Category)
    • Hardware
  • Resources
    • LabVIEW Getting Started
    • GCentral
    • Code Repository (Certified)
    • LAVA Code on LabVIEW Tools Network
    • Code In-Development
    • OpenG
  • Community
    • LAVA Lounge
    • LabVIEW Feedback for NI
    • LabVIEW Ecosystem
  • LAVA Site Related
    • Site Feedback & Support
    • Wiki Help

Categories

  • *Uncertified*
  • LabVIEW Tools Network Certified
  • LabVIEW API
    • VI Scripting
    • JKI Right-Click Framework Plugins
    • Quick Drop Plugins
    • XNodes
  • General
  • User Interface
    • X-Controls
  • LabVIEW IDE
    • Custom Probes
  • LabVIEW OOP
  • Database & File IO
  • Machine Vision & Imaging
  • Remote Control, Monitoring and the Internet
  • Hardware

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Company Website


Twitter Name


LinkedIn Profile


Facebook Page


Location


Interests

  1. Job Summary The Averna experience Averna delivers industry-leading test solutions and services for communications and electronics device makers worldwide, accelerating product development, quality and innovation: Be global@work: Serve international customers and collaborate with colleagues in Canada, the U.S., Mexico, Japan and Hungary. Drive innovation@work: Participate in the development of market-leading high-tech products in the telecom, transportation, electronics and multimedia sectors. Develop your talent@work: Contribute to thrilling projects that will stretch your skills and talent to the maximum. Enjoy success@work: Be part of a fast-growing company with award-winning products and team. Share your passion@work: Meet passionate people, enjoy our modern environment and dynamic atmosphere. The LabVIEW/TestStand Development Engineer challenge in a few words The LabVIEW/TestStand Development Engineer will add new software features and capabilities to Averna’s Jupiter and Mercury broadband test platforms. Your contribution in this role Integrate and test company products. Work with existing software code base to add new features. Develop innovative solutions to engineering test problems. For all engineering products delivered, work with the engineering department to create the maintenance and troubleshooting guides from a user's point of view. Including system documentation, program descriptions, flowcharts and operation procedures and user manuals. Document exceptions and fixes for inclusion into core product. Perform QA on new product software releases. Technical Requirements The ideal candidate in a few words Experience: 4-8 years experience with LabVIEW and TestStand, Certified LabVIEW Developer and/or Certified TestStand Developer; C++ or C# an asset. Skills: Good general computer knowledge (e.g. Windows, TCP/IP networking, FTP) with a strong aptitude for problem solving; Experience as a software engineer for test platforms, test automation or real-time software engineering; Able to read/modify existing software as well as contribute new code to existing projects; Knowledge of RF test and measurement equipment; Knowledge of broadband and telecommunication industries is an asset (DOCSIS, DSL, VoIP, POTS); Able to read engineering design documentation (mechanical, electrical or software). Multilingual: Fluent English; Fluent in Mandarin, Japanese or Korean is an asset. Required Skills Youare the one we are looking for if you are: Self-driven, enjoy working with complex problems, and can work on multiple problems simultaneously. Generally you are action-oriented, creative, have good peer relationships, manage uncertainty and ambiguity, with good self-knowledge abilities. If you would like to join Averna's team of engineers, make sure to send an updated version of your resume to cv@averna.com. One of our recruiters will take the time to review your application. N04182 Averna PAP Depliant EN.pdf
  2. EvaluMation, LLC is currently accepting resumes and searching for engineering talent. We are especially interested in candidates with a solid electrical/programming background and a strong work ethic. Experience with National Instruments products is always a plus! Some desirable skill sets include LabVIEW/TestStand Certifications C/C++/Matlab Programming Object Oriented Design Experience Automation/Instrumentation RF Test Experience Interfaces Well With Customers Engineering Degree Security Clearance/Ability to Obtain Clearance This positon is located in sunny Albuquerque,NM and relocation may be available Please email your resumes to me at Matthew.Dubuque@EvaluMation.com Thanks Matthew Dubuque EE/CLA/CTD www.evalumation.com
  3. Hi all, I came across developing some custom step types in TestStand with LabVIEW code modules. My LabVIEW code module is architectured with LVOOP concept. But now I wonder how can I pass an LV Class object to TestStand for further use in other step types. Currently I managed to store it in a LV Global and use it later. But are there any other way? Regards, Mirash
  4. Hi, Next week I am teaching a LVOOP course and my students use TestStand a lot and I expect to get questions regarding the use of LVOOP and TestStand. The things I have heard are: - TestStand does not recognize LVOOP Objects, so the developper has to flatten the Object Reference to string and then pass the string to TestStand, and viceversa, if they get the flattened Object they need to unflatten to string in LabVIEW: http://digital.ni.co...62573A9004C5A07 - Dynamic dispatch is lost Are there any other tips/tricks/myths I should be aware of? Thanks, Fab
  5. There seem to be very few examples of how to get results out of the standard Teststand SQL database. There is a top level table called UUT_RESULT but it may not be obvious to a new user how to get the results from a test run in the UUT_RESULT table with a given ID GUID. To this end I give an example below in the hope it saves someone else the pain of surfing the internet trying to find an example. The SQL script below when run will return all the results for a test. Obviously you will still need to read up on SQL but it is a good starting point. There is a comment in the code on how to make sure only tests with results are returned. The SQL script is a lot more readable when coloured in a SQL editor. DECLARE @UGID [nvarchar](50) SET @UGID = 'C26760D9-3FE4-4500-99FA-6B4B26341563' SELECT RTRIM (UUT_RESULT.UUT_SERIAL_NUMBER) AS UUT_SERIAL_NUMBER,RTRIM (UUT_RESULT.START_DATE_TIME) AS START_DATE_TIME, RTRIM (UUT_RESULT.USER_LOGIN_NAME) AS USER_LOGIN_NAME, RTRIM(UUT_RESULT.STATION_ID) AS STATION_ID, RTRIM (UUT_RESULT.UUT_STATUS) AS UUT_STATUS,RTRIM (STEP_RESULT.ORDER_NUMBER) AS ORDER_NUMBER,RTRIM(STEP_RESULT.STEP_GROUP) AS STEP_GROUP, RTRIM(STEP_SEQCALL.SEQUENCE_NAME) AS SEQUENCE_NAME, RTRIM(STEP_RESULT.STEP_NAME) AS STEP_NAME,RTRIM(PROP_NUMERICLIMIT.COMP_OPERATOR) AS COMP_OPERATOR, RTRIM(STEP_RESULT.STEP_TYPE) AS STEP_TYPE, RTRIM(STEP_RESULT.STATUS) AS STATUS,RTRIM(PROP_RESULT.DATA) AS RESULT, RTRIM(PROP_NUMERICLIMIT.LOW_LIMIT) AS LOW_LIMIT,RTRIM(PROP_NUMERICLIMIT.HIGH_LIMIT) AS HIGH_LIMIT, RTRIM(STEP_RESULT.MODULE_TIME) AS MODULE_TIME,RTRIM(STEP_SEQCALL.SEQUENCE_FILE_PATH) AS SEQUENCE_FILE_PATH,RTRIM(PROP_NUMERICLIMIT.UNITS) AS UNITS, RTRIM(UUT_RESULT.EXECUTION_TIME) AS EXECUTION_TIME, RTRIM(STEP_RESULT.ERROR_CODE) AS ERROR_CODE,RTRIM(STEP_RESULT.ERROR_MESSAGE) AS ERROR_MESSAGE,RTRIM(UUT_RESULT.UUT_ERROR_CODE) AS UUT_ERROR_CODE,RTRIM(UUT_RESULT.UUT_ERROR_MESSAGE) AS UUT_ERROR_MESSAGE FROM UUT_RESULT INNER JOIN STEP_RESULT INNER JOIN STEP_SEQCALL ON STEP_RESULT.STEP_PARENT = STEP_SEQCALL.STEP_RESULT ON UUT_RESULT.ID = STEP_RESULT.UUT_RESULT LEFT OUTER /*INNER */JOIN -- SWAP LEFT OUTER FOR INNER TO miss out steps without results. PROP_NUMERICLIMIT INNER JOIN PROP_RESULT ON PROP_NUMERICLIMIT.PROP_RESULT = PROP_RESULT.ID ON STEP_RESULT.ID = PROP_RESULT.STEP_RESULTWHERE (STEP_RESULT.UUT_RESULT = @UGID)ORDER BY STEP_RESULT.ORDER_NUMBER
  6. Please send resumes to jacob(at)teslamotors.com. Job Title and Description: Manufacturing Test Engineer This Manufacturing Test Engineer is a member of the Powertrain Manufacturing Engineering team. He/she will use engineering knowledge and creativity to develop a variety of manufacturing tests and equipment to be used on Tesla’s powertrain production lines. This will require the design, programming, fabrication and documentation of test equipment, along with ongoing daily support once deployed. The ideal candidate takes pride in his/her hands-on and analytical abilities, organization skills and attention to detail. He/She appreciates an environment where superior work is encouraged, noticed and rewarded. Essential Functions and Duties: Integration of Test Equipment Hardware and Software Development of Test Plans and Hardware and Software Requirements Specifications in conjunction with Design Engineering, Manufacturing Engineering, and Production Procurement, installation and configuration of test instrumentation and hardware Design and development of Production Test Equipment hardware with emphasis on: 1. Safety – The equipment must be designed to be safe for use by production personnel with minimal training. In addition, the equipment should protect itself and the product under test.2. Robustness – The equipment will be deployed in a factory environment and must be designed to withstand a high number of cycles under rugged conditions.3. Documentation – Multiple copies of the equipment will be built and accurate and detailed documentation will be required to facilitate replication efforts.4. Serviceability – Equipment must be easily serviced and repaired. Development of software to run tests according to test plans Development of software to assist with the gathering and presentation of factory production data for analysis by engineers and production managers Development of equipment manufacturing processes in conjunction with Manufacturing Process Engineers Investigate test issues and incorporate corrective actions as required in conjunction with Design Engineering and Production teams Skills and Experience: BS or higher degree in Mechanical or Electrical Engineering 5+ years of Manufacturing Test Engineering experience 3+ years of experience with LabVIEW (CLAD, CLD, or CLA a plus) and/or TestStand Experience with RS232, GPIB, and LXI control of instrumentation. Experience with CAN communications a plus. Familiarity with electronic circuits, experience with high voltage environments is preferred but not required Experience designing electrical test hardware, with an emphasis on safety for the operator and the product Solid understanding of production equipment design issues such as user friendliness, serviceability, ruggedness, noninvasive electrical test connections, etc Ability to design, fabricate and document moderately complex wiring harnesses utilizing a solid understanding of connectors, termination, crimping, wire/connector labeling, etc Ability to work well under pressure while managing competing demands and tight deadlines Experience with verbal and pictorial documentation of manufacturing processes Excellent written and communication skills Well organized with meticulous attention to detail Mastery of Word, Excel, PowerPoint Demonstrated proficiency with SolidWorks or Catia is highly desired About Tesla Motors: Tesla Motors is a small, well-funded company in the San Francisco Bay Area. We design and manufacture advanced electric vehicles, battery packs, and drive systems and are working to change the future of the transportation industry. We are building a technically strong, fast-moving team that prides itself on superior execution. Our Mission: Tesla Motors designs and sells high-performance, highly efficient electric sports cars. Our cars combine style, acceleration, and handling with advanced technologies that make them among the quickest and the most energy efficient cars on the road.
  7. Hi ppl, I've been for long time How Express VI's work with TestStand. I came across couple of methods in TestStand step.LabVIEWModule.ExportVI() and ImportVI(). The ExportVI method was creating a wrapper to the Express with the configured values set as default to the controls that are wired to the ExpressVI. Looking at this, it seems like TestStand is executing such wrapper VI's to these expresses during execution. While searching the sequence file saved in XML format. I came across a section that has this express VI configuration. This part was not in a Human readable format, and seemed to be junk data. Are there any clear documentation on how Expresses work in TestStand. I couldn't find much help. Thanks, Sathish
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.