Skip to content

Commit

Permalink
Merge pull request #13 from p-ortega/hotfix_grid_float
Browse files Browse the repository at this point in the history
converts nlay nrow ncol to int
  • Loading branch information
p-ortega authored Nov 29, 2024
2 parents b320550 + f433b61 commit 049efe3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mf6rtm/mup3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ def __init__(self, name=None, solutions=None, nlay=None, nrow=None, ncol=None):
self.phinp = None
self.components = None
self.fixed_components = None
self.nlay = nlay
self.nrow = nrow
self.ncol = ncol
self.nlay = int(nlay)
self.nrow = int(nrow)
self.ncol = int(ncol)
self.ncpl = self.nlay*self.nrow*self.ncol

if self.solutions.ic is None:
Expand Down

0 comments on commit 049efe3

Please sign in to comment.