Setting voltage hp3649 in IVI TS 4 steps

I'm trying to set the level on the power supply for hp3649 in simulation with NI IVI driver mode.

The configuration and the measure properly.

When you try to use the software to change the level of tension without change occur and spy NOR shows any error.

I'll put the extension tab use software trigger.

The output tab channel use Parameter.Voltage as voltage level, exit Beach Auto Mode and voltage and current range 0.

Tab of the only current limit is limited to regulate voltage and current limit is 0.5. OVP is disable.

Command tab trigger source is software and limit trigger voltage and triggered current limit is 0.

The sequence of steps IVI is:

Init with Simulation,

Configure

Display flexible Panel

Initiate

Function to set the new value for Parameter.Voltage

Software trigger

Please let me if this procedure is on the right.

There are other parameters to adjust to change the voltage through the stages of the IVI - C?

Thank you.

Elik


Tags: NI Hardware

Similar Questions

  • Unable to set my HP6632B supply voltage of 12 v with the hp66xxbc

    Hello:

    I use the IVI hp66xxbc driver to control a power supply DC HP6632B, and I get an error when I try to set the voltage of 12V.  I can adjust the tension manually on the front panel and using the option "Contact instrument" in the tool "Measure and Automation", but not with the driver of the IVI.  Any help would be greatly appreciated.

    I tried to set the ÖVP at 20, but the pilot didn't like either.  And I could do it manually. This part is not included in the attached report.

    Here is my configuration:

    LabVIEW: 7.1

    hp66xxbc driver: not sure.

    Just run "HP6632B-Init-and-Set - voltage.vi.

    Here is the error I get:

    "Error 1074135024 occurred to hp66xxbc configuration OVP.vi.

    Possible reasons:
    Driver status: (Hex 0xBFFA0010) invalid value for the parameter or property.

    Secondary error: (Hex 0xBFFC0004) parameter 4 out of reach, or an error occurred when setting setting 4.

    "Development: OVP limit"

    Hello Mike,.

    It seems that the problem is possibly due to the deactivation of the query ID in any of your folders.  In many cases the specific driver IVI uses by default the model with the minimum of features and smaller beaches.  Do you have errors if you try to set the ÖVP to 2 volts?  If you still have a problem after activation ID query and try a smaller value of the ÖVP, please post an example with a minimum of code that reproduces the issue and doesn't use the wrapper to live and also include a capture OR the spy of the occurrence of the error.

    See you soon,.

    NathanT

  • Variable set during step fails

    Hello!

    Is it possible to set a variable (or two) in one step, if the step fails?

    I looked at this thread: http://forums.ni.com/t5/NI-TestStand/Set-a-variable-in-a-post-expression/td-p/1186981 .

    that is quite similar to what I'm trying to do.

    I don't want to create a new step to achieve this. I know that I can't use the term Post to check if the step failed, because the condition Expression is evaluated after the phrase Post. The solution to the thread linked above has been to use the Condition Expression custom instead of the Expression Post, and I have the following to work:

    (Step.Result.Status == 'Pass')? (Locals.Passed = False): (Locals.Passed = True)

    But the problem I have here is that I want to write in a string and a variable number (error error code and text) instead of a Boolean value (Locals.Passed). How can I write about something else than a Boolean? Is this possible? Or do I have to create a new stage for each test step?

    It does not work:

    (Step.Result.Status == 'Pass')? (Locals.Error = 'No error'): (Locals.Error = 'Error')

    Kind regards

    Sindre

    Hello

    I have created an example of movie file that uses SequenceFilePostStepFailure to set local variables with an error message and the code depends on which steps failed.

    I've also included the steps to set the (currently skipped) Step.Result.Error because I think it's a nice alternative.

    Kind regards

  • W520 WiDi configuration steps

    Hello

    I just got a helping hand me down w520 and I was wondering how to set up the widi with my new LED TV LG 47LM7600 which has a WiDi built into the TV set. Can someone show me please step by step to configure the w520 widi? What software do I need? How to use the software for my TV? ect...

    Thank you.


  • DAQmx task start-up delay / quickly generate arbitrary output voltages

    Hello

    (Sorry, I m new to this forum and could not find a reasonable solution by using the search)

    I develop a c# multithreaded application that generates a waveform in the 'background' using output buffering simultaneously, captures the images via a firewire camera and treat them. I have a second channel DA free that I would use when debugging a marker in real-time so that I can check on an oscilloscope which is the relative condition of simultaneous processes, i.e. output a voltage of 1 V while treatment step 1, 2 Volts to processing step 2 etc. or I would be out a short spike at some critical point. This is done using a task as

    DA_Task_sgl = new Task();
    DA_Task_sgl. AOChannels.CreateVoltageChannel ("/ Dev1/ao0", "DA0" - MXVOLTAGE, MXVOLTAGE, AOVoltageUnits.Volts);
    DA_Task_sgl. Control (TaskAction.Verify);
    DA_Task_sgl. Timing.SampleTimingType = SampleTimingType.OnDemand;
    DA_Writer_sgl = new AnalogSingleChannelWriter (DA_Task_sgl. Stream);

    then, when I want to change the tension

    DA_Writer_sgl. WriteSingleSample (true blood);

    A similar technique worked pretty well using Traditional NI DAQ, but with NIDAQmx and the concept of task, it seems that a voltage of output value takes about 1.5 ms (also of time CPU) which is too slow in many cases. With Traditional NI DAQ two consecutive calls to AO_VWrite() may generate a COB with only a few µs endeavors instead. I guess that the delay in the NIDAQmx is mainly determined by start and stop work, etc.

    Is there a way to avoid all this (in NIDAQmx) and more direct access to the underlying hardware?

    (Please Don t tell me that it is a limitation of Windows, NOR-Trad code clearly shows that it was possible, clearly the thread may be interrupted during the output voltage, but is also my treatment, exactly what I want TO check with this technique, but that 1.5 ms the delay is still there!)

    (Currently used card PCI-6014 with NIDAQmx 9.x, but I think that it s not the card which is itself too slow, I can get the update rate Analog > 100 kHz on the string of voltage waveform via DMA)

    Thank you

    Joachim

    Hi fabwes,

    The snippet you posted on request AO.  This means that whenever you write we go and search equipment to generate tension.  Your assumption is correct, the slowness that you see is because of the job template.  Whenever you are calling WriteSingleSample the task is launched, the tension is out, and the task is stopped.  I suggest the following code:

    DA_Task_sgl = new Task();
    DA_Task_sgl. AOChannels.CreateVoltageChannel ("/ Dev1")

    ("/ ao0", "DA0" - MXVOLTAGE, MXVOLTAGE, AOVoltageUnits.Volts);
    DA_Task_sgl. Timing.SampleTimingType = SampleTimingType.OnDemand;

    DA_Writer_sgl = new AnalogSingleChannelWriter (DA_Task_sgl. Stream);

    DA_Task_sgl. Control (TaskAction.Start);

    DA_Writer_sgl. WriteSingleSample (false / * since we are already started, this parameter is essentially ignored * /, tension);

    This slight change gets the load to start the task of the road before start you writing.

  • Module CVI written TestStand property, property value resets after the step execution.

    Hello

    I did a lot of research and find nothing relevant to the question that I have. I've created a DLL in CVI containing several functions I call TestStand. I also created a type of step customized for each function call. Every function in the DLL has a runtime version and a version edit-time. Time edition features each have a UI associated with them are called from teststand. Change these functions are placed in the custom under the heading "change" step step-type tab Before executing a sequence with these custom steps the edit-time user interface is launched to allow the user to input values that will be passed to the run function. originally, I tried to set up my functions as a 'post step' step in the step properties. However, the sequences would fail to run because the parameters of the step module was empty. Then, I selected CVI as the adapter in the step properties and specified a default module for each type. This filled the tab module settings step like I wanted. However, when I ran the sequence each function execution of measures was called twice, once for the stage of the post, and once for what was in the tab module I suppose. I then re-entered the types of step and deleted all the steps of the post office. I thought that all the problems have been resolved at this point, however, after doing some more extensive tests I always have a bug, I was unable to get rid of that.

    The problem is that two of my step types have to write data to current TestStand to execution after they ask an external device for IT. I know that the query works because my log text that generates the DLL displays the correct values. However, the data are not get rewritten on TestStand correctly. In the enforcement functions after checking the valid data has been returned, I try to write to TestStand using: "TS_PropertySetValNumber (seqContextCVI, NULL,"ThisContext.Step.ParameterValue.NumericParameter", 0, (double) ushortint);" »

    I checked that this call generates an error and also used the TS_PropertyExists method to check that I had the correct search string. These extract so I added then another command that reads the value written to TestStand two return immediately after to write it. I printed this in my log file and found that the value is written to the property of TS. So, the problem is that TestStand is defining the property to reset after the code module is running. How to prevent this?  

    Thanks for all comments, let me know if anything specified needs.

    Josh Meyer

    Well, I came to the conclusion that my 'problem' is not really a problem. I had a bit of a basic misunderstanding of the works of TestStand (I don't actually use it, I am writing just a code which will bring an existing one of the tools of the features inside the TS).

    in any case, what I learned is that these properties are retained (so you can set up a sequence, save it, re - open and be able to run it without any reconfiguration for example), when you write to a property when installing editting/sequence. The run time values are not preserved (if connected) because they are only required to carry out. For example, if a user calls one of these functions to extract value from a controller, they probably do so because they want to check the value, it's what they expect it to be. Rather than watching the value after execution (which is what I me assuming they would do), they would set up the step after step "read value" to test the value that it returned. This value is available in 'RunState.PreviousStep.valuename' in the downloaded step step "read value".

    Hope that I did not confuse anyone a lot, I'm completely new to TestStand.

  • Default configuration for a step tab

    We have a system that has been installed at a couple of sites affiliated to the Japan and in Romania (we have developed in Australia).  It works on TestStand 4.2 with code written in LabVIEW 8.6 (although the Romanian site uses TS4.2.1 and LV2010).  We have many steps custom in a range of types file.

    One of the sites complained that when they add a few specific measures (digital limit Custom Tests, in particular) to a sequence, the tab displayed in the step settings pane is the tab "limits".  It would be more practical and more useful to display the tab Edit (the one that shows the buttons for Edit substeps).

    I realize it is just a matter of clicking on the relevant tab.  Also, I realize that once a file is saved, the tab selected last is established for each step when it is again open.  However, the customer is always right, so I need to see if it can be "fixed".

    Is there a way to set the default tab for a Test step of numerical limit to something other than the tab "limits"?

    Help files, Google and the pages NOR does not appear to be next on this issue.

    Thank you

    Geoff

    Hello

    There isn't a way to change which tab opens to a type of custom step. Sorry for the convenience, this may cause.

  • set default XP Epson-610

    Just installed new Epson printer from xp - 610. attempted to set as default and got the error message 0 x 00000709. Need help!

    Hello sherje78,

    Welcome to the HP Forums!

    I understand that your Epson printer cannot be set as the default value. I would like you to perform all the steps I have provided in this thread: HP1510 0 x 00000709 can not set as the default printer

    These steps will definitely solve the problem! Please let me know how it goes. Thank you!

    Mario

  • How to change the Description of the c# step programmatically

    Based on user selections in my DLL I want to change the Description of step TestStand.  I use c# 2008 and TestStand 4.1.  I am able to read the Description by using Step.GetDescriptionEx, but I can't find a matching 'Set' command.

    It is a step in editing.  With the help of PropertyObjectFile.IncChangeCount () works fine.

  • Not updated by Labview VI Step property

    Hello

    I am currently using 4 TS and LV 8.2 with Win7 Pro.

    I created a custom step which employs a lower Edit level.

    The lower Edit level name successfully a Labview vi, which allows the user to change the values.

    The intention is to copy the user values in the properties of the custom calling step, using the value property Value.vi of the library of Teststand.

    After that step is changed, the vi is closed and I check the step variables expected variables to be updated, but what I see in the Variables Panel does not always show the new property values of step.

    Called by the lower Edit level Labview vi receives the context of the sequence and the correct step property string name.

    Have I correctly picked the Value.vi property set to the task of updating the step of step of the custom properties?

    In addition, when the properties of the stage show the new value, the sequence containing the custom step does not indicate

    the need to save that is in front of my expectations, else how is remined user to save the changes?

    Thank you

    Gary.

    Gary,

    I recommend most often to developers to interface with the EditSubstep modules using parameters.

    For an input parameter, I pass the current values of the step variables.

    For the output parameter, I connect the same variables that they get old/new values to the EditSubstep module.

    I declare this as my EditSubstep modules normally contain a button "Cancel". If the user presses that, I simply passes the output values that the module received as input values.

    Input values are also used to update correctly orders from the EditSubstep module. Otherwise, the user would see only the default values, but not the values of that step has already been changed.

    Output parameters are important have not changed (cancel) / update the values of the step. By selecting the appropriate container, the values are transmitted with the closure of the EditSubstep, so there is no risk of running into a race condition, which could explain the behavior you're seeing.

    hope this helps,

    Norbert

  • Step diagram complex on front panel

    Hello!

    I would like to create VI to establish a scheme of the stage for 6 valves in operation.
    On this front, I imagined a table, where the markets are under another as rows in a table.

    Each step must be timed and the positions of the valve must be set. I need at least 30 steps, so it would be nice to create a table, with each line similar to this:

    I don't really know what is the best weight in this case. Copy paste 30 times seems to be a solution very amateur.

    Does anyone have any ideas?

    Thank you in advance!

    Adam

    Put what you show evidence of a cluster, and then make your table, a table of these clusters.

    Mike...

  • Cannot set personal images as desktop wallpaper

    I am trying to turn my desktop a personal picture and the screen goes black. It will change the display, but not photos in my file.
    I want to change my computer's desktop to a picture in my folder, but it won't.

    Hello

    What is the file format of the images that you try to set as wallpaper?

    Try these steps and check if that helps:

    Step 1:

    a. navigate to the following location:
    %UserProfile%\AppData\Roaming\Microsoft\Windows\Themes
    b. check if you see INI files at this location.
    c. If Yes, then open the files in Notepad.
    d. remove the contents of the file and save it.
    e. restart the computer and check to see if that fixes the problem.

    Step 2:

    I suggest to create a new user account and check if it helps.

    Follow these steps to create a new user account:
    a. open user accounts by clicking the Start button, clicking Control Panel, clicking user accounts and family safety, then clicking on user accounts.
    b. click on manage another account.   If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.
    c. click on create a new account.
    d. type the name you want to assign to the user account, click an account type (Administrator), and then click on create an account.

    Refer to this link for help:

    Create a user account:
    http://Windows.Microsoft.com/en-us/Windows-Vista/create-a-user-account

    Kind regards
    Afzal Taher-Microsoft Support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • LAG does not not after more Guide of switch Configuration for EqualLogic San steps in the document.

    We use the information provided in the following document: i.dell.com/.../dell-networking-n4000-series-switch-configuration-guide-for-equallogic-sans.pdf

    We have two switches of N4032F which are stacked and followed almost word for Word from this document.  We do not use DCB.  We are trying to set up a SHIFT and follow-up step 2.11 in the document, but it seems that the SHIFT does not work.

    Switch 1:

    serial interface fortygigabitethernet 1/1/1-2

    No spanning tree portfast

    active in mode channel-group 1

    Switch 2:

    interface series fortygigabitethernet 2/1/1-2

    No spanning tree portfast

    active in mode channel-group 2

    However, when it was discovered after changing these settings it shows them as being inactive.

    Can someone please help?

    Thank you

    Jeff

    Thanks for the additional information. When the switches are stacked, they act as a logical switch. Then when you plug with an OFFSET you are basically creating a loop and hook up a switch on himself. Desempilement switches and just use the OFFSET for the interconnection of the switch and you should see the GAL go active.

  • set up a wireless connection for Windows 7 and telephone access

    Original title: settings on windows 7 for wifi

    can someone guide me to the right settings on my windows 7 hp so I have wifi so I can access my phone

    Hi Mary,

    -What is the brand and model of your phone?

    -You are on a wired network or wireless?

    I suggest you to go through these links to set up a wireless home network.

    Setting up a wireless network

    http://Windows.Microsoft.com/is-is/Windows7/setting-up-a-wireless-network

    5 steps: how to set up your network wireless home

    http://www.Microsoft.com/athome/organization/wirelesssetup.aspx#fBid=khumiPcAEnH

    For Wi - Fi connection settings, you can get in touch with the Internet service provider for assistance.

    To enable Wi - Fi on your phone, I suggest you go through the manual of the phone for settings or contact the phone manufacturer.

  • Best practices: set a language for an InDesign document

    Comment please let me know if I'm doing this wrong.

    1. I inherited an English identity document, and when I tried the spell check ran into a problem that has been updated in 'Language' 'Spanish '. The dictionary has already been updated with English.
    2. So, I chose the cursor of the object, so that nothing in the document has been selected and then clicked on Type > character and set the language to English.
    3. In vain, spell check always for the same reason.
    4. So, I chose the cursor of the object, Cttrl + A to select the entire document and then clicked Type > character and set the language to English. Subsequently, the spell worked.

    This last step, 4, what do you expect to be necessary to set the language of a document, or step 2 should have it? Thoughts on the definition of popular document language. BTW, ID online help... bloody useless.

    Language is a character attribute, so it must be set for text. It has nothing to do with dictionaries in the preferences of your choice.

    If you are sure that there are no words that should not be attributed to English, you can use find/replace to change the language, or redefine styles. or both.

Maybe you are looking for

  • How to change the default zoom to 150% level?

    I'm not a geek and I think I want something simple: when I run Mozilla Firefox I want to automatically set at 150% zoom. In other words, I want to remind that my preference is 150% zoom level so I don't if it fix whenever I have run Mozilla Firefox o

  • Why the menu bar menus cannot be moved to another toolbar?

    Hello In previous versions of Firefox, I used to move all the items of the menu bar navigation bar. But now that the tabs can be at the top of the window, which saves a useless space (the guys great work there), I hide the menu bar to use (and use th

  • Keep due to lack of updates to Y580 window...

    I just got a y580 and I tried to update my window and it maintains do not... as each updates fail... someone have an idea..?

  • Why the 7.0 upwards block 28%?

    I was able to complete my first back up to a single DVD.  Now that I have loaded several files, it goes to a second drive but crashes at 28%.  I have let go all night twice but nothing helped. I then tried to create a new brand to the top, but now th

  • Computer won't turn on completely (black screen with blinking cursor) after installing windows updates

    8/7, the following updates have been installed correctly: Microsoft .NET Framework 3.5 Service Pack 1 and the .NET Framework 3.5 Family Update (KB951847) x 86 Update definition for Windows Defender - KB915597 (definition 1.63.1021.0) Following this i