How to conduct two inputs two outputs syetem with fuzzy control funtion?

I have two DC motors to control two variable capacitor, and I use HP 8752c network analyzer to look the circuit's resonance frequency and reflection as a feedback control.
The relation between inputs and outputs are nonlinear and they are all correlative with each other. But it still has a trend so that I can tune them by myself. It's time-consuming.
I would like to ask that the fuzzy logic control is suitable for my situation?
The system is time-invariant.
Thanks.
Jack
J Wu

Hi steve ,
Sorry to say that you cannot configure and acquire from AI channels on a   Device simultaineously from 2 seperate VI's.
regards
Dev

Similar Messages

  • How to use Two main windows with in a page in script ?

    Hi any body explain me...
    How to use Two main windows with in a page in script ?
    with  header data in one main window,
    & Item data in other main window.

    HI..,
    u need to go for <b>SPLITTING THE MAIN WINDOW</b> !!!
    Main windows in page windows allow you to format text in multiple columns. Define an area in the page window, in which to position the main windows.
    Here is the procedure !!
    -->Create a page window and assign it to a page.
    Choose <b>Edit --> Main windows</b>.
    A dialog box appears.
    -->Enter values in the fields <b>Area width</b> and A<b>rea height</b> in accordance with the input guidelines for main windows.
    -->Enter values in the fields <b>Spacing</b> and Number in the <b>Horizontal group</b> if you want to use multiple columns. You can ignore the fields in the Vertical group.
    Determine how many columns and line areas are required for label printing. Then enter the corresponding values in the fields in the <b>Horizontal and Vertical groups</b>.
    -->The value in the field Left margin varies from main window to main window if multiple columns are used. The following applies:
    <b>
    Left margin of current column + Window width + Horizontal spacing = Left margin of next column</b>
    In label printing, the field Upper margin also varies from main window to main window:
    <b>
      Upper margin of current main window +  Window height + Vertical spacing = Upper margin of next main window</b>
    -->Enter a value in the field Start position.
    This is a counter. Enter a starting value which is equal to or greater than 1.
    -->The main windows are added to the list.
    -->Save your form.
    reward if it helps u...
    sai ramesh

  • How to change the input and output schema in BPEL process

    hi',
    Please tell me how to change the input and output schema in BPEL process after the process is made.
    thanks
    Yatan

    If your intention is just changing the content you are passing to bpel/returning from bpel
    Here is another way
    just update your default created xsd files with new elements, update wsdl elements in message definition and chnage bpel code to reflect new elements in activities
    Regards,
    Praveen

  • How to view the input and output layouts created in the planning folder?

    Hi all,
    How to view the input and output layouts created in the planning folder in the bw 3.5?
    Thanks
    Pooja

    Hi,
    You can refer to this link. How to create planning folder and executing the planning folder.
    http://help.sap.com/saphelp_nw04/Helpdata/EN/5d/7c4b52691011d4b2f00050dadfb23f/frameset.htm
    Hope this helps

  • How to set the input and output of a subVI

    I am trying to configure a subVI by following Chap. 7 of "LabVIEW fundamentals". But I stuck at "Building the connector pane".
    My subvi is quite simple, just for testing purpose. I plan to do a summation and display the result. So I placed one numeric Add icon on the block diagram and a numeric Indicator on the front panel. I built a connector pane with three terminals, two for input and one for output. 
    But, how could I associate the terminals on connector pane with inputs and outputs of terminals on the block diagram? I wanna build a subVI, whose input are two numbers and display the summation on the subVI.
    Forrest Sheng Bao, Ph.D.
    Assistant Professor, Dept. of Electrical & Computer Engineering
    University of Akron, Akron, OH, USA
    https://sites.google.com/site/forrestbao/

    Hi Forrest Bao,
    use the right mouse key as often as you can in LabVIEW. It´s very helpful. If you right click on a link in the connector pane, then you can select to disconnect selected or all.
    Mike
    Message Edited by MikeS81 on 08-28-2008 01:33 PM

  • How to merge two XML's with JDOM?

    How to merge two xmls's using jdom? like:
    is there a way to add the complete content one xml into the parent node of another xml?
    //in.xml
    <?xml version="1.0"?>
    <people>
    <person>
      <name>ABC</name>
      <email>[email protected]</email>
    </person>
    </people>
    //out.xml
    <?xml version="1.0"?>
    <address>
    <city> abccounty</city>
    <state> abcstate</state>
    </address>
    Merged XML:
    <?xml version="1.0"?>
    <people>
    <person>
      <name>xyz</name>
      <email>[email protected]</email>
    </person>
    <address>
    <city> abccounty</city>
    <state> abcstate</state>
    </address>
    </people>
    import java.util.List;
    import org.jdom.Document;
    import org.jdom.Element;
    import org.jdom.input.SAXBuilder;
    import org.jdom.output.Format;
    import org.jdom.output.XMLOutputter;
    public class MergeXMLS {
         public static void main(String[] args) {
              try{
                  SAXBuilder builder = new SAXBuilder();
                  Document books = builder.build("D:/in.xml");
                  Document onebook = builder.build("D:/out.xml");
                  Element root = books.getRootElement();
                  List rows = root.getChildren();
                  for (int i = 0; i < rows.size(); i++) {
                      Element row = (Element) rows.get(i);
                      onebook.getRootElement().addContent(row.detach());
                      System.out.println(row.getName());
                  new XMLOutputter(Format.getPrettyFormat()).output(onebook, System.out);
              }catch(Exception e){
                   e.printStackTrace();
    }

    The above code only add's the first node.
    I changed the code little differently to
                  SAXBuilder builder = new SAXBuilder();
                  Document books = builder.build("D:/in.xml");
                  Document onebook = builder.build("D:/out.xml");
                 //trying to add second xml into the first
                  books.getRootElement().addContent(onebook.getRootElement().getContent()); 
                  new XMLOutputter(Format.getPrettyFormat()).output(books, System.out);
    here is the exception from the above code:
    org.jdom.IllegalAddException: The Content already has an existing parent "address"
         at org.jdom.ContentList.add(ContentList.java:218)
         at org.jdom.ContentList.add(ContentList.java:140)

  • How to identify mandatory input or output via standard Oracle API

    Hi,
    I would like to know through the standard Oracle API, is there a way to identify the mandatory input or output required during API loading?
    Thanks and Regards,
    SC

    Hi;
    All APIs are listed in Oracle Integration Repository. I suggest check below notes:
    http://irep.oracle.com/index.html
    API User Notes - HTML Format [ID 236937.1]
    R12.0.[3-4] : Oracle Install Base Api / Open Interface Setup Test [ID 427566.1]
    Oracle Trading Community Architecture API User Notes, June 2003 [ID 241320.1]
    Technical Uses of Customer Interface and TCA-API [ID 269121.1]
    Pelase also check below:
    Api's in EBS
    Re: Api's in EBS
    http://sairamgoudmalla.blogspot.com/2009/05/script-to-find-oracle-apis-for-any.html
    API
    Fixed Asset API
    List of API
    Re: List of APIs
    Oracle Common Application Components API Reference Guide
    download.oracle.com/docs/cd/B25284_01/current/acrobat/jta115api.pdf
    List of APIs and open interface R12
    Re: List of APIs and open interface R12
    Regard
    Helios

  • How do i display input values (POV) for a table control field

    Hi guyz !
    How do i display input values (POV) for a field in table control,
    i mean when user presses F4 on a table control field.
    Please help.
    Thanks
    jahan

    PROCESS ON VALUE-REQUEST( F4 ) statement  
    Code to demonstrate how to perform a manual value help(F4) on a particular field using the PROCESS ON VALUE-REQUEST statement and how to return values back to a table control on the screen. For standard screen fields simply move the value to the appropriate screen field name.
    * Screen flow logic........
    PROCESS BEFORE OUTPUT.
    *MODULE PBO_MODULE.
    PROCESS AFTER INPUT.
    *MODULE PAI_MODULE.
    PROCESS ON VALUE-REQUEST. "F4
      FIELD EKPO-EBELP MODULE help_ekpo.
    MODULE help_ekpo INPUT.
    **Transport values to table dynpro/screen table control
      DATA: l_stepl LIKE  sy-stepl,
            l_indx  LIKE  sy-stepl.
      DATA: dynpfields        LIKE dynpread OCCURS 5 WITH HEADER LINE.
    * Adjust for scroling within table control
      CALL FUNCTION 'DYNP_GET_STEPL'
        IMPORTING
          povstepl        = l_stepl
        EXCEPTIONS
          stepl_not_found = 0
          OTHERS          = 0.
      l_indx = tc_ekpotable-top_line + l_stepl - 1.
              "tc_ekpotable should already have been declared
      REFRESH dynpfields.
      CLEAR   dynpfields.
      dynpfields-fieldname  = 'EKPO-EBELN'.
      dynpfields-fieldvalue = '00010'   "wa_ekpo-ebeln.
      dynpfields-stepl      = l_stepl.
      APPEND dynpfields.
      dynpfields-fieldname  = 'EKPO-EBELP'.
      dynpfields-fieldvalue = '00020'   "wa_ekpo-ebelp.
      dynpfields-stepl      = l_stepl.
      APPEND dynpfields.
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
        EXPORTING
          dyname     = 'SAPLZZ_EKKO'    "Program name
          dynumb     = '0100'           "Screen number
        TABLES
          dynpfields = dynpfields
        EXCEPTIONS
          OTHERS     = 0.
    ENDMODULE.                 " help_ekpo  INPUT
    reward points  if it is usefull ..
    Girish

  • How to synchronize analog input and output from two different USB daq boards

    Hi all,
    I have two very differnt USB boards the NI USB 6008, which I am using to acquire the data (Analog Input) and a NI USB 9263, it is an Analog Output only board that I am using to deliver a signal (in this case a square pulse). The reason why I am not using the 6008 Analog Ouputs is because I need to deliver negative voltages and need the full +/-10V range.
    Looking at similar posts I am pretty sure that I can't use an external trigger or a shared clock, I also tried to use the synchronization of timed structures but no cigar.
    I am including a quick vi that I whipped out showing how the signal jitters due to the lack of synchronization. The AO from the 9263 connects to the AI in the 6008 in this example.
    Solved!
    Go to Solution.
    Attachments:
    Test Pulse.vi ‏117 KB

    I talked to a specialist in the phone and tols me that it is not possible.

  • One input Two outputs required with UDF !!

    HI Guys,
    Plese give me some ideas how to write a UDF, with one input value (true) and return two answers "True" and "False".
    any inputs about this please?
    Regards
    San

    I think you can do this graphicaly , there is no need to use .....  UDF
    What i understand is , you reqd. a
    FALSE , TRUE ,FALSE , FALSE  -
    > for these two .... on the basis of that by using graphical mapping -
    >   You can get DISTINCT VALUES i.e result would be a queue contains ... TRUE , FALSE .
    FALSE , FALSE ,FALSE , FALSE  -
    > for these two .... on the basis of that by using graphical mapping -
    >   You can get DISTINCT VALUES i.e result would be a queue contains ... FALSE only
    TRUE, TRUE, TRUE, TRUE  -
    > for these two .... on the basis of that by using graphical mapping -
    >   You can get DISTINCT VALUES i.e result would be a queue contains ... TRUE only
    am i understanding right ..if yes.... I will let you know the GRAPHICAL NODE FUNCTIONS
    regards
    Prabhat Sharma

  • How to generate two output tupe automatically in purchase order

    Hi,
    I am working on Idoc, the requirement is to generate an IDOc when an purchase order is created . At present i am using one output type NEU with the medium ALE Distribution.
    Later there was a new requirement when all the Items of the PO are deleted a new ouptut type ZNEU has to be used.
    At present  the output type NEU is automaticatally populating when the message tab is clicked. But the other output type ZNEU has to be populated automatically when all line items are deleted.  Can u tell me how to do this

    Dear Josephine,
    you can manage this using user-exit (or BADI). When you check that all positions are deleted, you can submit (using job schedule or other) the report RSNAST00 to execute the message output.
    In other situation you can create an output condition (customizing routine) to validare the output message only if all the position are deleted.
    Use NACE transaction to set all customizing data about output message.
    Regards,
    Gianluca Simeone

  • How to connect Digital Optical Audio output iMac with Receiver Input

    I have connected iMac with onkyo hts-3300 home theater system receiver through optical audio TosLink Cable.( http://www.amazon.com/Digital-Optical-Audio-TosLink-Cable/dp/B001ZU3G2I/ref=sr12?ie=UTF8&qid=1292865309&sr=8-2 ). Unfortunately there is no sound coming out from the Home theater system. I have verified the Receiver optical input is working fine by connecting with my TV optical audio digital out put and the it's working great. The only difference between TV and iMac is, on my TV, it has optical audio digital output and I can use this cable (http://www.amazon.com/Tripp-Lite-A102-02M-Digital-connectors/dp/B0002WPREU/ref=s r11?s=electronics&ie=UTF8&qid=1297320792&sr=1-1) to make it work. I can also verified my optical audio TosLink Cable working because I can see the red light coming out from the cable. So the only problem could be from iMac. I doubt I need to change the additional setting to configure iMac to use external optical audio setting instead of the buit in audio setting. Hoe can I able to do it? or my iMac(IMAC 21.5"/3.06/2X2GB/500GB/9400M-ITP
    MB950ZP/A) doesn't support optical digital audio out put? I have follow this thread http://discussions.apple.com/thread.jspa?messageID=12769423&#12769423 and to my surprise which doesn't work out for me. I doubt that i need to change some setting, but when I got to setting>> sound I cannot change any setting. I was quite depressed aldy. Can someone answer my question as i m a newbie here. Thanks a lot

    Thank you very much for your reply.
    @Király : May i know how to Open Audio Midi Setup? Is this Audio Midi Setup is in the locatated in the Setting in Mac Snow Leapord OS? or how to locate this "Audio Midi Setup " in Mac enviroment. Is it possible to open this Audio Midi Setup in windows 7 enviroment also? I Just want to get the audio from my iMac in Hts-3300 onkyo home theatre. YOur help is much appreciated
    @rkaufmann87 : Thank you very much for your sharing about this http://www.apple.com/airportexpress/ connection. for me what i understand is the digital audio output in airportexpress is the same as the audio out put in iMac in terms of details sepcs. So this airportexpress will only help you connect wirelessly to home theatre system, rather than waired connection. Other than that nothig much difference. So there is no point for me to spend extra bucks to attain the wireless connection. Unless the airportexpress have optical digital input, which i believe not. Correct me if I m worng, thanks

  • How to sync two iCloud accounts with MS-Outlook?

    Hi People!
    Me and my wife have iPhones and each of us has a personal "[email protected]" account.
    We share the same desktop computer at home, and I am wondering how to bring both accounts info (e-mail, contacts and calendar) to the MS-Outlook.
    Does anybody knows how to do so??
    Some info:
    -We really share the desktop, i.e., we both login using the same ID and we don't want to create separate Windows accounts
    -We don't want the contacts to get mixed.
    -I already configured the iCloud Control Panel to bring my personal iCloud info into the Outlook, and it is working fine
    -I simple couldn't find a way to create a second iCloud Control Panel to configure my wife's iCloud account.
    Thanks for the help!
    Marcello.

    You cannot merge two iCloud accounts.
    you can delete and keep one iCloud informations on iPhone and then connect to other one, then you just will need to merge the informations.
    But you will always have the 2 diferent iCloud accounts.
    keep me posted

  • How to merge two java files with InputDialog to select?Please help me!?

    //Addition Java application
    import javax.swing.JOptionPane; // import the class
    public class Addition {
    // main method
    public static void main(String[] args)
    String firstNumber, secondNumber;
    int number1, number2, sum;
    // read the first number
    firstNumber = JOptionPane.showInputDialog("Please enter a integer: ");
    // read the second number
    secondNumber = JOptionPane.showInputDialog("Please enter another integer: ");
    // data type conversion
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    sum = number1 + number2;
    // display the result
    JOptionPane.showMessageDialog(null, "The sum is " + sum + ".", "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    //Multiplication Java Application
    import javax.swing.JOptionPane;
    public class Multiplication5
    public static void main(String args[])
    int number1, number2, number3, number4, number5, product;
    String firstNumber, secondNumber, thirdNumber, forthNumber, fifthNumber ;
    firstNumber =
    JOptionPane.showInputDialog("Please input an integer");
    secondNumber =
    JOptionPane.showInputDialog("Please input another integer");
    thirdNumber =
    JOptionPane.showInputDialog("Please input the third integer");
    forthNumber =
    JOptionPane.showInputDialog("Please input the forth integer");
    fifthNumber =
    JOptionPane.showInputDialog("Please input the fifth integer");
    number1 = Integer.parseInt(firstNumber);
    number2 = Integer.parseInt(secondNumber);
    number3 = Integer.parseInt(thirdNumber);
    number4 = Integer.parseInt(forthNumber);
    number5 = Integer.parseInt(fifthNumber);
    product = number1 * number2 * number3 * number4 * number5;
    JOptionPane.showMessageDialog(null, "The product is " + product, "Results", JOptionPane.PLAIN_MESSAGE);
    System.exit(0);
    I seek for help to merge above two java application files.
    I need to call JoptionPane.showInputDialog to prompt the user to input the operation, 1 for addition, 2 for multiplication. In this dialog, the user is expected to enter the integer of 1 or 2 for the calculation.
    Please help me ! Thank you!

    Hi CRay,
    You just need to call the main methods of the 2 classes according to "1" or "2" entered.
    It is better if the "multiplication" and "addition" are declared as methods rather than in main methods.
    Example:-
    public static void Addition()
    Then call
    Addition.addition();
    than
    Addition.main(new String[]{});
    as shown below.
    import javax.swing.JOptionPane; // import the class
    public class Test{
        public static void main(String[] args){
            // read which  operation to perform
            String operation = JOptionPane.showInputDialog("Please enter which operation : ");
            if(operation.equals("1")){
                Addition.main(new String[]{});
            else{
                Multiplication5.main(new String[]{});
    }Rose

  • How to get two syslog resources with different filter levels into ASA

    Hi All,
    I have my ASA's set up to push logs to my syslog server:
    logging host inside 198.xxx.xxx.185
    logging trap notification
    However, I would like to also trap if a VPN on my ASA's go down, but I want to send that to my SNMP server, NOT my syslog server. I also want to only trap that VPN log message and nothing else, so I want to set the filter level to emergencies:
    logging host inside 198.xxx.xxx.16
    logging trap emergencies (+ system message 123456)
    How can I configure my ASA so that these two syslog destinations will have separate respective filter levels of notifications for .185 and emergencies for .16?
    Also, does anyone know the System Log Message ID for a VPN tunnel going down?

    Dear Ronny,
    i am gining the solution below.But would request you to change your ITAB STRUCTURE LIKE THIS BEFORE USING THE CODE
    VERME LGPLA
    252.000 EA 300 0149A  0149 410
    276.000 EA 300 0149A  0107 410
    516.000 EA 300 0149A  3013 400
    528.000 EA 300 0149A  3013 400
    528.000 EA 300 0149A  3013 400
    528.000 EA 300 0149A  3013 400
    528.000 EA 300 0149A  3013 400
    528.000 EA 300 0149A  3013 400
    528.000 EA 300 0149A  3013 400
    then do as follows.
    SORT ITAB BY LGPLA VERME.
    LOOP AT ITAB INTO WITAB.
    W_INDEX = SY-TABIX.
    here take all the abOve fields in temp fieds.
    LW_VERME = WITAB-VERME..AND SO ON.
      AT END OF LGPLA.
       MOVE: all LW fields to work area of ITAB1
       APPEND work area of ITAB1 TO ITAB1.
       DELETE ITAB INDEX W_INDEX
      ENDAT.
    ENDLOOP.
    Basically what u r doing here is thet u r using processing event.
    So whenerv VERME changes this event will be triggered.
    Just try this out...something like this only will be he logic.
    Please let me know further

Maybe you are looking for