6666# NetCDF input parameters.
6767#
6868# A NetCDF dataset will be created from array data in the `IC`, and
69- # ' GHBG' packages. Data will be copied from the package objects into
69+ # ` GHBG` packages. Data will be copied from the package objects into
7070# dataset arrays.
7171
7272
@@ -278,10 +278,10 @@ def create_sim(ws):
278278
279279# ## Create helper function to update dataset
280280#
281- # This function updates an Xarray dataset to add variables described
281+ # This function updates an xarray dataset to add variables described
282282# in a FloPy provided dictionary.
283283#
284- # A dimension map variable relates FloPy and NetCDF dimensions names.
284+ # The dimmap variable relates NetCDF dimension names to a value .
285285
286286
287287# A subroutine that can update an xarray dataset with package
@@ -329,7 +329,7 @@ def _data_shape(shape):
329329
330330# ## Create NetCDF based simulation
331331#
332- # Reset the simulation path and set the GWF name file `nc_filerecord`
332+ # Reset the simulation path and set the ` GWF` name file `nc_filerecord`
333333# attribute to the name of the intended input NetCDF file. Display
334334# the resultant name file changes.
335335
@@ -347,7 +347,7 @@ def _data_shape(shape):
347347# Create the base xarray dataset from the modelgrid object. This
348348# will add required dimensions and coordinate variables to the
349349# dataset according to the grid specification. Modeltime is needed
350- # to for timeseries support.
350+ # for timeseries support.
351351
352352# create the dataset
353353ds = gwf .modelgrid .dataset (modeltime = gwf .modeltime , mesh = "layered" )
@@ -412,8 +412,8 @@ def _data_shape(shape):
412412#
413413# MODFLOW 6 input data for the package is now in the dataset. Once the NetCDF
414414# file is generated, we need to configure MODFLOW 6 so that it looks to that
415- # file for the package array input. The ASCII will no longer defined the arrays-
416- # instead the array names will be followed by the NETCDF keyword.
415+ # file for the package array input. The ASCII file will no longer defined the
416+ # arrays- instead the array names will be followed by the NETCDF keyword.
417417#
418418# We will simply overwrite the entire MODFLOW 6 `IC` package input file with the
419419# following code block.
@@ -432,7 +432,7 @@ def _data_shape(shape):
432432#
433433# Follow the same process as above for the `GHBG` package. The difference is
434434# that this is PERIOD input and therefore stored as timeseries data in the
435- # NetCDF file. As NETCDF timeseries and defined in terms of total number of
435+ # NetCDF file. As NETCDF timeseries are defined in terms of total number of
436436# simulation steps, care must be taken in the translation of FloPy period
437437# data to the timeseries.
438438
0 commit comments