Simulation

Hi, i'm making a washing machine simulator (a really simple one) basically depending on the load size (big or small or medium) the front panel will display how many gallons of water used as well as the water temperature depending on the load type (delicates, whites, colors).  Additionally here is a timer that runs for a certain amount of time depending on the load size, once the wash cycle is completed, the dry cycle begins.  I have completed the code but it's not working and i don't understand why, the VI shows no errors and i can't see the problem.  I am fairly new at labview, please help.
Solved!
Go to Solution.
Attachments:
PROYECTO3erpar.vi ‏23 KB

You have made many of the mistakes we often see from people who are new to LabVIEW.
First is the use of the sequence structure.  LabVIEW uses a dataflow paradigm which eliminates the need for most sequence structures.
It looks like your code actually executes, although with the very long Waits you have in the central while loop and in the third frame, it is probably unresponsive most of the time.
I suggest that you look at the State Machine architecture.  It is much more flexible, robust, and adaptable for this kind of project.
For testing purposes try reducing the wait times by a factor of 1000 so that things happen in a few seconds rather than 10s of minutes.
Note that the output of the Wait(ms) function is a tick count and not the time which was waited. It is an unsigned integer and the subtraction produces a rollover. I attached a simple VI showing this. Look at the Elapsed Time Express VI.  It may be closer to what you want.
Lynn 
Attachments:
Wait subtracted.vi ‏6 KB

Similar Messages

  • Running under simulator

    Hi everyone,
    Is there a code snippet to tell if the application is running in the simulator or on the actual device?
    thanks
    tony

    Yes, thank you...
    I implemented it in this way....
    NSString *device = [[UIDevice currentDevice] model];
    if ([device isEqualToString:@"iPod touch"])
    else
    thanks for the direction
    take care
    tony
    Message was edited by: alt-088

  • View salary details in a single screen in Simulation

    Hi All,
    InPayroll Simulation is there any way to view the salry details in a sigle screen , insted of going to the drop down and view
    SD

    Try to run with 'Display variant Rem. Statement' parmaneter populated .

  • Error while creating a Quotation in dp81 with simulation

    hi Guys,
    My client has a simulation for an operative project. First a quotation was created through sales pricing in dp81. its rejected. now he wants to create another quotation with simulation. when the inputs are given its gives error as " The reference has already been completely copied or rejected".  Can anyone explain why this is happening and what is the solution.

    Hi,
    This is might be due the completion rule of the item category of the inquiry.
    Check first the item category of the inquiry sales document you are using. Second go to Tcode VOV7, completion rule field of the item category you are using should be empty in order to be able to create more than one quotation from dp81.
    Regards

  • Error while simulating Pay Plan

    Hi
    I created a pay plan item and trying to simulate the pay plan.I am getting the error "Error in debit entry Simulation".  Could anyone suggest how to get around this error
    Thanks and Regards
    Varadarajan B

    Hi Varadarajan,
    At first I assume that you are talking about an FS-CD Payment Plan. Is this correct? At second I assume you are referring to the Structure "SVVSCPOS_B" (Direct Input Structure of Payment Plan Items). Is this correct as well?
    If, and only if both assumptions are right: what 'nature' does the underlaying Payment Plan Item have? I assume it isn't a One-Time Payment (means: PSNGL = ' ' blank), when you execute 'Simulate Payment Plan' for a particular Insurance Object - Business Partner - Relationship, based on at least one item, or multiple items in table "VVSCPOS" (Payment Plan Item).
    Moreover: Are all important FS-CD Posting Areas (for example see transaction "FQC0", and table "TFK033C") properly configured?
    How did you create the Payment Plan and the Payment Plan Item(s)? I strongly recommend pretending being a feeder system and utilizing the special transaction 'VKTT'. Starting with "Read Partner - Application Server partner_std.txt > Continue" you will find in the main menu "Goto" for branching to Partner, Account, Ins. Object, or Payment Plan. Thus, you should create via VKTT
    a Business Partner,
    a Contract Account (with Relationship to this Business Partner),
    an Insurance Object (with Relationship to this Business Partner) and assigned to the Contract Account, see 2.;
    Thereafter you should create 4. an appropraite Payment Plan, of course with at least 5. one Payment Plan Item. Don't forget to save all your cases ;-)
    This approach will enable and support you to retest your scenario, and to analyze errors fast and easily, when you launch Collections/Disbursements > Master Data > Insurance Object > Change (transaction "INSOCHANGE") for the Insurance Object - see 3. - and the Payment Plan/Payment Plant Item - see 4. and 5. - you created through VKTT.
    If an error message occur, you should go to the Help and analyze the provided text. The AGS xSearch could help you in finding the root cause, please see "Home | SAP Support Portal"  <Login with your S-User or C-User) > "Knowledge Base &amp;amp; Incidents | SAP Support Portal" > "Search for a Solution | SAP Support Portal".
    Does this help?
    Kind regards,
    Jochem

  • IPhone core data - fetched managed objects not being autoreleased on device (fine on simulator)

    I'm currently struggling with a core data issue with my app that defies (my) logic. I'm sure I'm doing something wrong but can't see what. I am doing a basic executeFetchRequest on my core data entity, but the array of managed objects returned never seems to be released ONLY when I run it on the iPhone, under the simulator it works exactly as expected. This is despite using an NSAutoreleasePool to ensure the memory footprint is minimised. I have also checked with Instruments and there are no leaks, just ever increasing allocations of memory (by '[NSManagedObject(_PFDynamicAccessorsAndPropertySupport) allocWithEntity:]'). In my actual app this eventually leads to a didReceiveMemoryWarning call. I have produced a minimal program that reproduces the problem below. I have tried various things such as faulting all the objects before draining the pool, but with no joy. If I provide an NSError pointer to the fetch no error is returned. There are no background threads running.
    +(natural_t) get_free_memory {
        mach_port_t host_port;
        mach_msg_type_number_t host_size;
        vm_size_t pagesize;
        host_port = mach_host_self();
        host_size = sizeof(vm_statistics_data_t) / sizeof(integer_t);
        host_page_size(host_port, &pagesize);
        vm_statistics_data_t vm_stat;
        if (host_statistics(host_port, HOST_VM_INFO, (host_info_t)&vm_stat, &host_size) != KERN_SUCCESS) {
            NSLog(@"Failed to fetch vm statistics");
            return 0;
        /* Stats in bytes */
        natural_t mem_free = vm_stat.free_count * pagesize;
        return mem_free;
    - (void)viewDidLoad
        [super viewDidLoad];
        // Set up the edit and add buttons.
        self.navigationItem.leftBarButtonItem = self.editButtonItem;
        UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(insertNewObject)];
        self.navigationItem.rightBarButtonItem = addButton;
        [addButton release];
        // Obtain the Managed Object Context
        NSManagedObjectContext *context = [(id)[[UIApplication sharedApplication] delegate] managedObjectContext];
        // Check the free memory before we start
        NSLog(@"INITIAL FREEMEM: %d", [RootViewController get_free_memory]);
        // Loop around a few times
        for(int i=0; i<20; i++) {
            // Create an autorelease pool just for this loop
            NSAutoreleasePool *looppool = [[NSAutoreleasePool alloc] init];
            // Check the free memory each time around the loop
            NSLog(@"FREEMEM: %d", [RootViewController get_free_memory]);
            // Create a minimal request
            NSEntityDescription *entityDescription = [NSEntityDescription                                                 
                                                  entityForName:@"TestEntity" inManagedObjectContext:context];
            // 'request' released after fetch to minimise use of autorelease pool       
            NSFetchRequest *request = [[NSFetchRequest alloc] init];
            [request setEntity:entityDescription];
            // Perform the fetch
            NSArray *array = [context executeFetchRequest:request error:nil];       
            [request release];
            // Drain the pool - should release the fetched managed objects?
            [looppool drain];
        // Check the free menory at the end
        NSLog(@"FINAL FREEMEM: %d", [RootViewController get_free_memory]);
    When I run the above on the simulator I get the following output (which looks reasonable to me):
    2011-06-06 09:50:28.123 renniksoft[937:207] INITIAL FREEMEM: 14782464
    2011-06-06 09:50:28.128 renniksoft[937:207] FREEMEM: 14807040
    2011-06-06 09:50:28.135 renniksoft[937:207] FREEMEM: 14831616
    2011-06-06 09:50:28.139 renniksoft[937:207] FREEMEM: 14852096
    2011-06-06 09:50:28.142 renniksoft[937:207] FREEMEM: 14872576
    2011-06-06 09:50:28.146 renniksoft[937:207] FREEMEM: 14897152
    2011-06-06 09:50:28.149 renniksoft[937:207] FREEMEM: 14917632
    2011-06-06 09:50:28.153 renniksoft[937:207] FREEMEM: 14938112
    2011-06-06 09:50:28.158 renniksoft[937:207] FREEMEM: 14962688
    2011-06-06 09:50:28.161 renniksoft[937:207] FREEMEM: 14983168
    2011-06-06 09:50:28.165 renniksoft[937:207] FREEMEM: 14741504
    2011-06-06 09:50:28.168 renniksoft[937:207] FREEMEM: 14770176
    2011-06-06 09:50:28.174 renniksoft[937:207] FREEMEM: 14790656
    2011-06-06 09:50:28.177 renniksoft[937:207] FREEMEM: 14811136
    2011-06-06 09:50:28.182 renniksoft[937:207] FREEMEM: 14831616
    2011-06-06 09:50:28.186 renniksoft[937:207] FREEMEM: 14589952
    2011-06-06 09:50:28.189 renniksoft[937:207] FREEMEM: 14610432
    2011-06-06 09:50:28.192 renniksoft[937:207] FREEMEM: 14630912
    2011-06-06 09:50:28.194 renniksoft[937:207] FREEMEM: 14651392
    2011-06-06 09:50:28.197 renniksoft[937:207] FREEMEM: 14671872
    2011-06-06 09:50:28.200 renniksoft[937:207] FREEMEM: 14692352
    2011-06-06 09:50:28.203 renniksoft[937:207] FINAL FREEMEM: 14716928
    However, when I run it on an actual iPhone 4 (4.3.3) I get the following result:
    2011-06-06 09:55:54.341 renniksoft[4727:707] INITIAL FREEMEM: 267927552
    2011-06-06 09:55:54.348 renniksoft[4727:707] FREEMEM: 267952128
    2011-06-06 09:55:54.702 renniksoft[4727:707] FREEMEM: 265818112
    2011-06-06 09:55:55.214 renniksoft[4727:707] FREEMEM: 265355264
    2011-06-06 09:55:55.714 renniksoft[4727:707] FREEMEM: 264892416
    2011-06-06 09:55:56.215 renniksoft[4727:707] FREEMEM: 264441856
    2011-06-06 09:55:56.713 renniksoft[4727:707] FREEMEM: 263979008
    2011-06-06 09:55:57.226 renniksoft[4727:707] FREEMEM: 264089600
    2011-06-06 09:55:57.721 renniksoft[4727:707] FREEMEM: 263630848
    2011-06-06 09:55:58.226 renniksoft[4727:707] FREEMEM: 263168000
    2011-06-06 09:55:58.726 renniksoft[4727:707] FREEMEM: 262705152
    2011-06-06 09:55:59.242 renniksoft[4727:707] FREEMEM: 262852608
    2011-06-06 09:55:59.737 renniksoft[4727:707] FREEMEM: 262389760
    2011-06-06 09:56:00.243 renniksoft[4727:707] FREEMEM: 261931008
    2011-06-06 09:56:00.751 renniksoft[4727:707] FREEMEM: 261992448
    2011-06-06 09:56:01.280 renniksoft[4727:707] FREEMEM: 261574656
    2011-06-06 09:56:01.774 renniksoft[4727:707] FREEMEM: 261148672
    2011-06-06 09:56:02.290 renniksoft[4727:707] FREEMEM: 260755456
    2011-06-06 09:56:02.820 renniksoft[4727:707] FREEMEM: 260837376
    2011-06-06 09:56:03.334 renniksoft[4727:707] FREEMEM: 260395008
    2011-06-06 09:56:03.825 renniksoft[4727:707] FREEMEM: 259932160
    2011-06-06 09:56:04.346 renniksoft[4727:707] FINAL FREEMEM: 259555328
    The amount of free memory reduces each time round the loop in proportion to the managed objects I fetch e.g. if I fetch twice as many objects then the free memory reduces twice as quickly - so I'm pretty confident it is the managed objects that are not being released. Note that the entities that are being fetched are very basic, just two attributes, a string and a 16 bit integer. There are 1000 of them being fetched in the examples above. The code I used to generate them is as follows:
    // Create test entities
    for(int i=0; i<1000; i++) {
        id entity = [NSEntityDescription insertNewObjectForEntityForName:@"TestEntity" inManagedObjectContext:context];
        [entity setValue:[NSString stringWithFormat:@"%d",i] forKey:@"name"];
        [entity setValue:[NSNumber numberWithInt:i] forKey:@"value"];
    if (![context save:nil]) {
        NSLog(@"Couldn't save");
    If anyone can explain to me what is going on I'd be very grateful! This issue is the only only one holding up the release of my app. It works beautifully on the simulator!!
    Please let me know if there's any more info I can supply.

    Update: I modified the above code so that the fetch (and looppool etc.) take place when a timer fires. This means that the fetches aren't blocked in viewDidLoad.
    The result of this is that the issue happens exactly as before, but the applicationDidReceiveMemoryWarning is fired as expected:
    2011-06-08 09:54:21.024 renniksoft[5993:707] FREEMEM: 6131712
    2011-06-08 09:54:22.922 renniksoft[5993:707] Received memory warning. Level=2
    2011-06-08 09:54:22.926 renniksoft[5993:707] applicationDidReceiveMemoryWarning
    2011-06-08 09:54:22.929 renniksoft[5993:707] FREEMEM: 5615616
    2011-06-08 09:54:22.932 renniksoft[5993:707] didReceiveMemoryWarning
    2011-06-08 09:54:22.935 renniksoft[5993:707] FREEMEM: 5656576

  • Função para cálculo de impostos( Simulação de Geração de NF).

    Boa noite pessoal !
    Alguém conhece alguma função no SAP que posso utilizar para efetuar cálculo de impostos ???
    Trata-se de um programa customizado (Z) e preciso fazer o cálculo de todos impostos, seria como uma simulação de Geração de NF (J1B1N) .
    Agradeço desde já.
    Wagner Duarte

    Bom dia Wagner,
    Você pode utilizar a FM  J_1B_NF_VALUE_DETERMINATION:
    Exemplo:
    DATA: BEGIN OF wk_header.
               INCLUDE STRUCTURE j_1bnfdoc.
       DATA: END OF wk_header.
       DATA: BEGIN OF wk_header_add.
               INCLUDE STRUCTURE j_1bindoc.
       DATA: END OF wk_header_add.
       DATA: BEGIN OF wk_partner OCCURS 0.
               INCLUDE STRUCTURE j_1bnfnad.
       DATA: END OF wk_partner.
       DATA: BEGIN OF wk_item OCCURS 0.
               INCLUDE STRUCTURE j_1bnflin.
       DATA: END OF wk_item.
       DATA: BEGIN OF wk_item_tax OCCURS 0.
               INCLUDE STRUCTURE j_1bnfstx.
       DATA: END OF wk_item_tax.
       DATA: BEGIN OF wk_item_add OCCURS 0.
               INCLUDE STRUCTURE j_1binlin.
       DATA: END OF wk_item_add.
       DATA: BEGIN OF wk_header_msg OCCURS 0.
               INCLUDE STRUCTURE j_1bnfftx.
       DATA: END OF wk_header_msg.
       DATA: BEGIN OF wk_refer_msg OCCURS 0.
               INCLUDE STRUCTURE j_1bnfref.
       DATA: END OF wk_refer_msg.
       CALL FUNCTION 'J_1B_NF_DOCUMENT_READ'
         EXPORTING
           doc_number         = i_docnum
         IMPORTING
           doc_header         = wk_header
         TABLES
           doc_partner        = wk_partner
           doc_item           = wk_item
           doc_item_tax       = wk_item_tax
           doc_header_msg     = wk_header_msg
           doc_refer_msg      = wk_refer_msg
         EXCEPTIONS
           document_not_found = 1
           docum_lock         = 2
           OTHERS             = 3.
       CALL FUNCTION 'J_1B_NF_VALUE_DETERMINATION'
         EXPORTING
           nf_header   = wk_header
         IMPORTING
           ext_header  = wk_header_add
         TABLES
           nf_item     = wk_item
           nf_item_tax = wk_item_tax.

  • Unable to connect offcard terminal with jcop simulator

    Hi all,
    I have made a JavaCard applet, called DisplayApplet.
    I am using Eclipse with the JCOP tools plugin.
    But now I want to make use of an own Terminal that connects to the applet and communicates to it using APDUs.
    I don't have a smart card reader/card, so I want to use the simulation environment.
    Now I read that I must use the "Remote" value in the JCTerminal constructor to connect to the simulation environment, but it doesn't work (of course I specify the remote value as input parameter).
    I am unable to open a terminal.
    I get the following exception at the term.open() command:
    can't find/open/connect/reset smartcard/reader:
    Failed to open [localhost:8050]: Connection refused: connect
    Can anyone tell me what's wrong and how I can connect from an own made terminal to a JCOP simulation (I want to run the terminal within Eclipse, because I want to add a UI later on top of it) ??
    Here is the code of my own made HostTerminal:
    import com.ibm.jc.*;
    public class HostTerminal {
         public static final String remoteTermName = "Remote";
         public static final String nativeTermName = "pcsc:4";
         public static final String remoteTermPara = null;
         public static final String nativeTermPara = null;
         public static void main(String[] args) {
              String termName = nativeTermName;
              String termPara = nativeTermPara;
              if (args.length > 0) {
                                   if (!args[0].equals("native")) {
                        if (args[0].equals("remote")) {
                             termName = remoteTermName;
                             termPara = remoteTermPara;
                        } else {
                             try {
                                  System.out.println("args[0] > " + args[0]);
                                  System.out.println("args[1] > " + args[1]);
                                  termName = args[0];
                                  termPara = args[1];
                             } catch (Exception e) {
                                  System.out.println("invalid command line options");
                                  System.exit(1);
              // create terminal, i.e. create a connection to a reader
              // and wait for a card insertion
              JCTerminal term = null;
              try {
                   term = JCTerminal.getInstance("Remote", null);
                   term.open();
                   term.waitForCard(5000);
              } catch (Exception e) {
                   System.out.println(
                        "can't find/open/connect/reset smartcard/reader: "
                             + e.getMessage());
                   System.exit(1);
              System.out.println("Connected to reader and card terminal ...");
              // now get the object representing the connection to the card
              JCard card = null;
              try {
                   card = new JCard(term, null, 1000);
              } catch (Exception e) {
                   System.out.println(
                        "can't connect to card in reader: " + e.getMessage());
                   System.exit(1);
              String s;
              // get atr of card and print it
              try {
                   ATR atr = card.getATR();
                   s = JCInfo.atrToString(atr);
                   System.out.println("Connected to card and received ATR: " + s);
              } catch (Exception e) {
                   System.out.println("can't get ATR: " + e.getMessage());
                   System.exit(1);
              // Note here that the DisplayApplet has to have to aid "display". The IDE
              // supports ascii characters in AIDs by using | when editing AIDs.
              // For instance, |display results in 636F756E746572.
              System.out.println("Selecting Display applet ...");
              DisplayApplet displayApplet = null;
              try {
                   byte[] aid = ("phil0Display").getBytes();
                   displayApplet = new DisplayApplet(card, aid);
                   displayApplet.select();
                   s = JCInfo.toHex(aid, 0, aid.length);
                   System.out.println(
                        "Selecting of Display applet with aid " + s + " succeeded");
              } catch (Exception e) {
                   System.out.println("can't select Display: " + e.getMessage());
                   System.exit(1);
              }

    If you run the JavaCard simulator from within Eclipse make sure you disconnect the JCOP shell before trying to connect via JCTerminal() from your Java program. Use the command /close
    If you want to disconnect the JCOP shell automatically modify your "Java Card Application" run-configuration:
    set Shell commands to execute: to /close
    BTW: You were talking about JCOP 3.0, the Eclipse 2.1-plugin or do you use the new pre-release version JCOP 3.1 for Eclipse 3?

  • Running T1SAM simulator over x86 ?

    Hi,
    Is it possible to run T1 SAM simulator over x86 ?
    Although the original requirements are SPARC and Solaris 9/10, I think ( and maybe also wrong...) that a proper Makefile for x86 should work...
    Thanks in advance!

    r0b0t wrote:
    Hi,
    I started with MIPS and I got used on running the code on QtSPIM (well PCspim) to be more precise as I used it on windows.
    Now, while I want to learn x86 and especially x64 assembly I'm in no way on finding any simulator to run the code.
    I know, I can run it directly on the machine, but I can't nicelly check the registers or break every operation as I could with spim and MIPS assembly.
    I'm pretty sure there are folk already solved this problem so, could you share how?
    thanks.
    Great book if you're starting to learn x86.
    http://www.amazon.com/Professional-Asse … y+language

  • FlashBuilder 4.7 will not run in Debug mode with BlackBerry 10 simulator

    We have developed an app that has been released both for Apple and Android working well.
    When trying to do the same for BlackBerry it was rejected because it did not start at all.
    The App that runs fine on the BlackBerry simulator in the "run configurations mode".
    However when I try to run it in Debug mode it will not start at all. Just flashes and simulator goes back to main menu.
    The debugger will after a while time out since it cannot connect to the app running on the simulator.
    BlackBerry 10 Simulator runs under vmWare Fusion.
    Anyone seen this before?

    Hi, Silence04. Welcome to the Discussions.
    You had serious disk directory corruption. That can also cause corruption in OS files: while Disk Utility or DiskWarrior may fix the directory, if the directory corruption resulted in OS files being damaged — as it appears to be in this case — then you can't avoid an Archive and Install. For important tips on this, see my "General advice on performing an Archive and Install" FAQ. Perform the steps therein in the specified order.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Working in Simulator but not in device

    Hello .....,
    Atlast from the help of Mr. Ken Walker, i was able to execute PIM applications on Tungsten C Simulator using WSDD 5.7.1. I also tried using Tungsten T3 Simulator and worked in it as well. But there is a problem when i execute the same application on the real device (Tungsten T3). It gives me
    "Fatal Error" and then restarts (no additional message). I don't know where could be the real problem.
    I will just list out the files that i have HotSinked to the device for your verification
    1. ams.prc
    2. fileconnect.prc
    3. J9JavaVMMidp20.prc
    4. j9keystore.prc
    5. J9Launcher.prc
    6. j9pref.prc
    7. j9secpol.prc
    8. PalmMidp20_22.prc
    9. pimop.prc
    10. PIMPrefs.prc
    11. pref.prc
    12. <myPIM.prc> This is my PIM application that just stores 1 ToDo
    Please correct me if I have left any prc file(s) that has to be HotSinked to the device (and for the application to work). Is there is any order that we have to follow to HotSink these prc's i.e which should be HotSinked 1st, 2nd, ....Please let me know about it.
    Moreover, after installing these prc files, I tried to execute MIDlet HQ (just to check) and it displayed the same "Fatal Error" with no additional message.
    Please help me out of this
    Regards,
    Hemant

    Hello Sir,
    I received your replies and I'm extremely sorry for the inconvieniences you have faced with the mail server. From now on I will use this forum for any of my queries. I sincerely apologies you and this is what i received from your mail
    I'm assuming you've installed WSDD. From that install directory:
    wsdd5.0\ive-2.2\runtimes\palmos50\arm\midp20\prc\
    You need to hotsync:
    J9JavaVMMidp20.prc
    pimop.prc
    You can't use the 'ia32' versions of the PRCs. The large PRC listed above will decompress into the correct separate PRC's on the device. This is done because we had to get
    around the 64k hotsync limitations and also to install the ARM natives.
    OK, as you have suggested I navigated to the following directory
    \wsdd5.0\ive-2.2\runtimes\palmos50\arm\midp20\prc
    There I have found some more PRC files in addition to what you have suggested. OK, Do I need to HotSink only the following PRC files to my device or do i have to HotSink some more PRC files along with the following. If so, please let me know which one are they and from where to get them from WSDD 5.7.1 (either from ARM or IA32)
    1. J9JavaVMMidp20.prc (under ARM)
    2. pimop.prc (Under ARM)
    Regards,
    -Hemant

  • Trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    trying to login to software program known as hamspher (vip simulated ham radio,  it downloaded the program but it will not allow me to login with call sign and pin.  it has to be opened with what they call a jar file.  how do i do this?

    This is compatible with Mac? Especially Snow Leopard (if that is what you'e running)?
    Have you considered posting your question in their forums?
    Here is some information re. the jar file:
    http://ostermiller.org/opening_jar_files.html

  • I have installed Flash player in Firefox, now how do I use it. Need to use for a simulation class assignment. Thank you

    How to use in Firefox, install is ok.

    Hi,
    Adobe Flash Player is a plugin that allows browsers such as Firefox to display Flash media on web pages.
    Open your simulation in web browser, if there is any flash content , it will display in that.
    I hope, I was able to answer your question if not then please provide some more information on this.
    Regards,
    Devendra

  • Copying simulation from one CP file into another...issues

    Hi,
    I am trying to copy slides from one simualtion into another, but when I do, all the objects et are covered with a background. For example, I copy some slides that are instructing to click on the Start menu, then selecting the program from the start menu that comes up, the start button and menu are covered with another image, like all objects have been placed behind the slide background....
    .....seems really strange and a bit frustrating to say the least.
    Any help appreciated..
    Cheers
    Rossco

    Select one of these slides in the filmstrip and check the Properties > General accordion. 
    For simulation slides, make sure the boxes for Master Slide Objects On Top and Use Master Slide Backround are unchecked.

  • I have a problem with simulation in Matlab 6.5 and LabVIEW for PID controllers

    I have a problem with simulation in Matlab 6.5 and LabVIEW. I have some methods for granting PID controllers in MATLAB to go but not LabVIEW. International Teams degree to transfer two but when I go past the fourth degree no longer work. We changed the formula for calculating the parameters for grade four and gave me some good values for Matlab award but when I put on LabVIEW have not settled. formulas are available in PDF and are. Please help me and me someone if possible. Thanks
    lim.4 generation parameters in MATLAB program and comparison methods are for second-degree transfer function.
    Solved!
    Go to Solution.
    Attachments:
    Pt net.zip ‏2183 KB

    This is the VIs what i try to make,but is not work. This pdf. document was used to create last VIs PID. thenk you for your colaboration.
    Attachments:
    PID create by me.vi ‏312 KB
    tut_3782.pdf ‏75 KB

  • I am trying to simulate the robot voice synthesizer sound that is produced by that electronic voice simulator after someone as had their voice box removed.   The vocal transformer insert in Logic Pro doesn't quite do it.   Suggestions?

    I am trying to simulate the robot voice synthesizer sound that is produced by that electronic voice simulator after someone as had their voice box removed.   The vocal transformer insert in Logic Pro doesn't quite do it.   Any Suggestions?

    Try one of the Audio Voice Effects like Alien / Cosmic / Robot… etc. to start with…
    Adjust the Settings in the Inspector to your liking…

Maybe you are looking for

  • How to set Proxy for IE 8.0 on doing Load Testing with OATS 12.1.0.2

    I have tried adding proxy server by adding the address to "Localhost" and Port as 8080. but nothing is working out, for recording an EBS instance its working fine ,no need to setup anything in the OATS tool, eg, Proxy settings. But when it comes to B

  • Runtime Error in SE16 after adding fields in VBAK (ABAP-SD)

    Hi All, I have a requirement where I need to add a field in the header item of VA03,  So I have add new field or APPEND structure in VBAK. I appended structure ZZLAND1 having component field LAND1 in VBAK. In SE11, structure ZZLAND1 is activated and

  • Report with drill-down needs to start display at lowest level

    Hi, I'm not sure if this is in the correct forum but I'm hoping that a moderator will move it to the correct area if there is a better place for this. I have a report working that shows Master Project information, drills to Projects information and t

  • I need a how to on Security in WLC for the users

    OK, I need to actually make my unsecured wireless network secure. Where do I even begin? What I would love to happen is that it is invisible to the user but with about 1000 laptops we don't have time to do mac addresses etc. I have heard that what is

  • Placing radiobuttons side by side in report

    Hi, How to place two  radio buttons side by side in a report program. Can anyone help me on this. Thanks, Rose.