Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Set lower bound for A0
Browse files Browse the repository at this point in the history
  • Loading branch information
kandread committed Oct 15, 2019
1 parent b4418f0 commit 3951313
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions confluence/integrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def integrate(self):
ubnds = [0.0] * (self.nreaches * 2)
lbnds[1::2] = [0.01] * self.nreaches
ubnds[1::2] = [0.09] * self.nreaches
lbnds[::2] = np.abs(np.amin(self.data[-1], axis=0))
ubnds[::2] = [1e4] * self.nreaches
bnds = list(zip(lbnds, ubnds))
x0 = [0.0] * (self.nreaches * 2)
Expand Down

0 comments on commit 3951313

Please sign in to comment.