-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #182 from precice/develop
Release v3 compatible ASTE version
- Loading branch information
Showing
44 changed files
with
5,478 additions
and
2,705 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"MD013": false, | ||
"MD033": false | ||
"MD033": false, | ||
"MD041": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,41 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<precice-configuration> | ||
<log> | ||
<sink | ||
filter="%Severity% > debug and %Rank% = 0" | ||
format="---[precice] %ColorizedSeverity% %Message%" | ||
enabled="true" /> | ||
</log> | ||
|
||
<solver-interface dimensions="2"> | ||
<data:scalar name="Data" /> | ||
|
||
<mesh name="A-Mesh"> | ||
<use-data name="Data" /> | ||
</mesh> | ||
|
||
<mesh name="B-Mesh"> | ||
<use-data name="Data" /> | ||
</mesh> | ||
|
||
<m2n:sockets from="A" to="B" exchange-directory="." /> | ||
|
||
<participant name="A"> | ||
<use-mesh name="A-Mesh" provide="yes" /> | ||
<write-data name="Data" mesh="A-Mesh" /> | ||
</participant> | ||
|
||
<participant name="B"> | ||
<use-mesh name="A-Mesh" provide="no" from="A" /> | ||
<use-mesh name="B-Mesh" provide="yes" /> | ||
<read-data name="Data" mesh="B-Mesh" /> | ||
<mapping:linear-cell-interpolation | ||
constraint="consistent" | ||
direction="read" | ||
from="A-Mesh" | ||
to="B-Mesh" /> | ||
</participant> | ||
|
||
<coupling-scheme:parallel-explicit> | ||
<participants first="A" second="B" /> | ||
<max-time value="1.0" /> | ||
<time-window-size value="1" /> | ||
<exchange data="Data" mesh="A-Mesh" from="A" to="B" /> | ||
</coupling-scheme:parallel-explicit> | ||
</solver-interface> | ||
<log enabled="0" /> | ||
|
||
<profiling mode="all" /> | ||
|
||
<data:scalar name="Data" /> | ||
|
||
<mesh name="A-Mesh" dimensions="2"> | ||
<use-data name="Data" /> | ||
</mesh> | ||
|
||
<mesh name="B-Mesh" dimensions="2"> | ||
<use-data name="Data" /> | ||
</mesh> | ||
|
||
<m2n:sockets acceptor="A" connector="B" exchange-directory="." /> | ||
|
||
<participant name="A"> | ||
<provide-mesh name="A-Mesh" /> | ||
<write-data name="Data" mesh="A-Mesh" /> | ||
</participant> | ||
|
||
<participant name="B"> | ||
<receive-mesh name="A-Mesh" from="A" /> | ||
<provide-mesh name="B-Mesh" /> | ||
<read-data name="Data" mesh="B-Mesh" /> | ||
<mapping:linear-cell-interpolation | ||
constraint="consistent" | ||
direction="read" | ||
from="A-Mesh" | ||
to="B-Mesh" /> | ||
</participant> | ||
|
||
<coupling-scheme:parallel-explicit> | ||
<participants first="A" second="B" /> | ||
<max-time value="1.0" /> | ||
<time-window-size value="1" /> | ||
<exchange data="Data" mesh="A-Mesh" from="A" to="B" /> | ||
</coupling-scheme:parallel-explicit> | ||
</precice-configuration> |
Oops, something went wrong.