How to zero the values that are greater than 0 at time 0?

Hello, New user,
I would like to know how to zero values that are greater than 0 at time 0.  I am totalizing gas flow and understand how not to add the negative numbers but am unsure about the positive numbers at 0 flow.  I hope I have explained this good enough.
Thank you,
Lisa

I don't understand why the value which should be 0 is actually greater than 0.
How do you determine that the value should be 0, such as no flow, even if the value is greater than 0?
Ryan Shi
Hello Ryan,
The system itself may have an offset of 0.1 V which in the program is related to flow.  I do not wish to add this .1 as flow.  I want to beable to reset the values to 0 and then when there is flow, to add the flow.   If you purchase a program from some vendors you can zero the channel, that is my goal.  I want this to be automatic when a switch is pressed.  Such as:  for 20 seconds, average channel, and use that value as 0 flow then add flow??   I was told averaging may work??
Thank you again,
Lisa Williamson

Similar Messages

  • How to capture the values that are being passed to a function module?

    Hello Experts!
    While executing the transaction SBWP  to send a document the FM 'SO_DYNP_SHORT_MESSAGE' gets triggered as soon as the SEND button is pressed would anybody please let me know how i can capture the values that are being passed to it in the process of sending a document?
    Regards
    Sanguine

    Hi
    well, I'm not asking you to explain about how an implicit enhancement can be done. i was just referring to the two options posted in the reply. Is there any other way out apart from the implicit enhancement option. i do find class CL_BS useful as the Method ADD_RECIPIENT gets triggered . even though there's no attachment option in the screen that pops up after the method ADD_RECIPIENT is triggered. would anybody suggest me as how to proceed further to capture the values though without attachment details
    Regards
    sanguine

  • How to find the urls that are longer than 260 characters

    Hi
    I'm getting an error using Restore-SPSite thats most likely caused by URL's longer than 260 characters. How can I find out which URL's are too long? It's a huge site collection so it's not an option to search manually.
    Regards
    Jakob

    check this blog, allows you to take an inventory of all files in your web application and flag those files where the path (or URL) is longer than 260 characters.
    Locating files and pages with URLs that are too long for SharePoint
    Also check this: http://social.technet.microsoft.com/Forums/en-US/881d62e6-08c3-43b6-a9f1-96161ffa0201/how-to-write-a-powershell-script-to-find-the-url-path-length-of-all-the-files-and-folders-in?forum=sharepointdevelopmentprevious
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • HT1349 how to link the songs that are in itunes to my account so i can to me sales

    how to link the songs that are in itunes to my account so i can to me sale

    You'll need to copy the content on your iPod back to your iTunes library first.  Once you have successfully done that you can safely erase and sync your iPod.
    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • How to pass the value that the user clicks on

    I have a bunch of files that i am displaying. If the user clicks on a file I am taking to another page. I want to capture
    the value that the user clicks on as that's the file name.
    I am displaying the list of files in a loop and have a href to the next page.
    the setAttributes and getAttributes do not work as they capture only the last value in the loop.
    Any suggestions what I should use?

    The standard approach is to send a request parameter with the click.
    You are showing the filenames as hyperlinks?
    Then you just have to make the link
    <a href="fileDetails.jsp?fileId=<%= currentFile.getFileId() %>">currentFile.getFileName()</a>You can then use request.getParameter("fileId") to find which link was clicked.
    Cheers,
    evnafets

  • Is it normal for a waveform graph to truncate arrays of values that are longer than others when displaying multiple waveforms on the same graph?

    I am reading back values of several waveforms that were saved to disk using the write to spreadsheet vi. Some of the data sets are longer than others eg. 35 seconds vs 45 seconds. All have the same sample rate.
    See the code segment below. If I select the larger files first then all the data will show. If I select a smaller file first the larger ones will be truncated to the size of the small file. I am using LV 7.0.
    Attachments:
    codesnippet.vi ‏41 KB

    I needed to make some grammatical/ nomelclature changes, But, Could not edit the previous post.
    so posting again
    "Thats because you are inserting into an array of a predefined size.
    For ex,
    When you try inseting a 1D array 'A' of 50 elements as row 1 of a  2 D array of 40 elements(in row 0 ), only only the first 40 elements will get insetred into 2 D array. You lose the last 10 elements of array 'A'
    To avoid this, I suggest you use XY graph( of course you have to create an x axis with the index of each element in the inserted array and plot on xy graph).
    Any doubts, do get back"
    regards
    Dev

  • How to identify the files that are exported but still present in Oracle UCM

    Hello All,
    I am using Oracle UCM 11g on Windows OS.
    I want to know that if i have exported the contents from Oracle UCM to external file system, but keeping the contents and metadata into the Oracle UCM. How one will be able to identify that the contents that are being exported? Will there be any attribute set for any such contents indicating that these contents were exported?
    Your help or hint will help me out in resolving the problem.
    Thanks in Advance
    Dipesh

    Hi Srinath,
    Thanks for the reply.
    I did not find the place where to check this?
    On the content tab of the Repository Manager Applet, what is the column do i need to set for indication that the content is archived?
    Regards
    Dipesh

  • How to retrieve the users that are following a document using JSOM / REST APIs in SharePoint 2013

    Hi everyone,
    Does anyone know how to use JSOM / REST APIs to retrieve the users that are following a specific document in SharePoint 2013? 
    Thanks in advance,
    Nam

    Hi Nam,
    Please use the sample code to get the followers for the document. Courtesy: Mokhtar
    Bepari 
    using Microsoft.SharePoint.Client;
    using Microsoft.SharePoint.Client.Social;
    ClientContext clientContext = new ClientContext("http://URL");
    SocialFollowingManager followingManager = new SocialFollowingManager(clientContext);
    SocialActorInfo actorInfo = new SocialActorInfo();
    actorInfo.ContentUri = "<documenturl>"; //set the document url.
    actorInfo.ActorType = SocialActorType.Document;
    //By using the GetFollowed method you can get the people who the current user is following.
    ClientResult < SocialActor[] > followedResult = followingManager.GetFollowed(SocialActorTypes.Users);
    //By using the GetFollowers() method you can get the people who are following the current user.
    ClientResult < SocialActor[] > followersResult = followingManager.GetFollowers();
    clientContext.ExecuteQuery();
    Once you get the resultset you can iterate like below:
    foreach(SocialActor actor in followedResult)
    string name = actor.Name;
    string imageURL = actor.ImageUri;
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • How to find the value that is in structure???

    hi experts,
                 i am changing standard form QM_INSP_RESULT I have an field MITTELWERT in QGRES
    ie QGRES-MITTELWERT where QGRES is a structure .i need the value that is present in the field.How to find it.

    Hi Manikandan Muruganandham ,  
    To find fields the refined search is through Transaction SE84.
    Go there and find the fields of your choice.
    1> <b>ABAP DICTIONARY</b>
    2> <b>FIELDS</b>
    3> Select <b>Table fields</b> to know where you can find the field of your choice.
    Reward Points if useful.
    Thanks,
    Tej..

  • How to seperate the pulses that are acquired from real world according to their pulse heights in LabVIEW.

    Hi everybody,
    Can any one help in getting out this. Actually I am acquiring gamma rays from proportional counter into the LabVIEW, Coming to the analysis part, I need to seperate the pulses according to their pulse heights. After seperating them I need to digitise the pulses that are seperated. So I request you to sort out this as early as possilbe.
    Thanks in advance.
    A.Giridhar Yadav.

    I am confused about your description. You indicate that you are acquiring the signals but then you want to digitize them later? Any signal processed by LabVIEW has already been digitized because the software only works on numbers, not continuous voltages.
    1. How are you acquiring the data from the proportional counter into LV? What DAQ device are you using? What sample rate?
    2. What is the duration of the pulses? Gamma pulses from PMT and scintillators are usually rather short.
    3. Do you have any log amplifiers or other signal conditioning between the detectors and the DAQ device?
    Lynn

  • Tzupdater.How it reflects the users that are not using the new USA DST rule

    If I update the JRE with tzupdater or just replace it with newer JRE will the time change according to the time zone I live in because I think that the changes in USA DST will not apply for the most of the other countries.

    Hi,
    You can do this directly in OAM, with option "a" (using auxiliary object class). You configure OAM to use the main person object class (inetorgperson) and then you can associate extra auxiliary object classes to it - and header variables can be set from any of the attributes that are in the user's profile, both main and auxiliary.
    Regards,
    Colin

  • How to download the files, that are located in server, from the client?

    Hello folks,
    My program is like that, the files are located in the server and stored in file system.
    I can only know the server name and the directory listing, so that I can show the file names from that directory on the browser.
    The user might downloads those files from the browser and he might deletes those files through the browser.
    That user has valid right to do so and the files can be any type of extension.
    So how can I write this kind of program? Currently the whole system is in struts, so how can I make compatible with struts technology?
    Do u have any ideas?
    Regards,
    Phyo

    Thank you, grigpm. But actually I want the user to select the file that he wants to download rather than setting it in the configuration file. If it is possible, let me see the sample code of FileManager servlet. I've tried with some ways but I can only download from the same server with the application server. I want to download from different server. I hope someone can help me with sample code....
    Best regards,
    Phyo

  • How to know the concurrents that are scheduled?

    Hi all,
    Is there a way to find the concurrents requests that are scheduled on my APPS enviroment using a SQL query?
    Tks,
    Paulo.

    Paulo,
    Check the following query:
    SQL> select *
    from fnd_concurrent_requests
    where status_code in ('Q','I')
    and requested_start_date > SYSDATE
    and hold_flag = 'N'; Note: 170107.1 - How to Determine Scheduled Concurrent Requests
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=170107.1

  • HT201320 how to correct the mistakes that are on new IPhone that ATT downloaded

    Just had a new phone replace broken one, ATT downloaded my info [ some of it] now I do not know my phone anymore because so much has changed. Is it a new format or did ATT screw up?
    1. Now each email continues a thread indicating the number of email I have for that contact , plust the actual email is attached , which I do not need, Can this tread be removed?
    2. ATT downloaed my contacts which I had added in a specific manner, such as every Sue was entered by last name,  Now, every contact is noted by last name AND  first name in the alphabet, it is so annoying
    Can this be corrected?
    3. ATT downloaded my pictures in a very strange format, each is 1/3 the original size and is loaded sideways, horizontal rotation will not make the photo correct . 
    4. ATT did not download any of my APPS, some of which I had paid for,
    How to get this corrected, as now w/ the new phone, each APP says money is required again
    5. where do I go to have the email have at least 5 lines on screen?
    Thanks for any assistance

    Thanks Srinath.
    I found the document that you recommended in the post. I will try that now!
    Just in case, If wanted to rollback to the original how do I do that ? Since this is my first OAF extension I guess , it wont be perfect the first pass! So, Is there a way to rollback the changes and put back the original VO?
    Please let me know.
    Thanks,
    FR

  • How to backup the files that are into the Time Capsule HD? is it possible?

    Hi my question is not so simple...I think
    I'm using a TC only as a router and a network HD
    and I saved on it all my movies, tv shows and also my itunes library and iphoto library to share all this stuff also to my mac mini which is connected to my Plasma tv.
    I wanna know if is it possible to backup with time machine the TC hard disk
    because I don't know how to tell to time machine to backup not my macs but my TC.
    I read this article that explain How to enable Time Machine on unsupported volumes
    http://www.engadget.com/2007/11/10/how-to-enable-time-machine-on-unsupported-vol umes/
    You think that if I activate this option Time Machine can read from TC and make a backup of it?
    Message was edited by: riki1278

    riki1278 wrote:
    I wanna know if is it possible to backup with time machine the TC hard disk
    No, sorry, Time Machine cannot back up a network drive.
    You can copy ("archive") everything on the TC's internal HD to a USB drive connected to it, per the green box in #Q6 Using TIME MACHINE with a TIME CAPSULE *User Tip,* also at the top of this forum. That's probably the simplest and easiest way, but it's also likely the slowest.
    Or, see Kappy's post on Basic Backup, complete with links to the web sites of each product. I've also heard that Chronosync may work for this purpose.

Maybe you are looking for