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

Restructure numerical experiments #13

Merged
merged 5 commits into from
Feb 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
34 changes: 34 additions & 0 deletions .github/workflows/run0D.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Run 0D examples

on:
pull_request:
push:
branches: [main]


jobs:

run-0D:
# This code depends on the result of check-code
runs-on: ubuntu-24.04
container:
image: ghcr.io/scientificcomputing/fenics-gmsh:2024-02-19


steps:
- uses: actions/checkout@v4

- name: Install package
run: python3 -m pip install -e .

- name: Run split-cai
working-directory: ./numerical_experiments/0D
run: python3 split_cai.py

- name: Run split-cai-catrpn
working-directory: ./numerical_experiments/0D
run: python3 split_cai_catrpn.py

- name: Run split-zeta
working-directory: ./numerical_experiments/0D
run: python3 split_zeta.py
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
numerical_experiments/0D/ToRORd_dynCl_endo_caisplit.py
numerical_experiments/0D/ToRORd_dynCl_endo_caisplit_ep.py
numerical_experiments/0D/ToRORd_dynCl_endo_caisplit_mechanics.py
numerical_experiments/0D/ToRORd_dynCl_endo_catrpnsplit.py
numerical_experiments/0D/ToRORd_dynCl_endo_catrpnsplit_ep.py
numerical_experiments/0D/ToRORd_dynCl_endo_catrpnsplit_mechanics.py
numerical_experiments/0D/ToRORd_dynCl_endo_zetasplit.py
numerical_experiments/0D/ToRORd_dynCl_endo_zetasplit_ep.py
numerical_experiments/0D/ToRORd_dynCl_endo_zetasplit_mechanics.py
numerical_experiments/0D/output-cai_catrpn/
numerical_experiments/0D/output-split-cai/
numerical_experiments/0D/output-split-zeta/

*.vtu
*.pvd
*.h5
Expand Down
Loading
Loading