Jump to content

New to the game.


LuckyOne
 Share

Recommended Posts

Hi all,

I've run through the tutorials that came with the program and have a pretty good background in Matlab. I have a couple starter questions to get me started on my project of automating XFLR5.

I ran the AU3Record 3.1 just to try it out on what I'd like the program to do and I noticed that it didn't pause when I paused. I searched for a "pause" function to let the XFLR5 analyze the current airfoil and then continue on but couldn't find one. Each airfoil takes about 30 seconds to analyze so a nice pause or break is needed. How would I go about doing that?

Another thing I noticed was no for loop function. Basically I want to incrementally run XFLR5 by loading an airfoil .dat file from a folder, analyze it, save it to another folder, then load the next down airfoil and do the same thing but with a different save name and so on...

A friend suggested figuring out how many pixels down the next airfoil would be and increment that way but being new to Autoit I don't know how to implement.

I'll be working on it doing a sort of trial by fire approach and I'm sure other things will come up as well that I'll add to this post. If anyone is interested, XFLR5 can be downloaded here http://sourceforge.net/project/showfiles.php?group_id=192495 to get a better picture of what I'm trying to do. If requested, I can send a test batch of airfoils .dat files as well.

Thanks for having the community and look forward to learning the program,

David

Link to comment
Share on other sites

Hi LuckyOne,

1st Welcome to the AutoIt Forums! :idiot:

Some of the following tips may not apply to you, but it may make your life a bit easier here on the forum in the future.

CODE
  • Did you know that we have an awesome search feature?

    You can find many answers to your current questions, just by typing in the right search patterns.

  • A suggestion is to use the Advanced Search mode:

  • Type your specific search term in quotes.
  • Click the forum you want to search in (the one most likely to have your information would generally be the Example Script forum and or the General Help and Support Forum).
  • Click on "Search titles only" radio button.
  • Click perform search.
The above will help you narrow down your searches and prevent you from unneccesarily posting a new thread.

[*]Also, you should try to read the Sticky posts that are at the top of each of the AutoIt Forums you enter such as:

[*]Keep in mind, the help file will be your best friend, however you may find some of the tutorials written by some of our elite forum members helpful.

[*]Forum Etiquette:

  • Making a new thread:

    • Use the Search feature first to see if your question has already been answered.
    • Look in the help file as well before even thinking of posting (When what you want could be obtained by simply reading the help file, you don't generally get a good response from your AutoIt community).
    • Titles are very important here. 1 word titles or titles like "help me", "write something for me", "I'm a noob" etc... aren't tolerated.
    • Make sure you are posting in the correct forum:

      • General Help and Support:

        • This forum is for AutoIt related support questions only. If you have a question related to another language, or nothing at all to do with AutoIt then you need to post in the chat forum, or in that languages perspective forum.
      • Example Script:

        • This forum is for AutoIt scripts/executables only.
        • Source code is preferred but not necessary, you do have the right to just post the binary of your project if you wish.
        • Please don't post questions in this forum unless it's directly related to a thread already existing.
    • Use common sense when creating a new thread.

      Ask yourself if the title is descriptive enough to even interest someone (preferably those that know what they are talking about) to even look at your thread, let alone reply in it.

    • Think about how it would show in the search feature if someone were to look for something just like you are looking for (think of the keywords you used yourself and obviously didn't find anything (because we know you used the search feature :) ) and use those types of keywords in your title as well).
  • Thread content:

    • Be descriptive with your query. (Make sure we actually know what you want to do).
    • Show you've made an effort in coding what you want (provide the reproducer code (generally no more than 50 lines as people lose interest in debugging someones script for free)).
    • Don't talk in ebonics. A lot of the forum members are adults, and a lot of them know how to help you, but talk like a child, you'll be treated as such.
    • Don't ask for help making keyloggers, spam (even if it's to do as a prank), or anything that can be thought of as malicious. You'll more than likely have the thread locked by a moderator, and take a bashing from your fellow AutoIt community.
    • When posting code, use code boxes. This can be accomplished by using [code ]<content here>[/code ] (No spaces between the brackets []).

      Using code boxes will keep the indentation and make it easier to read for others to help you.

  • Bumping your threads:

    • Use common courtesy here.

      Keep in mind every time you bump your thread to the top of the forum, you knock the other threads down a notch.

      Everyone posting for help has just as much right for their threads to get read as you do.

      Because of that, do not bump your post more than once in a 24 hour period.

      A Bump is simply posting in your thread with nothing that pertains to your query with the sole purpose of moving it up.

      Deleting previous bumps, and posting new ones is not tolerated, and the moderators can find those deletions, so do yourself a favor and don't cross that line >_< .

  • Rude or obnoxious content:

    This falls pretty much under the common sense thing. If you use it (common sense) before posting, you won't have issues.

    • Don't use foul language, remember, a lot of the community is at work when they read these threads.
    • Don't provoke or instigate an argument with someone.
  • Double Posting:

    • It's understood that sometimes there's a lag in the system, and sometimes people don't see their post go up right aways so they post again.

      If this happens to you, simply notify a moderator with the report feature in the post, and politely ask them to delete it.

    • If you're just creating another topic because your original topic is not being answered the way you want or at all, this is not tolerated. You could lose your posting privileges all together over it.
  • Non-English languages

    • If English is not your primary language, please make an attempt to interpret (yourself or online) and post that interpretation.

      We have wonderful users from around the world, so after you've done your post in English, back it up with your question also in your native tongue (You may find your answer much quicker using both).

That's it for now, I hope you have a wonderful learning experience, and hope to see you contribute to the community as your knowledge grows.
Link to comment
Share on other sites

  • Moderators

Another thing I noticed was no for loop function. Basically I want to incrementally run XFLR5 by loading an airfoil .dat file from a folder, analyze it, save it to another folder, then load the next down airfoil and do the same thing but with a different save name and so on...

:)http://www.autoitscript.com/autoit3/docs/i.../lang_loops.htm >_

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Hi all,

I've run through the tutorials that came with the program and have a pretty good background in Matlab. I have a couple starter questions to get me started on my project of automating XFLR5.

I ran the AU3Record 3.1 just to try it out on what I'd like the program to do and I noticed that it didn't pause when I paused. I searched for a "pause" function to let the XFLR5 analyze the current airfoil and then continue on but couldn't find one. Each airfoil takes about 30 seconds to analyze so a nice pause or break is needed. How would I go about doing that?

Another thing I noticed was no for loop function. Basically I want to incrementally run XFLR5 by loading an airfoil .dat file from a folder, analyze it, save it to another folder, then load the next down airfoil and do the same thing but with a different save name and so on...

A friend suggested figuring out how many pixels down the next airfoil would be and increment that way but being new to Autoit I don't know how to implement.

I'll be working on it doing a sort of trial by fire approach and I'm sure other things will come up as well that I'll add to this post. If anyone is interested, XFLR5 can be downloaded here http://sourceforge.net/project/showfiles.php?group_id=192495 to get a better picture of what I'm trying to do. If requested, I can send a test batch of airfoils .dat files as well.

Thanks for having the community and look forward to learning the program,

David

all these details ^^

i guess u want a number of files to be opened processed by a programm then renamed / moved (that way you see they are finished)

working with autoit seems a waste to me in that case a batch would be much faster to code but well ^^ here we go :)

so i suggest u read the following in the help index brought with autoit:

im not sure how to list dir's in autoit so i would open a text file write "dir /b/x >> test.txt" in it and save it in the dir u want to work as a batch file,it will list all files and put in a file in the dir u are if u only want *.xxx files use "dir /b/x *.xxx >> test.txt"

therefor u need FileReadLine,RunWait,FileMove

variables can be declared dont have to be better declare em upfront check help file "variables"

Loops can be done with "do .... until" "goto"(not relly a good way!) "for next" "while" see in hlp file

this way u dont need pause(Sleep(x ms) btw)

i think this is all u need >_<

more problems = comeback^^

dim $i =1

do
RunWait('Myprogramm.exe ' & Filereadline('c:\deinverzeichniss\test.txt',$i),'c:\deinverzeichniss\',@SW_HIDE)
FileMove('c:\deinverzeichniss\' & Filereadline("test.txt",$i), 'c:\deinverzeichniss\processed\' & Filereadline("test.txt",$i),8 )
$i += 1
until @error = -1

not sure if he eats parameters that way tho XD

Edited by Wurschtbrot
Link to comment
Share on other sites

Thanks for the help so far, I've got a good handle on the language now.

I've run into a snag though. I attached two pictures that illustrate it. When running the analysis, the close window control becomes disabled until the analysis is complete. I would like to use something like a WinWaitActive but for a control like a WinWaitControlActive. It would pause the script until that close window control becomes active and then selects it and moves on from there. I searched the documentation for Controls and found nothing exactly what I needed. So I opened the Autoit Info tool (which is awesome btw) to see if there's a change in the control when the analysis is running and when it is not. I found that the style of the control changes. So at the moment I'm trying to figure out how to make the script check that control's style every second or so to see whether the style matches the active style and once it does, then continues on. Hopefully the pictures will clarify it if this blurb didn't.

thanks,

dbb

post-40386-1222016585_thumb.jpg

Edited by LuckyOne
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...