Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grid virtual casing #214

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
39e758a
Add Flowchart to repository, fix URLs in README
missing-user Nov 14, 2024
3493bb9
added .ext.sp.DF and ext.sp.end to grp_output
missing-user Nov 14, 2024
b446552
added .GF.ma and .GF.ev files to grp_output
missing-user Nov 15, 2024
17b7826
added SPEC flowchart to doxygen
missing-user Nov 15, 2024
6cd5c16
added SPEC flowchart to doxygen
missing-user Nov 15, 2024
be14bd3
reverted Doxygen action name change
missing-user Nov 15, 2024
0ca2313
Add link to SPEC wiki for cluster installation instructions
missing-user Nov 15, 2024
a8abc48
Revert "Add link to SPEC wiki for cluster installation instructions"
missing-user Nov 15, 2024
7fbea18
Contributors citation file added
missing-user Nov 15, 2024
752609c
Changed preferred citation format to the first SPEC paper
missing-user Nov 15, 2024
c07be3c
added verification paper to references
missing-user Nov 15, 2024
f9f2472
use Citations.cff in readme
missing-user Nov 15, 2024
87fbb77
updated and validated cff
missing-user Nov 15, 2024
228702a
Readme 404 fix (#1)
missing-user Nov 16, 2024
68c11d9
Update doxygen.yml
missing-user Nov 16, 2024
519ce96
Update doxygen.yml
missing-user Nov 16, 2024
a74bf48
Update doxygen.yml
missing-user Nov 16, 2024
012fcea
Update doxygen.yml
missing-user Nov 16, 2024
6a23160
Update doxygen.yml
missing-user Nov 16, 2024
b50dfdc
add cff validarion to doxygen action
missing-user Nov 16, 2024
8b26f02
Create cff_to_bib_refs.py
missing-user Nov 16, 2024
f3c9add
Delete spec_refs.bib
missing-user Nov 16, 2024
8f125f6
Update cff_to_bib_refs.py
missing-user Nov 16, 2024
298bbc8
make bibtex naming convention consistent
missing-user Nov 16, 2024
abb9357
readme citelist
missing-user Nov 17, 2024
bdb5d90
added doi, removed duplicate reference
missing-user Nov 17, 2024
22a101c
license typo
missing-user Nov 18, 2024
f2f1eec
Merge branch 'fix-filepath-handling'
missing-user Nov 18, 2024
e90dfe7
Merge branch 'minor-openmp-improvements'
missing-user Nov 18, 2024
ae1d31d
Merge branch 'fix-filepath-handling'
missing-user Nov 18, 2024
c1ceedc
Merge branch 'PrincetonUniversity:master' into master
missing-user Nov 23, 2024
29dbac6
grid based virtual casing implemented
missing-user Nov 29, 2024
abd999c
documentation
missing-user Nov 29, 2024
3831701
accuracy estimates of virtual casing method
missing-user Nov 29, 2024
d9b5309
switch between grid based VC or adaptive VC
missing-user Nov 29, 2024
7243752
variable renaming, added to outputlist
missing-user Nov 30, 2024
594f6e5
add to inputlist copy
missing-user Nov 30, 2024
1170aea
unused variables
missing-user Nov 30, 2024
e6d0396
Merge branch 'PrincetonUniversity:master' into grid-virtual-casing
missing-user Dec 3, 2024
c1da9d4
better variables names
missing-user Dec 3, 2024
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
13 changes: 11 additions & 2 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2


# Validate CITATION.cff and generate bibtex
- name: CITATION.cff to spec_refs.bib
run: |
pip install --user pyyaml cffconvert==2.0.0
cffconvert --validate
python ci/cff_to_bib_refs.py

# run doxygen
- name: Doxygen Action
uses: mattnotmitt/[email protected]
Expand All @@ -28,7 +35,9 @@ jobs:

- name: Copy Pdf
working-directory: ${{ github.workspace }}
run: sudo cp ./docs/latex/refman.pdf ./docs/html/SPEC_manual.pdf
run: |
sudo cp ./docs/latex/refman.pdf ./docs/html/SPEC_manual.pdf
sudo cp ./docs/SPEC_flowchart.pdf ./docs/html/SPEC_flowchart.pdf

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
Expand Down
Loading
Loading