Choosing the right technologies for a FEM simulation visualization

Hello,
I have been a Flash dev for over a year now, developing games for kids in pure AS3. I have recently started thinking about my Bachelor's Degree project and I decided to use what I know and develop as a developer - and I chose Flash to be my ground technology for this.
The subject of my project is to visualize a finite-element method simulation (FSI - which is simulation for both fluids and solid objects) of 2D (3D for Master's) flow through the aortic valve in heart. What I have to do, basically, is use some FEM application (I chose an archaic Adina) to generate data about the mesh (FEM nodes and elements) and then use it to visualize the whole thing. I was thinking about parsing the output *.dat files and put it to XMLs or just putting it manually in a database so I wouldn't have to deal with file access. Either way is fine, I guess.
Now, my question is - what do I use to optimize this?
Remember, I'm totally new to Flex, I've made only a couple AIR apps.
One of the questions is - use FlashDevelop, which I have been using ever since I started programming in AS3, or switch to FlashBuilder? I definately want to use Flex to create the interface, Flash of course to visualize the whole thing and the problem is I can't get a grip on the overall image. Should I use AIR to build desktop app, or keep it web app, what's the best option for me as a Flex beginner, which will have better performance (as the problem itself is quite complicated) and generally what do you usually use for things like this.
I was trying not to sound too desperate, but I don't really have any gurus around to ask questions like that - I hope you can help.
Thanks for all the input in advance!

We've just acquired a new manufacturing facility to which we are moving operations in the next month. This facility has 3 buildings:Main Office
Telco room for Time Warner coax, fiber box to Shop B telcoShop A Warehouse
Ethernet run back to main office telco (less than 300 feet)Shop B Office
Fiber box to main office telco, feeds shop B warehouse with ethernet cablingI'm looking at Zyxel managed gigabit switches for the network backbone here (mainly the GS-1900, GS-1910, or GS-1920). I'd have a 48-port Zyxel switch in the main office telco room and a 48-port in the Shop B office telco room. But I need SFPs to connect to those fiber boxes (pre-existing fiber not run by us). I know the fiber run from the main office telco to the Shop B office telco is somewhere between 500 and 100 yards, and I believe it is single-mode fiber (but will have...
This topic first appeared in the Spiceworks Community

Similar Messages

  • Help with choosing the right specifications for a Macbook Pro Retina?

    Opinions needed....
    So I'm new to Macs, but I know what I want to achieve and I feel this is the right route to choose. I'm looking at delving into the world of music production, using Logic pro 9 and garageband, but I also enjoy watching High definition Movies and televison so I know that the Retina display is definatley the right choice for me. However, I'm unsure on the amount of RAM & Which processer I should choose. I have read a fair bit on forums and online about the new retina macbooks being 'locked' from upgrading, so the 16GB of RAM is an immediate choice for logetivity.
    The choice of processor is when I start to become clouded in my choice. As forementioned, I'm looking at running logic pro, as well as high def movies. There is also a possibilty at looking into photo and video editing, Whether that be in final cut pro or photoshop... But I want to leave my options open.
    I think the choice of 16GB of RAM, 2.6Ghz processor, with a 256GB hard drive ( as i have 1.5TB external space) would be a good choice. Once I've added on applecare that comes out at around £2350, Which is a significant investment, but one that I think will help me immensely for the future. I am interested in other peoples opinions on my possible choice because, as I said before, I'm new to the world of Macs and making the right choice is essential. As a side note, the choice of upgrades also ensures a reasonable resale value, which is a bonus.
    Regards

    Both power adapter I have are different (at the magnet end) from the one in link.
    Earlier adapters have T shaped connectors, which Apple later changed to the L shape, presumably to make them more abuse-proof. Either one is fine and the one you are using will not damage your Mac.
    Retina MBPs and new MBAs use a completely different MagSafe 2 connector which will not fit (without an adapter).

  • Is JMF the right technology for this...

    Hi All!
    I have a requirement to build a client app that is subscribed to a JMS topic. Based on the published message, the client has to select and play the appropriate video clip from a total of n video clips. Here are my questions:
    1) Is JMF the right technology to play video clips (.AVI format)? What are the alternatives?
    2) Can I have these play in full-screen mode?
    3) During idle time, can I display a default image (.JPEG)?
    4) Does Swing or AWT have to also be used?
    5) How can I cache the video clips (16MB * 6 clips) in memory to make it more performant? Is this even neccessary?
    6) I need this application to run 24*7 with minimum failure rate. Is this a realistic expectation for JMF?
    thanx much!
    - Ravi

    1. yes. depends on what you want to do exactly.
    2. why not?
    3. what is "idle time"? you mean the time where your video pauses? yes, you can..
    4. doesn't matter. The visual component which you'll get from jmf (to show video) is of type java.awt.Component
    5. this is not neccessary. You would reach nothing with caching video in memory. Actually, you didn't say if you are talking about sender, server or recipient side..
    6. no. I generally don't trust Applets very much. I would use Macromedia Flash with FlashCom server then, although it has less features and parameters, but it seems to be more stable.
    Best regards from Germany,
    r.v.

  • Is JSP the right technology for this project?

    I'm heavy into core java, but haven't used JSP before. The project manager suggested JSP for this project, but since I'm writing the spec and the code, I need to determine if it's suitable for the task before committing to it.
    Overly-simplified summary:
    web-based application
    simple form interface, fill in the blanks
    user inputs a filename, and a piece of data or two to find within the file
    application finds the (binary) file on the server, parses it into a known data structure, and finds the data element that contains the specified information.
    application formats the data element and displays it in a web page.
    user has the option to save the data in text format or as a binary file on the local machine
    That's pretty much it. There are a few things that I'm concerned about, and am not sure whether JSPs are capable of handling:
    1. searching the local hard drive (in known directories) for a specific file and opening it
    2. creating, for instance, a MappedByteBuffer of a portion of the file and accessing data within it
    3. saving data in text or binary format on the user's hard drive
    If the JSP can run core java style code on the server, that answers 1 and 2 easily. 3 seems like it should be possible, but like I said, I've never used JSP.
    Of course I'll look up the specifics myself, but perhaps someone who has been using this technology for a while can answer my simple question:
    Is JSP a suitable tool for this job?

    So this project looks like one that could be handled not no roughly using a combination of Servlets and JSP.
    web-based application
    simple form interface, fill in the blanksUse JSP for the displays. Forms, and such...
    user inputs a filename, and a piece of data or two to
    find within the file
    application finds the (binary) file on the server,The file is on the server right? Good. Then use a Servlet to find the file. Better, actually, to use a Servlet to call some other PlainOldJavaObject that finds the file for you. That way you can test and code outside of the web environment then just integrate into Servlets/JSPs when needed...
    parses it into a known data structure, and finds the
    data element that contains the specified
    information.Again, use Servlet, or a POJO object the Servlet calls to do this stuff.
    application formats the data element and displays it
    in a web page.Good thing for JSP to do. Just let the Servlet get the results back from the POJO doing the work, then store them such that the JSP can read results and format an HTML page around them.
    user has the option to save the data in text format
    or as a binary file on the local machineOn the client's local machine? That is doable, I think. Again, use a Servlet to pass what and how to save to a POJO that that does the work. Then the servlet streams the data to the client (using a content type that will ensure the download rather than display...)
    That's pretty much it. There are a few things that
    I'm concerned about, and am not sure whether JSPs are
    capable of handling:
    1. searching the local hard drive (in known
    directories) for a specific file and opening itLocal meaning Server? Yes, best for Servlet/Data Access Object rather than a JSP though. Local as in Client machine: No.
    2. creating, for instance, a MappedByteBuffer of a
    portion of the file and accessing data within itServlets have full access to the normal Java API, but they run on the Server, so again, as long as the file is on the server... no problem.
    3. saving data in text or binary format on the user's
    hard driveYeah, easy. Just a quick download servlet. I believe there are a couple examples here in the forums. Other sites may have better ones...
    If the JSP can run core java style code on the
    server, that answers 1 and 2 easily.It can, but a little repetition here... this is best to do in Servlets rather than JSP. JSPs should be kept to display only.
    3 seems like it
    should be possible, but like I said, I've never used
    JSP.
    Of course I'll look up the specifics myself, but
    perhaps someone who has been using this technology
    for a while can answer my simple question:
    Is JSP a suitable tool for this job?

  • Is JavaCard the right technology for me?

    I am creating a complete custom contact based smart card application including the designing reader hardware, supplying the smartcards and programming the application. Essentially, I just need a standard stored value application, but there is a twist...the reader isn't big enough to fit a full ISO 7816 smart card.
    A UICC format smart card will fit without issue, but I can't find a manufacturer who provides a UICC card except with the associated baggage of a SIM card.
    Would a Java Card be a practical solution for this problem? I just need a card capable enough to encode a stored value application on it. Does anyone know approximately how much would I have to pay for a UICC Java Card in quantity 10,000? Is there any problem using them outside of a GSM network?
    Is there a better solution or technology I should be considering?
    I apologize if this isn't a well formed question. I've only been researching smart card technology for about 24 hours so I am not yet familiar with the details of how the OS and feature sets actually work.
    Any advice is appreciated.
    Chris

    Hi Chris,
    From my past experience, you should be able to get cards (either Java Card or other) from a vendor in the form factor you require. I am on a project that is using a Java Card applet on two different form factors. One that is the SIM form factor and one that is a standard card body. The catch is we have a supplier in the middle that does the milling and embedding of chips for a Java Card manufacturer and we are buying quite a lot of cards.
    If you can contact a card manufacturer in your area (not necessarily a Java Card manufacturer), they may be able to help out and give you prices (I don't deal with cost, just code). You may be able to find someone that is willing to embed a filesystem card in a UICC body. After all, the form factor is just the card body that the chip is embeded in.
    Here are some links for production houses in different areas.
    [http://www.liberalismedia.com|http://www.liberalismedia.com]
    [http://www.muhlbauer.com|http://www.muhlbauer.com/muehlbauer/docs/index.asp?id=16827&domid=1016&sp=E&aktion=ab&m1=11932&m2=16805&m3=18643&m4=16827]
    [http://placard.com.au|http://placard.com.au/home/index.htm]
    Cheers,
    Shane
    Edited by: safarmer on 6/08/2009 15:17

  • How do I choose the right HD for my macbook pro 13"?

    It has a 250gb SATA 5400rpm drive already.  I want something WAAAYY bigger.  I just want to make sure it is the right size and can copy over my old hd.

    Use Carbon Copy Cloner to clone your present OS X boot partition (no Bootcamp or Filevault) to a blank external drive, you can hold the option key down and boot from this clone.
    Make the drive switch
    http://eshop.macsales.com/installvideos/
    Boot from the clone and use Disk Utility to Erase the drive with the Zero or (on 10.7) the next to last option on the right to map off any bad sectors on the drive. (takes some time but worth it)
    Then use CCC to reverse clone and reboot normally.

  • Choosing the right version for low-cost server

    After a recent bump on my Internet speed, my ISP changed and my old ISP is providing only domain and email hosting (with no change in price). Thus I am entertaining building a simple server to handle these chores in-house. This is mainly for home use, with some small in-home business where we'd want to have web page and email, but limited streaming, etc. As I am trying to do this 'on the cheap' I'm looking at all options from installing up to 10.5.x on my old G4-upgraded B&W to buying a Mac Mini Server with 10.6. I would like to have the ability to spam filter all email coming into the domain before it gets to the users (family). Thoughts on the most economical solution? How far up the version list must I go to get better reliability? Initially we'll only need 6 users for now.
    Thanks in advance

    digitalblade wrote:Also what Graphical Enviroment will wou recomend me for 1GB Ram machine. Ofc it runs well on LXDE and I run it ot Gnome 3. That is probably the heviest that I could use and not wait for things to happen too long. But when I try XFCE on Virtual machines it does not seems that lighter then the Gnome 3. The only thing that I require is that I need Snapping windows manigment. So I can have 2 windows snaped left and right titled together on the same screen. If you tell me I can configure LXDE to do that I could probably go for it. But since Gnome 3 supports it on the fly I don't mind the excessive use of Ram. This machine is Work/Office /code related.
    I would recommend using pure openbox (ie just the window manager); it has pre-set keybindings for snapping (openbox calls it "aerosnap" in the rc.xml config file) & is significantly lighter than LXDE. If you require something even faster, try one of the tiling window managers such as DWM or i3. Tilers are great once you get used to them

  • Choosing the right language for movies downloadable on the iTunes Store

    Hello,
    I just wanted to point out, that last night, I almost bought a movie in the non-original version through my iPhone/iPad and Apple TV, and this would have been a first (mistake). I have now noticed at work on iTunes that it does say what language the movie is in - I've also noticed some are multilingual, and some are just synchronized, and the language of the synopsis is not necessarily in the language of the actual movie, although I couldn't find my example from last night (?).
    My suggestion would be to either introduce a preferred language option, or to clearly distinguish the languages in which a movie is available, to make sure appointments are avoided!
    Thank you!
    bisi

    Suggestions to Apple will be best submitted through the iTunes feedback page. Your comments will be most likely to get to the proper people within Apple that way.
    BTW, this forum is for questions about iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. Normally you will get the quickest and most applicable responses if you ask your questions in the general iTunes forums.
    Regards.

  • Help me choose the right black for a background (white text on black BG)!

    Hi all!
    I am polishing an InDesign document for a magazine. The cover will contain a big black surface with white texts on top (alongside a white surface with black texts/graphics on top and there is also a color bar on top of the black surface.)
    I was warned that standard black will not work for the black background and I was advised to produce a 'cyan black' or a '4 colour black' instead.
    The cover of the magazine will most likely be like a book cover: fairly thick white cardboard/paper with a coated job.
    What exact color choice would you recommend knowing that the text color will be 'paper white'.
    I now have this Pantone Black C (from the Pantone solid coated library): would it be good for this job? And what about the other black text and graphic elements on the white surface? Should they be from the same black?
    I was hoping for the most straight forward and saff answere to this question as soon as  possible.
    THANKS IN ADVANCE!
    Best.
    Nic

    I agree with Bob.
    Generally, I do ask the printer. But usually I set up a rich black with 50% cyan and 100% black.
    Adding more than Cyan to the Black can cause misregisteration issues, usually I stick to a 2 colour build for the Rich Black when knocking out White Text.
    If your printer suggests differently then use what they have asked.
    A few general rules of thumb:
    Don't use thin serif fonts below 10pt - as the serifs have a chance of filling in.
    Use a slightly bolder version of the font if one is available.
    Increase the kerning slightly.
    Point size and and typeface is key to setting reversed out type. A font with thick hairlines will not break up as easily as one with thin hairlines. Italics tend to be problematic as in they can break up more easily than roman faces. Increasing the kerning here is vital as it prevents letters from joining up unintentionally.
    When talking with the printers - let them know what type size and what font you're planning to use and if it will cause any issues with the print quality.

  • Choosing the right format for export

    Hi, I've got quite a detailed technical question here, regarding video.
    I use a Canon Powershot S95 to make videos. I am quite happy with the video quality and prefer using this camera for video rather than using my micro 4/3 camera.
    During a trip i will shoot snippets of video using the S95 which i will then edit into a single movie using iMovie '11 on a Mac. The result is quite nice. So far so good.
    The S95 features 720p HD 24fps movie recording (1280x720 is what the file info tells me)
    When I am done with my video project iMovie gives me the option of saving in various formats, different quality levels depending on where I intend to watch it. I want to save it in the best quality possible, to 'future-proof' it and to watch it on my 27" mac screen.
    iMovie offers me the choice of saving in
    mobile
    medium
    large
    HD 720p
    HD 1080p
    I just put together a 5 min movie.
    Having saved it using the best quality, HD1080p, the result is a file which is a whopping 800MB for a 5 min film. I say whopping because i have full movies downloaded that last almost 2 hrs and take up only 1.5GB, and they look fine, if not better on the screen.
    Given that the source files are 1270x720, is there any point in saving in HD 1080p? or am i just creating an unnecessarily large file with a resolution that is higher than the source material and hence, adds no improved video quality?
    any thoughts would be much appreciated.
    Thanks!

    mtl1969b wrote:
    … Given that the source files are 1270x720, is there any point in saving in HD 1080p? or am i just creating an unnecessarily large file with a resolution that is higher than the source material and hence, adds no improved video quality?…
    exactly.
    It can not get any better than the original.
    Making it 'bigger' doesn't add any value.
    you're not only bloating files-size, but export times dramatically increase either.
    btw: iM offers much more options. 'Export using Quicktime' offers you any option you have on a Mac. E.g. you can 'adjust' the max. bit-rate of an export, reducing file-size (and probably quality …)
    concenring file size: you can add the free encoder x264 to Quciktime, which offers 'better' quality on small file-sizes. But that is no beginner's task…
    Last word:
    file size should never be an issue in video-making.
    Videos are huge. Full stop

  • Choosing the right Macbook for me?

    Ok, so I'm thinking about buying a Macbook in the next couple of months. I'm a high school student, and I'm going to primarily use it for schoolwork, music, taking photos, and watching movies. I have a lot of music and quite a few movies, plus a good number of pictures. I'm trying to decide whether to get the cheapest one--($1,099) or the second-cheapest one ($1,299.) I'd obviously prefer to get the cheaper one, but do you think that I should invest in the more expensive one? The differences are:
    The cheap one has a 2.0 GHz Intel Core 2 Duo, the more expensive has a 2.2 GHz Intel Core 2 Duo.
    The cheap one has a 80 GB hard drive, the more expensive has a 120 GB hard drive.
    The cheap one has a Combo Drive, the more expensive a Super Drive.
    Honestly, I'm not exactly sure what some of those statistics mean. But advice would definitely be appreciated.
    Thanks so much!

    Everything else aside go with the one with the superdrive. I have seen many posts on here a few months after someone bought the Macbook with a Combo drive and they were trying to change it for a superdrive. They never thought they would want to burn a dvd but they realized the limitations of only burning CDs. It is not cheap to install a superdrive after the fact.

  • Is ODI the right technology for me to use?

    Hi,
    I need to set up replication between three 10g R2 databases.
    There will be one main database where the data will flow into two small databases. A little bit of information will flow back from these smaller databases into the main one.
    I have been asked to evaluate ODI as an option. Unfortunately I cannot use Golden Gate due to the cost.
    I've had a play with ODI and it looks like it's all done on a GUI where I would much prefer to be using command line scripts for setup and monitoring, please let me know if I'm mistaken here and there are command line options.
    It also looks like ODI is more geared to integrating data from many different sources but I'm just going from Oracle to Oracle so don't know if it's a bit overkill.
    I'm thinking of just looking at CDC which I can set up with scripts and looks to be the basis behind ODI anyway (when it comes to taking data from Oracle) - again, if I'm wrong please correct me. I may even go down the streams route that I have used before.....
    Any thoughts / advice on this would be appreciated,
    Thanks!,
    Tom.

    "lossy" means: you lose pic quality... stutter, artifacts, strange colors...
    you don't need to spend 500$, the next garagesale probably offers an old one for 75$ ...
    how they do it? ask them, not me, me no kid, me no blogger ...
    to get a little ... "old man philosophical":
    the claim is: cheap/free, fast, easy ...
    the truth is: if you have no skills & talent, you have to pay others to help you..
    iM helps you - within its limits; using it outside these specs, makes it neccessairy to understand underlying techniqués and methods, to find workarounds .. if you don't want to spend time & sweat ... go back to field "start"..
    iM is made for miniDV camcorders, if you prefer to use other devices, use the software included with such devices; if the included software isn't Mac-compliant, get another computer... - that easy.-
    I've seen youtube-uploads from mobile phones.. ok.-
    not my cup of tea.
    coffee.
    cappo ...-

  • Choosing the Right Hardrive for A1150

    Hello Mac World,
    Need to replace the internal hard drive on my daughters Macbook Pro 15' A1150. When it comes to SATA 7200 RPM drives wil any drive work in my computer as long as it's 2.5"?
    Thanks in advance.
    JK

    Pretty much - 2.5" x 9.5mm. Since your daughter's model is a 'vintage' model produced in 2006, I wouldn't worry about the SATA speed, as she's only going to achieve 1.5Gbps negotiated speeds.
    A good place to go shopping is OWC -> http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/. If the drive in her machine is the original, it's probably around 120GB? You can get 500, 750 or even 1 terabyte drives now. Pick the one that you think will fit her needs best.
    Good luck,
    Clinton

  • Choosing the right RAM for my imac

    Hi,
    I want to upgrade my imac RAM, but im a little confused, there are 2 sticks of RAM im looking at, both are described as mac compatible, but one of them is "CL9" and the other is "CL7", now comes the question, will the CL7 RAM work with my mid 2011 imac?

    You need RAM like this:
    Maximum Memory
    32 GB (Actual) 16 GB (Apple)
    Memory Slots
    4 - 204-pin PC3-10600 (1333 MHz) DDR3 SO-DIMM
    Visit OWC to find what they recommend and sell. You can add to the two you now have or buy four new modules depending upon how much RAM you wish to add. OWC will provide the appropriate modules.

  • I am confuse to choose right technology for file sending?

    Dear all
    i am working in medical transcription project in that we have to send and receive more doc file and voice file from various client (web client and desktop client).
    i have three three technology which makes me confusion
    1. RMI with NIO
    2.servlet with URL class in client
    3.SAAJ with attachment[i dont know much about this]
    so please suggest me which is the right technology for file sending and receiving...the file may maximum 20 MB

    It depends if you have a valid reason to use web services. If you are providing a web front end to your application for clients to use then you could just use a standard file upload procedure, I have used apache commons and it works well for this.
    If your requirements indicate that a web service call is the answer as you have some system-to-system connectivity then I think you will need to use saaj and add the file as a SOAP attachment, as embedding 20MB of binary data into a string field on a standard SOAP message will probably cause the JVM to run out of memory.
    Cheers

Maybe you are looking for

  • ADobe Reader error while opening CRYSTAL REPORT

    i HAVE INVOKED A CRYSTAL REPORT USING A JSP , AND COULD EVEN EXPORT THAT TO A PDF FILE ,but when i try to open that particular file using the adobe reader am getting the error given below. Acrobat could not open MyReport[1].pdf.pdf because it is eith

  • Why is/where is ASL.dll missing?

    Following recovery, itunes was missing.  In downloading and installing, the process stops with "itunes Library.itl cannot be read because it was created by a newer version of itunes and later after many trys another stop occured with SYSTEM ERROR, AS

  • ITunes not displaying entire page w/Mavericks

    It only allows me to see the top of the page in itunes when I enter full screen mode.  Any suggestions?

  • Services not visibles from cproject

    Hi experts!!!!! I have a problem related to services in accounting tab and I am not sure if someone could help me. I would like to customize the services. So that I can have a look into the WBS element in PS called via service in cProjects but it doe

  • BT Activation date (account upgrade)

    Good Afternoon, A friend of mine are getting BT broadband tomorrow and was wondering, what time it gets activated. If it helps their line has always been with BT and they are not switching provider as their calls package is with BT, they are just get