Formula labview 8.5

hello,
I have installed labview 8.5 base development but I cannot use the formula vi, I don't know why?
I have a blank window as in the picture, is this a LV8.5 bug?
thanks for help,
Attachments:
arithmetic and comparison.GIF ‏26 KB

Thanks for the info.It is  wierd this issue.
When I tried to reload the same code in  another computer I have to redo the same exercise meaning load the formula vi from the NI program file\lib ....it is really not handy.
On top of that I have many problem since I have installed LV8.5 (see pictures), the program crashes all the time.
Is there anyway to avoid this???
thanks for advise.
Attachments:
LV8_5 error1.JPG ‏17 KB
LV8_5 error2.JPG ‏20 KB

Similar Messages

  • Conversion from Excel time to labview time

    Hello all,
                                       I want to convert the excel time stamp to labview time stamp. Can you all please help me how to do this ?
    In my application labview time is 05-11-12 14:56:00 and its equivalent excel time representation is 41218.6222222222.
    I tried this formula,
    Labview time =  24*3600*(Excel time - 1460) but anwer is wrong.
    Thanks.
    Kudos are always welcome if you got solution to some extent.
    I need my difficulties because they are necessary to enjoy my success.
    --Ranjeet

    Ok, here's what I found.  The conversion is:  Time Stamp = 86400*(Excel Time - 1462).  But here's the kicker: the timestamp is GMT.  You have to add your time zone offset as well.  I'm in the Eastern Time Zone, so I had to add 5 hours.  I'm not sure what DST will do to this.  I'm sure there's ways around it, I just don't have time to look into it more right now.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Excel Time.png ‏10 KB

  • What is the difference between power spectrum and PSD?

    Hi all,
    I input a time domain signal to the FFT power spectrum VI and FFT PSD VI seperately, and got two  outputs in frequency domain with similar shapes but different magnitudes.
    I refer to some signal and system textbook, and find PSD(w)=1/pi*Power Specrum or equivalently PSD(f)=2* Power Specrum.But as I observed from the LabVIEW outputs, this relation is not correct. I input a 1KHz sin wave with amplitude=1, Fs=512KHz, #s=2048 , the PS peak is 0.5 and the PSD peak is around 0.013.
    So I wondered what's the real formula LabVIEW is using to calculate PSD?
    Sunny 

    PSD is related to spectrum resolution, thus related to sample rate.
    df= Sample rate/ #samples
    I think they follow this relationship:
    Amplitude FFT power spectrum = Amplitude PSD * df * 1.5

  • Mod function in LabView's Configure Formula

    Hello, all.  Today is my first shot at using the Configure Formula feature in LabVIEW (7.1), and I'm not doing well at it.
    The kicker seems to be my (mis)understanding of the mod function.
    Here's the formula I have to work with:
    J=1+(((((C/100)%4)*5)+G)%7), where

    duplicate post, see: http://forums.ni.com/ni/board/message?board.id=170&message.id=161086
    LabVIEW Champion . Do more with less code and in less time .

  • Cannot use formula in LabVIEW 8.5 library error

    Hi,
    I'm not able to open the Formula function.  It says the library is not accessible.  I just installed LabVIEW on this machine.  Any ideas?
    Thanks,
    Vara

    Vara,
    I'm with smercurio, and think that a reinstall is probably your only option.  You could try to delete the files that are causing the issue and then try another repair, or you could do the reinstall and know you're going to fix it.
    And Jeff is correct that in older versions of LabVIEW it was a little ambigeous what needed to be installed but starting in 8.6 we added the "Installed with:" field to the help, and it 2009 we changed the name to "Requires:".  This makes it easier to know what the VIs installed with.
    The picture below shows the 8.5 help next to the 2009 help:
    Justin Parker
    National Instruments
    Product Support Engineer

  • Nonlinear Curve Fit LM Formula String in Labview 8

    hi, guys. I write a vi which use Nonlinear Curve Fit LM Formula String. When I run it ,the program says "Syntax error of parser." and I don't know what's wrong with it, so help me,Please. By the way ,you can fill the arrays as you wish.
    帖子被trinight在02-11-2006 07:51 PM时编辑过了
    Attachments:
    curve fitting.vi ‏16 KB

    You MUST wire initial estimates for the parameters. Attached modification works just fine.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    curveFittingMOD.vi ‏17 KB

  • HELP: Run-time array dimension in LabVIEW formula node

    I need to dimension an array at run time within a formula node as follows:
    int32 i,N;
    N = sizeOfDim(inputArray,0);
    float64 outputArray[N];
    for (i = 0; i outputArray[i] = myfunction(inputArray[i]);
    However, LabVIEW complains "Formula Node: index list expected". On the
    other hand, if I say
    float64 outputArray[1000];
    LabVIEW is perfectly happy. But that's not what I need to do! Is there
    an alternative
    way of accomplishing my goal?
    BTW, I've tried calculating N outside the formula node and then
    presenting it as
    an input with the same results. I've got a bad feeling that run time
    array dimensioning
    just isn't allowed.
    TIA,
    Hugh

    Can't you just use the Initialize Array function outside the formula node and pass that instead?

  • Serious bug in LabView 8.5 Formula Node

    Hello,
    Thought I would warn my fellow LabView programmers about a serious error in the Formula Node:
    The problem may be encountered by anyone running a non-us LabView installation:
    I am located in Norway, and over here we use the comma (,) as the separator in floating point numbers: So, the use 3.14 is written like 3,14.
    The problem is that the Formula Node accepts both formats, but only the US Notation is interpreted correctly !
    Example:
    float64 x1, x2;
    x1 = 3.14;    // Interpreted Correctly !
    x2 = 3,14;     // Interpreted as 3: One might say this leads to problems.......
    Message Edited by geirove on 06-13-2008 06:23 AM
    Geir Ove

    geirove wrote:
    JoeLabView wrote:
    Hi Geir,
    It is not a bug.  ............
     The node does not recognize localized decimal separators."
    Of course it is a Bug:  **Any** code that **any** compiler does not recognize, should be flagged with an error message ! I have written my share of compilers myself, and they all flag down code that is not accepted as an error.
    Failing to do so may cause serious, expensive and very hard to trace errors.
    Sorry, but I would expect that the NI team in their 20. year of LabView development is capable of better than this.
    Sorry to disappoint you! It's not a bug since that statement is absolutely valid albeit useless in that context.
    The Formula Node since LabVIEW 7 supports C syntax except some advanced features such as pointers. In C the comma in expressions is the sequence operator meaning it separates expressions that will be executed from left to right and the last one will actually be the result of the entire sequence expression. This is often used for the initilizer expression inside the for statement, to initilize several variables to a start value.
    And the NI team really is a lot better than you think. The online help may be a bit short about the reasons why the comma is not supported as decimal point but there have been many people thinking about this before it was made like that. It was either C syntax support without localized decimal point or some homegrown syntax with localized decimal point and they went for the first.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to use matlab program in formula node in labview?

    hi,
    i've got one equation of voltage regulation. so i did create program for that in matlab.and want to use it in formula node in labview.but i don't know how to do that.can someone please help me for that?
    regards
    bhavin

    If you have already written Matlab code it is easier to import it straight into a Mathscript node. If you use a Formula node you need to translate m- syntax to c-syntax which may take longer. Note that the Mathscript node
    may not support all the functions you used in Matlab so you may need to replace them with native LabVIEW functions. If you want to add inputs/outputs in your program you can just right-click on the border of the node to do that.
    These structures can be on the block diagram under Programming>> Structures.
    KostasB
    NI UK Applications Engineering
    Message Edited by KostasB on 05-28-2008 08:39 AM
    Attachments:
    mathscript-form node1.PNG ‏8 KB

  • Applying delay in formula node in labview

    hi every bod
    Solved!
    Go to Solution.

    If you have not done so yet, please go through the free on-line tutorials about LabVIEW.
    Rarely is the formula node the most appropriate way to write code in LV.  The native LV constructs may be a bit awkward at first for someone with a text-based programming background.  Once you learn to use dataflow and to recognize the functions by their icons, you may find that graphical programming can be both powerful and easy to read.  
    For delays use the Wait(ms) function found in the Timing palette.  If you need a delay in the middle of a calculation (which seems unlikely), you may need to split the calculation into two parts and put the Wait (ms) between the parts.  See the image below for one way to do this without any formula nodes.
    Lynn

  • Bug in Formula node under LabVIEW 2010

    appendix is my test project.
    there is a test.vi in the project.  The test.vi contains only a case structure with 5 SAME subdiagrams. Each subdiagram contains a formula mode. The formula code does some calculation with an 2d array of double.
    If i run the test.vi under LabVIEW 2010(or SP1), it may cause  LabVIEW 2010 corrupt occasionally. If I build application form the test.vi, and run the application ,the application will definitely corrupt.
    if I delete one subdiagram of the case structure , the test.vi and the application both run well.
    however, the same project works well under LabVIEW 2009.
    so is it a bug with LabVIEW 2010?
    Attachments:
    Test.zip ‏7 KB

    'corrupt' means the program exit unexpectedly without any warning or error message. it just disappeared and you can't find it in the 'process' tab of windows task manager after that.
    If LabVIEW corrupted, once i reopened it, there may be a error message dialog pop-uped before the LabVIEW interface appeared. The dialog said something wrong with 'undo.cpp'. I zipped the failure long to the appendix. I can't find any other error or warning message from LabVIEW or Windows ( I checked the Windows Event Viewer).
    If the built exe corrupted, There isn't any message for  LabVIEW or Windows neither.
    I tested the project on my own laptop with Windows XP(SP3) Chinese Version and NI PXI-8810 with Windows XP(SP3) English Version which is my target machine.
    Appendix also contain a exe build in my laptop. If I run the exe file, once I click the run button , it will corrupt. I wonder if it works the same on your computer.
    Thanks for your concern.
    Attachments:
    lvlog2011-05-13-23-23-35.zip ‏150 KB

  • Change the parameter in the formula by Labview?

    I need to set up a formula (Since I need to analysis data, so everytime have differece formula, but I can't build up a new VI everytime),for example sin(a*x)*exp(b*x). If a & b & the formula are fixed, I can do it. But now, I need to make the a & b to be a set of values, like "a" is 0:1:10 and b is 50:0.1:100. That means when "a" is 0, "b" will go from 50 to 100 with step 0.1. And I need to be able to use the same VI for other formula. I try a few different way but still not able to come out the answer. Please help
    ====================
    =Labview 7.0 & 8.0 & 8.5=
    =====================

    Hello asd,
    for a & b parameters you have to use 2 nested loops with your formula inside and you get a 2d-array with results.
    You can also change the formula if you use the "Eval Formula Node" in Analyze->Mathematics->Formula (not in base package). But I recommend to use this for not too big loops, because this function is slow...
    Best regards
    Gerd
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Integrate a very sophisticated formula in labview

    Hello all
    in my Phd i have a very sophisticated formula that i need to integrate in my labview code .
    please ho know a solution that can make easy this integration in my project 
    please see the example attached
    Solved!
    Go to Solution.
    Attachments:
    formula.JPG ‏58 KB

    You can enter it more or less straight from that text into a FORMULA NODE.
    If you're interested in simplicity, that's the way to go.
    If you're interested in better performance, you'll have to factor it, same as you would for any other language.
    Instead of stating "2*pi*i*k" all those times, figure it once, and use it several times.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Formula in LabVIEW

    Hi,
    We have purchased LabVIEW 8.0 and currently working on a project based on LabVIEW. I have to write out the result from a formula calculation to a parallel port. The result of the formula is a 11 digit decimal number. I need to display the result in HEXADECIMAL format and write it to 3 16bit registers in an external board. But after executing the formula, I'm not able to convert the result to hex format.
    I look forward to your reply at the earliest.
    Yours faithfully,
    Vishnu Rajendran,
    JRF,
    BCG,
    CDAC Trivandrum.

    Check the numeric representation of the result of your calculation. If its a float it has no hex representation - at least in the sense that an integer does.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • CPU efficiency​: formula node or Labview generic operations​?

    Hello,
     ihave a big program which requires to calculate a lot of analog ramps with 10us step size, for a time of about 20sec. it leads to a calculation time wich reaches fast the few seconds!
    i use a formula node in which the ramp function is defined. i could use all normal labview operations if the operation appear to be faster.
    i have looked at the usual memory allocations, and could not find a big flaw
    ... And here's where I keep assorted lengths of wires...

    Don't forget that there is also a "ramp pattern" tool in the signal generation palette.
    I always like the experimental approach: The best advice would be to wire up a few alternative version and compare speed and memory use in a small benchmarking application.
    How many such ramps are in memory at any given time? Does your code generate extra data copies? What is the datatype? An 20M Sample ramp of DBL is 160MB!
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Mid-2010 macbook pro has started having "black screens"

    apple store diagnosed as "software failure".  they wiped it clean & gave me instructions to reinstall/restore from backup at home.  successfully reinstalled but another black screen after about an hour.  i am NOT a computer person so i need kindergar

  • Downloaded Photoshop CS6 Trial Version & Bridge won't work.

    When I go to open Bridge CS6, it gives me the error "Adobe Bridge CS6 has stopped working" With the following details: Problem signature:   Problem Event Name:          APPCRASH   Application Name:          Bridge.exe   Application Version:          

  • Resize width of frequency graph on Project Documentation view

    I just installed the Labview Sound and Vibration 9.0 on a 64-bit Windows 7 PC. Now when I try to widen the frequency graph window only the handles drag out wider. The view remains the same size. how can I widen the view? Is this a 64-bit driver issue

  • Does different IDOC channels means different queues?

    Hi, I have SOAP to IDOC scenario. I have 2 types of IDOCs, SYSTAT01 IDoc and NON-SYSTAT01 IDOCs. I have configured 2 communication channels for them, but they use the same RFC Destination & PORT will the 2 IDocs types go into different queues or will

  • SCM -ABAP development

    Hi, I am working SCM developmnet sys, I need to create a database(customizing) table in SCM system with fields plant planning group sales organisation and more three date fields can any worked on SCM , please let me know how to fetch data, I am copy