Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
veenstrajelmer committed Oct 23, 2023
1 parent 666e68e commit 4a2846d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydrolib/core/dflowfm/net/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def create_rectilinear(self, extent: tuple, dx: float, dy: float) -> None:
mesh2d_input = mk.MeshKernel()
mesh2d_input.curvilinear_compute_rectangular_grid(params)
mesh2d_input.curvilinear_convert_to_mesh2d() #convert to ugrid/mesh2d
mesh2d_input = mesh2d_input.mesh2d_get()
mesh2d_input = mesh2d_input.mesh2d_get() #get Mesh2d object

# Process
self._process(mesh2d_input)
Expand Down

0 comments on commit 4a2846d

Please sign in to comment.