forked from SimVascular/svZeroDSolver
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Solved one failing case - ground truth was wrong. Edited inlet_block …
…code for junctions
- Loading branch information
1 parent
1f2cbc6
commit 0b9f1f4
Showing
2 changed files
with
15 additions
and
20 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
10 changes: 7 additions & 3 deletions
10
tests/cases/dirgraph-results/steadyFlow_bifurcationR_R1_blockNames_directed_graph.dot
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,11 +1,15 @@ | ||
strict digraph { | ||
J0; | ||
V1; | ||
V2; | ||
BC0_inlet; | ||
V0; | ||
V1; | ||
BC1_outlet; | ||
V2; | ||
BC2_outlet; | ||
BC0_inlet -> V0; | ||
J0 -> V1; | ||
J0 -> V2; | ||
V1 -> BC1_outlet; | ||
V2 -> BC2_outlet; | ||
BC0_inlet -> V0; | ||
V0 -> J0; | ||
} |