diff --git a/README b/README.md similarity index 98% rename from README rename to README.md index ef272988..b3f5e342 100644 --- a/README +++ b/README.md @@ -1,11 +1,9 @@ -IGA-ADS -======= +# IGA-ADS IGA-ADS is a C++ framework designed to facilitate creating parallel numerical simulations for time-dependent PDEs using isogeometric finite element method. -Requirements ------------- +## Requirements 1. Dependencies - LAPACK, BLAS @@ -39,10 +37,10 @@ Options are specified as -Doption=value, e.g. $ cmake -DUSE_GALOIS=ON .. -Contents --------- +## Contents -Top-level structure: +``` + Top-level structure: src/ads/ - framework code src/problems - example problem implementations test/ - unit tests @@ -164,4 +162,4 @@ Unit tests: test/ads/lin/banded_solver_test.cpp test/ads/lin/tensor_test.cpp test/ads/util/multi_array_test.cpp - +``` diff --git a/movie b/movie new file mode 100644 index 00000000..b02bbc9a --- /dev/null +++ b/movie @@ -0,0 +1 @@ +ffmpeg -framerate 24 -pattern_type glob -i '*.data.png' -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4 diff --git a/plot b/plot new file mode 100644 index 00000000..a0275d85 --- /dev/null +++ b/plot @@ -0,0 +1,11 @@ +set view map +set xrange [0:1] +set yrange [0:1] +set cbrange [0:1] +set term png + +do for [file in system('ls -1B *.data')] { + plot file with image + set output file.".png" + replot +}