Skip to main content

Ansys Student in the Cloud

Cloud Computing*?

Cloud computing is all the rage now for good reason. It is tempting to own a low cost computer and remote-desktop to a supercomputer. One could, in theory, run Ansys on Chromebook with internet connection by connecting to a Cloud Computing Providers Virtual Machine. I took a quick look and have the following to report.

Setting Up Windows Virtual Machine (VM) : Quick Start
Google Compute: YouTube 
Micosoft Azure: YouTube1 & YouTube2

Patience is key. After starting up the Virtual Machine for the first time, one has to wait a bit (15 minutes?) before the virtual machine really starts for one to remote login. I fiddled around with the "source IP ranges", setting it to 0.0.0.0 and even my own IP address. It was unclear if that was useful or waiting alone did the trick.

Once logged in, one has to override the strict security set by the Internet Explorer to allow download of the free Ansys Student.

Finally, remember to Shut Down from the remote desktop and "Stop" the Virtual Machine once you are done to stop the usage-clock.

Google Cloud Platform
Google was the first Cloud VM I tried because it offered always-free option of a tiny vCPU and a generous 12 month use of $300. Unfortunately the instances offered by Google today are all vCPU. It means they are hyper-threaded. Ansys balked immediately with a Fatal Error. One could still solve by specifying 1 core. In short, Google Cloud is not a great choice.

Google Cloud Fatal Error with 2 Cores Requested

Microsoft Azure
I then looked at Microsoft Azure and Amazon Web Services, only Microsoft has some listed as "cores" instead of "vCPU". Here is their pricing. I picked Windows Server 2016 Datacenter Micosoft, Standard DS11 v2 (2 vcpus, 14 GB memory) and 128 GiB Premium SSD persistent storage for testing.

Azure sample estimated total cost :
$0.243/hour Virtual Machine 
+
( $17.92/month SSD 
or 
   $5.89/month HDD )

Note that Azure allows for 200 bucks free credit for 30 days. To give an idea of how much it will take after the free trial, the running bill for VM and storage was ~$1.12 for my usage thus far for the installation of Ansys & a simple linear model solution while playing with it for the last 2 days.

From a time perspective, after clicking on "start" on the console, spin up time before usage could be 5-10 minutes before it would be instantiated. The response of the remote desktop is however quite speedy.

Competition Pricing
For commercial use, licensing could be tricky as Ansys has an approved partner list. When looking at pricing, here's how comparable hardware stacks up between Nimbix and Azure.

8 cores, 64GB RAM & 1TB storage
Nimbix   $1.25/hour + $80/month [pricing]
Azure     $0.90/hour + $40.96/month  [E8s v3  & S30]

While Nimbix is a tad more expensive, established expertise and experience in optimizing Ansys for the cloud may be worth every penny. 

Conclusions
First impression of running Ansys on VM looks promising. It might just work for specific use cases (e.g. students/hobbyist).

Comments

Popular posts from this blog

ANSYS User Defined Results

There is an abundant of options in ANSYS classic when one wishes to post process results. ANSYS workbench default pull down menu post processing options are more limited but they can still be accessed via the User Defined Results. One way not commonly used but can come in handy is as follows: Zeroth: Under Analysis Settings, there is "Output Controls" where you can toggle to "Yes" what you would like to save before the solution starts. This is like OUTRES in APDL. Output Controls First: After solving the model, click on Solution in the tree to highlight it. Solution Second: Click on Worksheet in the toolbar. Worksheet Third: In the worksheet, you will see list of results that are saved. Right click on it to create the User Defined Results. Create User Defined Results So here we have it. You could of look up the different expressions in the help document but I find this method of accessing the results convenient.  Example: Aspec

Export Stiffness Matrix from Ansys

It is sometimes useful to extract the mass and stiffness matrix from Ansys.     *SMAT, MatK, D, IMPORT, FULL, file.full, STIFF       *PRINT, matk, matk, txt Exporting mass matrix would be similar:       *SMAT, MatM, D, import, full, file.full, MASS The above script uses APDL Math to get the job done. (Please see previous post for another example). The ordering of the matrix is unfortunately not concurrently exported. To verify the sequencing is as expected, we will work to replicate a truss example in the  Finite Element Trusses course notes by Bob Greenlee. Figure 1: Truss Problem Setup Model Creation Script to create model: /prep7 !! Creates Model to reflect course notes ! Properties et ,1,1  mp , ex, 1, 29.5e6 r , 1, 1 ! Geometry n ,1 $  n ,2, 40 $  n ,3, 40, 30 $  n ,4, 0, 30 e ,1,2 $  e ,2,3 $  e ,1,3 $  e ,3,4 ! Boundary Conditions d ,1,ux,0 $  d ,1,uy,0 d ,2,uy,0 d ,4,ux,0 $  d ,4,uy,0 f ,2,fx,20e3 f ,3,fy,-25e3 ! solves /solu eqslv , sparse

ANSYS APDL Syntax Highlighting editor

Notepad++ with APDL User Defined Language The editor of my choice is Notepad++  with the available User Defined Language Files for APDL . You can install it without administrative privileges via the zip file. The best part of it is, it's FREE! After installing Notepad++, go to "Language>Define Your Language..." then "Import" the XML file downloaded from the above link. Remember to restart Notepad++ so that the language changes will take into effect. Opening up any *.inp or *.ans files should automatically switch highlighting to APDL. I made some minor edits. Here's my XML file: LINK . I also heard Sublime Text and  Ultraedit  has more advance features but they aren't (totally) free.