Skip to content

Commit

Permalink
Merge pull request #391 from gmaragko82/master
Browse files Browse the repository at this point in the history
UGent contribution to MaCFP 2023
  • Loading branch information
rmcdermo committed Aug 29, 2023
2 parents c41770f + 6684834 commit be1fca6
Show file tree
Hide file tree
Showing 67 changed files with 238,148 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/Extinction.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,21 @@ jobs:

# ADD YOUR INSTITUTION BELOW, COPY STEPS 1 AND 2, CHANGE INSTITUTE NAME (AFTER 2023 AND WITHIN ZIP FILENAME)

# Step 1: generate the plots
- name: UGent Results
run: |
echo $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE/Extinction/FM_Burner/Computational_Results/2023/UGent
python UGent_FM_Burner_plot_cmp.py
# Step 2: push the plots to the releases page
- name: Push NIST Results to release
if: ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.repository_owner == 'MaCFP'
run: |
cd $GITHUB_WORKSPACE/Extinction/FM_Burner/Computational_Results/2023/UGent
cp README.md ./Plots/.
zip Plots.zip -r Plots
mv Plots.zip FM_Burner_UGent_Plots.zip
gh release upload SCRIPT_FIGURES FM_Burner_UGent_Plots.zip --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39 changes: 39 additions & 0 deletions .github/workflows/Fire_Growth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,42 @@ jobs:
gh release upload SCRIPT_FIGURES UMD_SBI_FSRI-UMD_Plots.zip --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Step 1: generate the plots
- name: UGent UMD_SBI Results
run: |
echo $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE/Fire_Growth/UMD_SBI/Computational_Results/2023/UGent
python UGent_UMD_SBI_plot_cmp.py
# Step 2: push the plots to the releases page
- name: Push UGent Results to release
if: ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.repository_owner == 'MaCFP'
run: |
cd $GITHUB_WORKSPACE/Fire_Growth/UMD_SBI/Computational_Results/2023/UGent
cp README.md Plots/.
zip Plots.zip -r Plots
mv Plots.zip UMD_SBI_UGent_Plots.zip
gh release upload SCRIPT_FIGURES UMD_SBI_UGent_Plots.zip --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Step 1: generate the plots
- name: UGent NIST_Parallel_Panel Results
run: |
echo $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE/Fire_Growth/NIST_Parallel_Panel/Computational_Results/2023/UGent
python UGent_NIST_Parallel_Panel_plot_cmp.py
# Step 2: push the plots to the releases page
- name: Push UGent Results to release
if: ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.repository_owner == 'MaCFP'
run: |
cd $GITHUB_WORKSPACE/Fire_Growth/NIST_Parallel_Panel/Computational_Results/2023/UGent
cp README.md Plots/.
zip Plots.zip -r Plots
mv Plots.zip NIST_Parallel_Panel_UGent_Plots.zip
gh release upload SCRIPT_FIGURES NIST_Parallel_Panel_UGent_Plots.zip --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

19 changes: 19 additions & 0 deletions .github/workflows/Liquid_Pool_Fires.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,22 @@ jobs:
gh release upload SCRIPT_FIGURES NIST_Pool_Fires_Sandia_Plots.zip --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# Step 1: generate the plots
- name: UGent NIST_Pool_Fires Results
run: |
echo $GITHUB_WORKSPACE
cd $GITHUB_WORKSPACE/Liquid_Pool_Fires/NIST_Pool_Fires/Computational_Results/2023/UGent
python UGent_NIST_Pool_Fires_plot_cmp.py
# Step 2: push the plots to the releases page
- name: Push UGent NIST_Pool_Fires Results to release
if: ( github.event_name == 'push' || github.event_name == 'workflow_dispatch' ) && github.repository_owner == 'MaCFP'
run: |
cd $GITHUB_WORKSPACE/Liquid_Pool_Fires/NIST_Pool_Fires/Computational_Results/2023/UGent
cp README.md ./Plots/.
zip Plots.zip -r Plots
mv Plots.zip NIST_Pool_Fires_UGent_Plots.zip
gh release upload SCRIPT_FIGURES NIST_Pool_Fires_UGent_Plots.zip --clobber
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit be1fca6

Please sign in to comment.