JIGSAW(GEO)
is a set of algorithms designed to generate unstructured grids for geoscientific modelling. Applications include: large-scale atmospheric simulation and numerical weather prediction, global and coastal ocean-modelling, and ice-sheet dynamics.
JIGSAW(GEO)
can be used to produce high-quality 'generalised' Delaunay / Voronoi tessellations for unstructured finite-volume / element type models. Grids can be generated in local two-dimensional domains, and over general spheroidal surfaces. Mesh resolution can be adapted to follow complex user-defined metrics, including: topographic contours, discrete solution profiles or coastal features. These features enable the generation of complex, multi-resolution climate process models, with simulation fidelity enhanced in regions of interest.
JIGSAW(GEO)
is a stand-alone mesh generator written in c++
, based on the general-purpose meshing package JIGSAW
. This toolbox provides a MATLAB
/ OCTAVE
based scripting interface, including file I/O
, mesh visualisation
and post-processing
facilities. The underlying JIGSAW
library is a collection of unstructured triangle- and tetrahedron-based meshing algorithms, designed to produce high quality Delaunay-based grids for computational simulation. JIGSAW
includes both Delaunay-refinement based algorithms for the construction of new meshes, as well as optimisation driven methods for the improvement of existing grids.
JIGSAW(GEO)
is typically able to produce the very high-quality staggered unstructured grids required by contemporary unstructued general circulation models (i.e. MPAS
, COMPAS
, FESOM
, ICON
, etc), generating highly optimised, multi-resolution meshes that are locally-orthogonal
, mutually-centroidal
and self-centred
.
JIGSAW(GEO)
has been compiled and tested on various 64-bit
Linux
, Windows
and Mac
based platforms.
JIGSAW(GEO)
is a multi-part library, consisting of a MATLAB
/ OCTAVE
front-end, and a core c++
back-end. All of the heavy-lifting is done in the c++
layer - the interface contains additional scripts for file I/O
, visualisation
and general data processing
:
JIGSAW(GEO) :: MATLAB/OCTAVE top-level functions
├── script -- MATLAB/OCTAVE utilities
└── jigsaw
├── src -- JIGSAW source files
├── inc -- JIGSAW header files (for libjigsaw)
├── bin -- put JIGSAW exe binaries here
├── lib -- put JIGSAW lib binaries here
├── geo -- default folder for JIGSAW inputs
├── out -- default folder for JIGSAW output
└── uni -- unit tests and libjigsaw programs
The MATLAB
/ OCTAVE
interface is provided for convenience - you're not forced to use it, but it's perhaps the easiest way to get started!
It's also possible to interact with the JIGSAW
back-end directly, either through (i)
scripting: building text file inputs and calling the JIGSAW
executable from the command-line, or (ii)
programmatically: using JIGSAW
data-structures within your own applications and calling the library via its API
.
The first step is to compile and configure the code! JIGSAW
can either be built directly from src, or installed using the conda
package manager.
The full JIGSAW
src can be found in ../jigsaw/src/
.
JIGSAW
is a header-only
package - the single main jigsaw.cpp
file simply #include
's the rest of the library directly. JIGSAW
does not currently dependent on any external packages or libraries.
JIGSAW
consists of several pieces: (a)
a set of command-line utilities that read and write mesh data from/to file, and (b)
a shared library, accessible via a C
-format API
.
JIGSAW
can be built using the cmake
utility. To build, follow the steps below:
* Ensure you have the cmake utility installed.
* Clone or download this repository.
* Navigate to the main `../jigsaw/` directory.
* Create a new temporary directory BUILD (to store the cmake build files).
* Navigate into the temporary directory.
* Execute: cmake -D CMAKE_BUILD_TYPE=BUILD_MODE ..
* Execute: make
* Execute: make install
* Delete the temporary directory.
This process will build a series of executables and the shared library: jigsaw
itself - the main command-line meshing utility, tripod
- JIGSAW
's tessellation infrastructure, as well as libjigsaw
- JIGSAW
's shared API
. BUILD_MODE
can be used to select different compiler configurations and should be either RELEASE
or DEBUG
.
See example.jig
for documentation on calling the command-line executables, and the headers in ../jigsaw/inc/
for details on the API
.
JIGSAW
has been successfully built using various versions of the g++
and llvm
compilers. The build process is a simple one-liner (from ../jigsaw/src/
):
g++ -std=c++11 -pedantic -Wall -O3 -flto -D NDEBUG
-D __cmd_jigsaw jigsaw.cpp -o ../bin/jigsaw
will build the main jigsaw
command-line executable,
g++ -std=c++11 -pedantic -Wall -O3 -flto -D NDEBUG
-D __cmd_tripod jigsaw.cpp -o ../bin/tripod
will build the tripod
command-line utility (JIGSAW
's tessellation infrastructure) and,
g++ -std=c++11 -pedantic -Wall -O3 -flto -fPIC -D NDEBUG
-D __lib_jigsaw jigsaw.cpp -shared -o ../lib/libjigsaw.so
will build JIGSAW
as a shared library (libjigsaw
).
JIGSAW
is also available as a conda
environment. To install and use, follow the steps below:
* Ensure you have conda installed. If not, consider miniconda as a lightweight option.
* Add conda-forge as a channel: conda config --add channels conda-forge
* Create a jigsaw environment: conda create -n jigsaw jigsaw
Each time you want to use JIGSAW
simply activate the environment using: conda activate jigsaw
Once activated, the various JIGSAW
command-line utilities will be available in your run path, JIGSAW
's shared library (libjigsaw
) will be available in your library path and its include files in your include path.
After downloading and building the code, navigate to the root JIGSAW(GEO)
directory within your MATLAB
/ OCTAVE
installation to run the set of examples contained in meshdemo.m
:
meshdemo(1); % simple two-dimensional examples to get stated.
meshdemo(2); % a multi-resolution grid for the Australian region.
meshdemo(3); % a multi-part grid of the (contiguous) USA.
meshdemo(4); % a uniform-resolution spheroidal grid.
meshdemo(5); % a spheroidal grid with a regional "patch".
meshdemo(6); % a spheroidal grid with complex grid-spacing constraints.
Additionally, the ../jigsaw/example.jig
file provides a description of JIGSAW
's configuration options, and can be used as a command-line example. A set of unit-tests and libjigsaw
example programs are contained in ../jigsaw/uni/
. The JIGSAW-API
is documented via the header files in ../jigsaw/inc/
.
This program may be freely redistributed under the condition that the copyright notices (including this entire header) are not removed, and no compensation is received through use of the software. Private, research, and institutional use is free. You may distribute modified versions of this code UNDER THE CONDITION THAT THIS CODE AND ANY MODIFICATIONS MADE TO IT IN THE SAME FILE REMAIN UNDER COPYRIGHT OF THE ORIGINAL AUTHOR, BOTH SOURCE AND OBJECT CODE ARE MADE FREELY AVAILABLE WITHOUT CHARGE, AND CLEAR NOTICE IS GIVEN OF THE MODIFICATIONS
. Distribution of this code as part of a commercial system is permissible ONLY BY DIRECT ARRANGEMENT WITH THE AUTHOR
. (If you are not directly supplying this code to a customer, and you are instead telling them how they can obtain it for free, then you are not required to make any arrangement with me.)
DISCLAIMER
: Neither I nor: Columbia University, the Massachusetts Institute of Technology, the University of Sydney, nor the National Aeronautics and Space Administration warrant this code in any way whatsoever. This code is provided "as-is" to be used at your own risk.
There are a number of publications that describe the algorithms used in JIGSAW(GEO)
in detail. Additional information and references regarding the formulation of the underlying JIGSAW
mesh-generator can also be found here. If you make use of JIGSAW
in your work, please consider including a reference to the following:
[1]
- Darren Engwirda: Generalised primal-dual grids for unstructured co-volume schemes, J. Comp. Phys., 375, pp. 155-176, https://doi.org/10.1016/j.jcp.2018.07.025, 2018.
[2]
- Darren Engwirda: JIGSAW-GEO (1.0): locally orthogonal staggered unstructured grid generation for general circulation modelling on the sphere, Geosci. Model Dev., 10, pp. 2117-2140, https://doi.org/10.5194/gmd-10-2117-2017, 2017.
[3]
- Darren Engwirda, David Ivers, Off-centre Steiner points for Delaunay-refinement on curved surfaces, Computer-Aided Design, 72, pp. 157-171, http://dx.doi.org/10.1016/j.cad.2015.10.007, 2016.
[4]
- Darren Engwirda: Multi-resolution unstructured grid-generation for geophysical applications on the sphere, Research note, Proceedings of the 24th International Meshing Roundtable, https://arxiv.org/abs/1512.00307, 2015.
[5]
- Darren Engwirda, Locally-optimal Delaunay-refinement and optimisation-based mesh generation, Ph.D. Thesis, School of Mathematics and Statistics, The University of Sydney, http://hdl.handle.net/2123/13148, 2014.