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

Update adapter and partitioned-heat-conduction #1

Open
wants to merge 39 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
6c973a8
Perform some obvious updates when importing.
BenjaminRodenberg Nov 30, 2021
22d7930
Merge branch 'develop' into dev-partitioned-heat-equation
BenjaminRodenberg Nov 30, 2021
31ec84e
Merge branch 'develop' into dev-partitioned-heat-equation
BenjaminRodenberg Nov 30, 2021
19ecbcd
Remove parallelization and PointSources. Update tests.
BenjaminRodenberg Dec 2, 2021
fee57d7
Fix most tests, remove nearest projection.
BenjaminRodenberg Dec 2, 2021
b571537
Fix remaining test.
BenjaminRodenberg Dec 2, 2021
d8e1fd8
Follow FEniCSx workflow and ask user for MPI.COMM_WORLD.
BenjaminRodenberg Dec 7, 2021
506a152
Partial update to dolfinx.
BenjaminRodenberg Dec 7, 2021
e35e7a1
Improve code.
BenjaminRodenberg Dec 7, 2021
543c596
continue with update to dolfinx
arvedes Jan 3, 2022
0d96b7c
update in discussion with Benjamin and Max
arvedes Jan 5, 2022
eccb894
continue update
Jan 7, 2022
c175e01
Add output, debug
Jan 7, 2022
3ca38dc
make coupling_expression derived class from dolfinx.fem.Function
Jan 10, 2022
ac96d50
use Constant for dt
Jan 10, 2022
f60ff1e
Add development version
BenjaminRodenberg Feb 24, 2022
115533b
Delete tutorials.patch
BenjaminRodenberg Feb 24, 2022
13f663a
Include dockerfile with development-version #6
arvedes Mar 3, 2022
9c09993
Repaired most test #1, update Dockerfile
arvedes Mar 3, 2022
a9c42d5
Fix linting errors.
BenjaminRodenberg Mar 8, 2022
630d7ec
Fix PEP8.
BenjaminRodenberg Mar 8, 2022
8592972
Manually fix more PEP8.
BenjaminRodenberg Mar 8, 2022
8c511fe
Manually fix linter, but some links are still broken.
BenjaminRodenberg Mar 8, 2022
4e809b0
Add sympy as dependency for tests.
BenjaminRodenberg Mar 8, 2022
8bffc27
Don't install sympy in docker.
BenjaminRodenberg Mar 8, 2022
e873f9d
Fix format.
BenjaminRodenberg Mar 8, 2022
e08cdd1
Don't install fenicsx-adapter in base image.
BenjaminRodenberg Mar 8, 2022
29b590f
Update test pipeline to use docker image.
BenjaminRodenberg Mar 8, 2022
81ea7d5
Fix docker namespace.
BenjaminRodenberg Mar 8, 2022
b83dee7
debug test_update_expression_scalar - still failing
arvedes Mar 10, 2022
59f63fa
clean up, debug tests
arvedes Mar 10, 2022
9184c71
Update detection of coupling subdomain: use array
arvedes Mar 30, 2022
6db7f45
bugfix in subdomain identification
arvedes Mar 30, 2022
3cface3
update for new dolfinx release
arvedes Apr 29, 2022
a5c28d0
update to doflinx v0.4.1
arvedes Jun 22, 2022
5af2065
debug adapter_core.convert_fenicsx_to_precice
arvedes Jun 22, 2022
da90074
Minor corrections
IshaanDesai Aug 17, 2022
d7a2491
Merge branch 'develop' into dev-partitioned-heat-equation
IshaanDesai Aug 18, 2022
26678c1
Fixing the error computation in the partitioned-heat-equation tutoria…
PhilipHildebrand Dec 2, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
test:
name: Run mock unit tests
runs-on: ubuntu-latest
container: dolfinx/dolfinx:latest
container: benjaminrueth/fenicsx-adapter-base:3584702
steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v2
- name: Install fake precice
run: |
mkdir -p precice
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ build
dist
.idea
*.pyc
.eggs/
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ Notes:

* This adapter is a fork from the original [FEniCS-preCICE adapter](https://github.com/precice/fenics-adapter). Based on [v1.2.0](https://github.com/precice/fenics-adapter/releases/tag/v1.2.0).
* This adapter is currently under development and experimental.
* Target version: dolfinx v0.4.1

## Installing the package

### :construction: Using pip3 to install from PyPI (under construction)
### 🚧 Using pip3 to install from PyPI (under construction) 🚧

It is recommended to install [fenicsxprecice from PyPI](https://pypi.org/project/fenicsxprecice/) via

Expand Down
Loading