Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
d62c50b
updated build instructions for MPICH
sbryngelson Dec 8, 2020
f988d88
add gcc 10+ flag message to readme
sbryngelson Dec 8, 2020
b9d6d9c
fix lapack linker bug by copying over the library
sbryngelson Dec 9, 2020
4240edf
updated richardson install doc
sbryngelson Dec 16, 2020
46ae33f
update git ig
sbryngelson Dec 16, 2020
84f7d14
fix bug postprocess does not like optimization flags!
sbryngelson Dec 18, 2020
c29de30
ignore ctags
sbryngelson Feb 24, 2021
da86c13
bux fix
sbryngelson Mar 10, 2021
b73c047
merge
sbryngelson Mar 10, 2021
6070ad2
update license
sbryngelson Sep 16, 2021
93da581
clean
sbryngelson Sep 16, 2021
f128e58
fix license
sbryngelson Sep 16, 2021
a3a8f39
Update m_global_parameters.f90
anandrdbz Oct 2, 2021
26f63cf
Merge pull request #1 from anandrdbz/master
sbryngelson Oct 2, 2021
9263892
Fixed Keller Miksis
Oct 7, 2021
14f2796
Merge pull request #2 from anandrdbz/master
sbryngelson Oct 7, 2021
63cb106
update readme
sbryngelson Oct 31, 2021
638c903
readme
sbryngelson Oct 31, 2021
6a0ab80
Adding the Test 2D/3D cases
Nov 13, 2021
bdb5fcd
Delete run.sh
anandrdbz Nov 13, 2021
9d8bb5b
Delete run.sh
anandrdbz Nov 13, 2021
e918571
Add files via upload
anandrdbz Nov 13, 2021
1b87fd3
Add files via upload
anandrdbz Nov 13, 2021
4a9f2b6
Add files via upload
anandrdbz Nov 13, 2021
5743582
More Installers & Source Fetching
henryleberre Nov 15, 2021
00d7331
CI Workflow
henryleberre Nov 15, 2021
8615c29
CI Workflow Badge
henryleberre Nov 15, 2021
0d32ecd
Merge pull request #12 from henryleberre/master
sbryngelson Nov 16, 2021
0a97e8b
fix silo install for python c headers
sbryngelson Nov 16, 2021
0797119
fix badge
sbryngelson Nov 16, 2021
133d22f
fix silo install per Henry
sbryngelson Nov 16, 2021
36630b1
Proper Exit Code for tests/checks.sh
henryleberre Nov 16, 2021
1d0a1c3
Merge pull request #13 from henryleberre/master
sbryngelson Nov 16, 2021
67c8153
some cleaning
sbryngelson Nov 17, 2021
235bfec
tidy up
sbryngelson Nov 17, 2021
a1ce096
DRY Dependency Installer
henryleberre Nov 18, 2021
d7ac68e
Explicit Python2 usage
henryleberre Nov 18, 2021
0b49144
Update CI for the new dependency installer
henryleberre Nov 18, 2021
cc5b562
Update README.md's build instructions
henryleberre Nov 18, 2021
5419e2b
Updated Debian-like dependency list
henryleberre Nov 19, 2021
966c158
Merge pull request #20 from henryleberre/master
sbryngelson Nov 19, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

workflow_dispatch:

jobs:
CI:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Fetch Aptitude Dependencies
run: |
sudo apt install -y tar wget make gcc clang python3 openmpi-* python python-dev python3-dev

- name: Fetch & Install Dependencies (/dependencies)
run: |
cd dependencies
./install.sh -j $(nproc)
cd ..

- name: Build MFC
run: make -j $(nproc)

- name: Run MFC Tests
run: make test
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
tags
src/*/tags
doc/Doxygen/*/html
doc/Doxygen/*logo*
doc/Doxygen/*icon*
Expand Down Expand Up @@ -33,5 +35,4 @@ example_cases/*/silo*
example_cases/*/restart*
example_cases/*/*.out
example_cases/*/binary
lib/fftw-3.3.8
lib/lapack-3.4.2
dependencies/*/
70 changes: 12 additions & 58 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,58 +1,12 @@
The MFC is distributed under the GNU GPLv3 license (or later).

Contributors: S. H. Bryngelson, K. Schmidmayer, V. Coralic, J. Meng, K. Maeda, T. Colonius, J.-S. Spratt, M. Rodriguez


Spencer H. Bryngelson
--------------------------------------------
Senior Postdoctoral Scholar
California Institute of Technology
Pasadena, California, USA
Email: spencer@caltech.edu

Jean-Sebastien Spratt
--------------------------------------------
Graduate Researcher
California Institute of Technology
Pasadena, California, USA

Mauro Rodriguez
--------------------------------------------
Postdoctoral Scholar
California Institute of Technology
Pasadena, California, USA

Kevin Schmidmayer
--------------------------------------------
Postdoctoral Scholar
California Institute of Technology
Pasadena, California, USA
Email: kevin.schmidmayer@gmail.com

Vedran Coralic
--------------------------------------------
Senior Research Scientist
Prime Air, Amazon Inc.
Seattle, Washington, USA
Email: vcoralic@amazon.com

Jomela Meng
--------------------------------------------
Research Engineer
Bosch Research and Technology Center
Sunnyvale, California, USA
Email: jomela.meng@gmail.com

Kazuki Maeda
--------------------------------------------
Acting Assistant Professor
University of Washington
Seattle, Washington, USA
Email: kazuki.e.maeda@gmail.com

Tim Colonius
--------------------------------------------
Frank and Ora Lee Marble Professor of Mechanical Engineering
California Institute of Technology
Pasadena, California, USA
Email: colonius@caltech.edu
+ S. Bryngelson
+ T. Colonius
- V. Coralic
- K. Maeda
- J. Meng
+ A. Radhakrishnan
+ M. Rodriguez
- K. Schmidmayer
+ J. Spratt

(+) Current developers and maintainers
(-) Past developers
72 changes: 0 additions & 72 deletions CONFIGURE

This file was deleted.

3 changes: 0 additions & 3 deletions COPYRIGHT

This file was deleted.

18 changes: 0 additions & 18 deletions INSTALL

This file was deleted.

Loading