Skip to content

Commit

Permalink
Merge pull request #1 from kboom/master
Browse files Browse the repository at this point in the history
Adds plot script to plot everything ending with .data in the current directory
  • Loading branch information
marcinlos authored Jun 1, 2018
2 parents 6c91bcf + 39b006a commit 7965b62
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
14 changes: 6 additions & 8 deletions README → README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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

```
1 change: 1 addition & 0 deletions movie
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ffmpeg -framerate 24 -pattern_type glob -i '*.data.png' -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4
11 changes: 11 additions & 0 deletions plot
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 7965b62

Please sign in to comment.