OOMMF Tutorial Part 9: OOMMF Matlab Import

How to work with OOMMF files in Matlab OOMMF can output both scalar and vector data. It’s easy enough to view this data using the built in programs in OOMMF, but what if you want to process or analyse your data further. This post shows you how to convert OOMMF vector files into a format… Read More »

OOMMF Tutorial Part 8: OOMMF on HPC

OOMMF on HPC HPC facilities can be very useful for speeding up OOMMF calculations, both in terms of number of cores you can throw at the problem, and the number of simultaneous calculations you can run at once. This post is a few tips and tricks I’ve picked up as I’ve been using OOMMF on… Read More »

OOMMF Automatic Output

To set OOMMF automatic output, just add lines similar to these to the bottom of your mif file. You can modify the detail to select which parameters to output, and how frequently. Watch this video for more about OOMMF automatic outputs: Image: walknboston; Some rights reserved

How to install whl files in Anaconda

Anaconda whl Install The whl format is a special zip format for Python packages. These are Anaconda whl install instructions. Here’s how to install a whl package in the Anaconda Python distribution from Continuum Analytics. Download the ‘wheel’ Find and download your whl file. In this example I’m going to be installing the ‘Shapely’ geometry… Read More »

How to Find the Concave Hull in Python

How to Find the Concave Hull in Python The Python module Shapely has a built in function for determining the convex hull, but for determining the concave hull (or alpha shape), you have to do a bit more work. Thankfully a few people on the internet have already done much of the work in determining… Read More »