How do I pick the correct example to follow?

I am monitoring 6 channels current output, using this information to ramp at 2 amps per/10 min's for 85% then to 100% for the remaining time. Sit for 20 min's then freefall to 0 amps.30 amps max. I found an "update channel VI for the first ramp, but what do I use from this point on?

From your description I am not sure I have a clear picture of what you want to achieve.
AO Update Channel.vi sets the channel output to a specific level at the time the call to the VIO is made. You should be able to continue using that to set the output to 0 whenever you wish. There is no 'freefall' since the ouput is determined by a DAC which will output a specified value when it is strobed.

Similar Messages

  • Need help picking the correct hard drive upgrade for my MBP

    I need help picking the correct/best hard drive upgrade for my MBP. It is the 15" 2GHz Core Duo. Came with a spacious 90GB drive.
    Suggestions and recommendations very appreciated.

    It will take almost any 2.5 inch sata drive.
    Take a look at www.newegg.com and www.macsales.com to see what's out there and how much it costs.
    Toshiba have a 320gb 2,.5 inch drive in the works, but it's not quite out yet and will be expensive.
    I'll start you off..
    http://www.newegg.com/Store/SubCategory.aspx?SubCategory=380&name=Laptop-Hard-Dr ives

  • Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • How do I get the correct ICloud account on my iOS devices?

    Hello. A few days ago, I changed my Apple ID username from my old email to my new one. Everything worked fine and I was able to re-login to the App Store, iMessage, etc. A few days later, I got a message from iCloud asking me to login. When I tried to login it failed and I realized that it was using my old Apple ID email to login to iCloud. So I went into accounts and tried to delete that account and add the account with the correct Apple ID. When I tried to delete the account it asked for my iCloud password to confirm, which doesn't work because it is using my old Apple ID. I then tried to add my current iCloud account without deleting the old one, but when I did it said it was already on the device. How do I get the correct ICloud account on my iOS devices?

    Log out of the old ID, then login using the new one with the correct pw.

  • How to find out the Correct Controlfile script Trace .trc file in /bdump

    Hi Guys
    This is the most childish queries in this forum ..
    I wanna know how to Find out the correct trace file when we Issue alter database backup controlfile to trace at sqlprompt for Creating controlfile script.
    As i find it a bit confusing to go through the same Date & almost same time .trc files out of hundreds of trace file in /bdump directory to find the correct one.
    if we 've to find the Alert log file in /bdump directory $ ls -l al* & we get the alert log file .... if there is any similar way to find out the controlfile script Trace file ?
    Thanks & regards
    MZ

    MZ_AppsDBA wrote:
    Hi Guys
    This is the most childish queries in this forum ..
    I wanna know how to Find out the correct trace file when we Issue alter database backup controlfile to trace at sqlprompt for Creating controlfile script.
    As i find it a bit confusing to go through the same Date & almost same time .trc files out of hundreds of trace file in /bdump directory to find the correct one.
    if we 've to find the Alert log file in /bdump directory $ ls -l al* & we get the alert log file .... if there is any similar way to find out the controlfile script Trace file ?
    Thanks & regards
    MZcreation of the does not happen automatically. What script, and when does it run, do you have that creates the control file trace? Look for files in that time frame. Better, modify that script to specifically name the file .. BACKUP CONTROLFILE TO TRACE AS ....

  • How can I Locate the correct filepath in a jsp page?

    In http://localhost:8080/myweb/a.jsp, I will call a java bean file which is locate in http://localhost:8080/myweb/WEB-INF/classes/haha/DBConnection.class. This java file requires to read an external file which locates in http://localhost:8080/myweb/WEB-INF/classes/haha/db.txt
    My question is how can I get the correct filepath in this environment?
    inputStream = new BufferedReader(new FileReader(????????));
    Only this will work
    inputStream = new BufferedReader(new FileReader("D:\Program Files\Apache Software Foundation\Tomcat 5.5\db.txt"));
    But no one will place the file here, and it is impossible to do this when upload to 3rd party hosting.
    Any suggestion? thx.

    Thx all, in a jsp page, calling this method is fine.
    ServletContext s = getServletContext();
    String a = s.getRealPath("/");
    In a Servlet file, below method is ready to use:
    String b = getServletConfig().getServletContext().getRealPath("/");
    My problem is, I have a jsp page, which initialize a java bean , this java file is responsible for Database Connection, which will read the external text file to get the login, password and database name. So I won't need to recompile this file every time when I place in different platform with different configuration. I only need to edit the text file is ok.
    But How can I get the absolute file path when that jsp page initialize that java bean file? Below is my error, any suggestions are thx.
    package sql;
    import java.sql.*;
    import java.util.ArrayList;
    import java.io.FileReader;
    import java.io.BufferedReader;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class DBConnection extends HttpServlet{
    public String sql = null;
    public Connection con = null;
    public Statement statement = null;
    public ResultSet rs = null;
    private BufferedReader inputStream = null;
    private static ArrayList<String> arr = new ArrayList<String>();
      public DBConnection(){
        String fs = System.getProperty("file.separator");
        ServletContext s = getServletContext();
        String realpath = s.getRealPath("/");
        String filepath = realpath + "WEB-INF"+fs+"Properties"+fs+"db.txt";
        try{
          inputStream = new BufferedReader(new FileReader(filepath));
          String l;
          while ((l = inputStream.readLine()) != null) {
            arr.add(l);
          Class.forName("com.mysql.jdbc.Driver");
          this.con = DriverManager.getConnection("jdbc:mysql://localhost:3306/"+arr.get(0)+"?user=" +arr.get(1)+ "&password="+arr.get(2)+"&useUnicode=true&characterEncoding=utf-8");
          this.statement = this.con.createStatement();
        }catch (Exception e){
          System.err.println(e.getMessage());
        }finally{
    }java.lang.NullPointerException
         javax.servlet.GenericServlet.getServletContext(GenericServlet.java:159)
         sql.DBConnection.<init>(DBConnection.java:20)
         html.ShowCategory.<init>(ShowCategory.java:17)
         org.apache.jsp.left_jsp._jspService(left_jsp.java:66)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

  • How do I get the correct icons for Favorites?

    How do I get the correct icons for Favorites on my iPad? I am using iOS 7.  The icons show up correctly in my bookmarks in Safari on my iMac OS X (10.8.5).

    I don't think there is a way to get them. Why they show in the Bookmarks vs Favorites.

  • Picking the correct vendor for purchase requesition

    Hello
    We have done a carv out of an system for a client and they have abandond SRM and MDM. since the new company only are using one catalog, all of these materials are established as standard material master. But there is a small problem, when we are creating serviceorders in IW31, and PR are created on the bases of this the vendor/inforecord is not picked up, so at the creation of PO the purchaser must add the vendor after he has picked up the PR. The inforecord exists for only one combination of material-vendor. I have tried to create a sourcelist for the material, the settings in the sourcelist are a date range (010110-311210) the vendor, purchorg, the tick for fixed source is set and the MRP value is set to 1. Then I belived that it should have been picked up during creation of the PR. If i go into the PR an click on "assign source of supply" it picks the correct vendor and inforecord, there are no options, there are no contracts. What can i do to make the PR pick this automaticly?
    Regards
    Ivar

    I tried that but it did not work. We have also since last time maintained some values in OMI8. and set the parameter EVO on the user, but nothing helps. So now we have called in the abap-man to se if he can debugg whats wromg. Since after the small changes we did, when creating the PR manually in ME51N it picks up the vendor and inforecord without clicking on, basicly we set the pid EVO on the user and it defaults the sourcedetermination tick in ME51N to be set.
    But sitll not possible to get it from the serviceorder in IW31, the PR that are created in the background there still is without vendor and inforecord.
    Any more tips?
    regards
    Ivar

  • While doing 3rd party process,  So, how system will pick the vendor?

    Hi  SAP SD Experts,
    while doing 3rd party process, at the time of creation of sales order system automatically creates Purchase Requestiion with   reference to this Purchase order will be created while creating Purchase order system automatically picks the Vendor?
    So, how system will pick the vendor?
    where we do configuration for this?
    please help me out.
    Thanks & Regards,
    Nivas

    HI
    Based on the source List , Check with MM Consultant for better understanding the Source list concept
    and also check the below links
    [About the Source List Determination|http://www.sap-img.com/materials/about-the-source-list-determination.htm]
    [Inforecord and source list  |Inforecord and source list;
    Regards,
    Prasanna

  • HT1267 HAVE SET UP AN INCORRECT EMAIL ADDRESS. The call centre set up a new email address as the Username. I am unable to access the new account because the default on my phone is the email that is incorrect. How do I get the correct email as default

    I HAVE SET UP AN INCORRECT EMAIL ADDRESS. The call centre set up a new email address as the Username. I am unable to access the new account because the default on my phone is the email that is incorrect. How do I get the correct email as default??

    Thank you for your help, much appreciated
    Regards
    Geoff

  • Hi, can you help?  My emails that I have received show the date received as either today, yesterday or July 28.  How can I get the correct date received?

    Hi, The emails that I have received show the date received as either today, yesterday or July 28.  How can I get the correct date received?

    That's very scary. They might do it, but I personally have never had Apple contact me re id's except on their site when signing in. I suggest you DO NOT respond until you have a phone conversation with Apple security. They can verify if they sent you the e-mail and why.
    While it's very possible it's true,again, I suggest you not respond until you speak to someone at Apple. I've often read here that when people sign in they are not allowed to because "someone else has used the id" type of statement.
    Also, you should be able to go to the app store and see what apps you have downloaded.
    Though it could have been a free app, have you checked to see if any were bought with your id account?
    I've gotten these types of e-mails from places like USPS and FedEx which look amazingly authentic and were from their website. I also received an odd e-mail from my cousin in Ireland last year that clearly was not from him. It was also sent to others in his family in Ireland. I e-mailed him that I only opened it because it had a .ie, but suggested he change... Days later I received mail from 'him' - same name, but at yahoo.com. 
    Again, I would call Apple. You can also report it at [email protected], but I would not settle for that given your situation. If nothing else, call Apple sales (sales depts. anywhere answer fast) and ask them to transfer you to security. Apple will not want anybody accessing their name, and while it's unlikely, it's not impossible that it is someone phishing.
    Hope this helps and can you let the support community know your results by posting on this thread when you're done? Thank you.
    Hope this helps.

  • How can I use the "Correct camera distortion" filter and process multiple files in PSE 11?

    How can I use the "Correct camera distortion" filter and process multiple files in PSE 11?

    Did you check the help page for Correct Camera Distortion and Process multiple file
    Correct Camera Distortion: http://helpx.adobe.com/photoshop-elements/using/retouching-correcting.html#main-pars_headi ng_5
    Process multiple files: http://help.adobe.com/en_US/photoshopelements/using/WS287f927bd30d4b1f89cffc612e28adab65-7 fff.html#WS287f927bd30d4b1f89cffc612e28adab65-7ff6

  • TS3103 I have aol and cannot acesss my email after updating to osx 10.6. the help says that I need mail 4.6. I have 4.5.  How do I get the correct version?

    Ihave aol and cannot acesss my email after updating to osx 10.6. the help says that I need mail 4.6. I have 4.5.  How do I get the correct version?

    Run all software updates.
    http://support.apple.com/kb/TS4424

  • How can i Pick the data from the string

    Hi Gurus
    How can i Pick the data from the string using regular expressions. for ex:
    1) 10000-san0001
    2) 3000000-rani0001
    3) 30-super003
    its doesnt mainain how many characters.
    like this i got string. now i only want  after the symobl( -) text (san
                                                                                    rani
                                                                                    super)  .how can i pick that
    can anyone provide me regular expressions.
    Thanks & Regards
    Sandya
    Edited by: sandya rani on Jan 29, 2010 2:51 PM

    REPORT  ZTEST.
    data: str1 TYPE string,
    str2 TYPE string,
    str3 TYPE string,
    lenth TYPE string,
    str4 TYPE string,
    temp type i value '0'.
    data: ii type i value '0',
          jj type i value '1'.
    Data : begin of itab OCCURS 0,
    l_string type string,
    end of itab.
    itab-l_string = '3000000-GUNDALA20001'.
    append itab.
    clear itab.
    itab-l_string = '2045677-iCVj1001'.
    append itab.
    clear itab.
    itab-l_string = '3000-ragh30001'.
    append itab.
    clear itab.
    loop at itab.
      MOVE 0 TO ii.
      MOVE 1 TO jj.
      SPLIT itab-l_string AT '-' INTO: str1 str2 .
      clear: itab-l_string,str1.
      lenth = strlen( str2 ).
      while temp < lenth.
        str4 = str2+ii(jj).
        if str4 CA 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' or str4 CA 'abcdefghijklmnopqrstuvwxyz'.
          if sy-subrc = 0.
            CONCATENATE str3 str4 into str3.
          endif.
          ii = ii + 1.
        ENDIF.
        temp = temp + 1.
      ENDWHILE.
      write: / str3.
      clear: itab, ii, jj,str1, str2, str3, str4,temp, lenth.
    Endloop.

  • I have OS X Yosemite - my current version of iPhoto is not compatible with it / how do i find the correct version of iPhoto?  The APP Store keeps sending me back to the same 'current version' that is NOT Compatible...

    I have OS X Yosemite - my current version of iPhoto is not compatible with it / how do i find the correct version of iPhoto?  The APP Store keeps sending me back to the same 'current version' that is NOT Compatible...

    If you have Yosemite you need iphoto 9.6 from the App store - what is the exact error message you are getting?
    Try dragging the iphoto Application to the trash from your applications folder (wait tot empty the trash) and then install iPhoto 9.6 from the App store
    LN

Maybe you are looking for

  • Weblogic Server 10.3.6 (64bit)- Configuration Wizard - JVM Error

    Hi Friends, I am new to forum threads. Please don't mind if I have posted incorrectly. When I try to run configuration wizard of Weblogic server 10.3.6, I am getting the following error in JVM Launcher pop-up window. Error : Could not Create the Java

  • Recovering from a hard drive crash with play counts in tact - Is it possibl

    I keep all my mp3s on an external hard drive. Well, I did until it just crashed. Luckily, I backed up everything just yesterday to another hard drive so I didn't lose anything. My only issue is this...itunes can't find the files. I guess I can just s

  • Using Ethereal with EFAH05W workgroup hub

    Using Ethereal to sniff network data.  Trying to capture all traffic on the subnet, but only captures TCP traffic going to the machine running Ethereal.  Read that some hubs are actually 'switched' hubs, therefore will only capture data going to that

  • Requisition Release Strategy

    Hi, I am looking for a way for a requisition release strategy to reset (unapproved state) when the value or quantity or both is decreased. I have managed to do this in Config if the value or quantity or both is increased but not decreased. Scenario:

  • Adobe bridge for after effect cc

    i want adobe bridge for after effect cc