-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
6,752 additions
and
47 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
LOADLIBES+=-lm | ||
|
||
barrierField : .cpl/barrierField.o /usr/local/fri/complex.o /usr/local/fri/fft.o /usr/local/fri/rbmat.o /usr/local/fri/parallel.o .cpl/wallclock.o /usr/local/fri/rtchecks.o /usr/local/fri/CHARbyCHAR.o /usr/local/fri/inputready.o .cpl/ftledata.o .cpl/xCompactInterface.o | ||
$(CC) $(LDFLAGS) -o barrierField .cpl/barrierField.o /usr/local/fri/complex.o /usr/local/fri/fft.o /usr/local/fri/rbmat.o /usr/local/fri/parallel.o .cpl/wallclock.o /usr/local/fri/rtchecks.o /usr/local/fri/CHARbyCHAR.o /usr/local/fri/inputready.o .cpl/ftledata.o .cpl/xCompactInterface.o $(LOADLIBES) $(LDLIBS) | ||
|
||
.cpl/barrierField.c .cpl/barrierField.d : barrierField.cpl /usr/local/fri/complex.cpl /usr/local/fri/fft.cpl /usr/local/fri/fft.cmn /usr/local/fri/rbmat.cpl /usr/local/fri/matrix.cmn /usr/local/fri/parallel.cpl wallclock.cpl /usr/local/fri/rtchecks.cpl /usr/local/fri/CHARbyCHAR.cpl /usr/local/fri/inputready.cpl ftledata.cpl xCompactInterface.cpl |
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# activeBarriers | ||
**activeBarriers** computes material active barriers to the transport of momentum and vorticity for flows defined on a three-dimensional cartesian grid | ||
|
||
![Image of the barrier](https://github.com/davecats/activeBarriers/blob/master/.mFTLE.png) | ||
|
||
This repository is the reference implementation of the active barriers for a turbulent channel described in | ||
|
||
``` Haller, G., Katsanoulis, S., Holzner, M., Frohnapfel, B., & Gatti, D. (2020). "Objective barriers to the transport of dynamically active vector fields" Journal of Fluid Mechanics, 905, A17. doi:10.1017/jfm.2020.737 ``` | ||
|
||
### Description | ||
|
||
The computation is divided in two steps, each of them provided as a separate program: | ||
1) *barrierField.cpl*: the computation of the three-dimensional active barrier field from velocity data | ||
2) *ftle.cpl*: computation of aFTLE/aPRA diagnostic for the active barrier field | ||
|
||
### Contacts | ||
|
||
Dr. Davide Gatti | ||
davide.gatti [at] kit.edu | ||
|
||
Karlsruhe Institute of Technology | ||
Institute of Fluid Dynamics | ||
Kaiserstraße 10 | ||
76131 Karlsruhe | ||
|
||
### How to cite this code | ||
|
||
If you use this code and find it helpful, please cite: | ||
|
||
``` Haller, G., Katsanoulis, S., Holzner, M., Frohnapfel, B., & Gatti, D. (2020). "Objective barriers to the transport of dynamically active vector fields" Journal of Fluid Mechanics, 905, A17. doi:10.1017/jfm.2020.737 ``` |
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ny=192 nxd=256 nzd=128 | ||
ox=1 oy=6 oz=6 | ||
ofx=1 ofy=6 ofz=6 | ||
Lx=8 Lz=4 | ||
ymin=0 ymax=2 a=0.475 | ||
ni=4226 | ||
deltat=0.0035 deltas=0.001 smax=10 | ||
nfmin=1 nfmax=151 dn_save=1 | ||
path=./ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0
lapacksvd.cpl → aftle/lapacksvd.cpl
100755 → 100644
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
REAL FUNCTION wallclock() FOLLOWS | ||
|
||
MODULE wallclock | ||
struct timeval startim | ||
gettimeofday(startim,NULL) | ||
REAL FUNCTION wallclock() | ||
struct timeval tim | ||
gettimeofday(tim,NULL) | ||
RESULT=(tim.tv_sec-startim.tv_sec)+1E-6*(tim.tv_usec-startim.tv_usec) | ||
END wallclock | ||
END wallclock |
Oops, something went wrong.