-
Notifications
You must be signed in to change notification settings - Fork 24
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 #44 from mbakker7/formatting
Formatting black+isort
- Loading branch information
Showing
76 changed files
with
7,905 additions
and
6,045 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,2 @@ | ||
# Migrate code style to black | ||
a8aa6904034da74b91f8046e2440ebb4359d63e2 |
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
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,5 +1,14 @@ | ||
from ttim import * | ||
ml = ModelMaq(kaq=[1, 5], z=[3, 2, 1, 0], c=[10], Saq=[0.3, 0.01], Sll=[0.001], tmin=10, tmax=1000, M=20) | ||
w1 = DischargeWell(ml, xw = 0, yw = 0, rw = 1e-5, tsandQ = [(0, 1)], layers = 0) | ||
ml.solve() | ||
import ttim | ||
|
||
ml = ttim.ModelMaq( | ||
kaq=[1, 5], | ||
z=[3, 2, 1, 0], | ||
c=[10], | ||
Saq=[0.3, 0.01], | ||
Sll=[0.001], | ||
tmin=10, | ||
tmax=1000, | ||
M=20, | ||
) | ||
w1 = ttim.DischargeWell(ml, xw=0, yw=0, rw=1e-5, tsandQ=[(0, 1)], layers=0) | ||
ml.solve() |
Oops, something went wrong.