Skip to content

Commit

Permalink
Implement Tidal class
Browse files Browse the repository at this point in the history
TODO: check head files for all examples
  • Loading branch information
dannbuckley committed Jan 15, 2024
1 parent cb242ed commit 96bea90
Show file tree
Hide file tree
Showing 40 changed files with 74,707 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Going through the examples in the [MODFLOW 6 software download](https://www.usgs
<td>ex-gwf-advtidal</td>
<td>Tidal</td>
<td><a href="https://github.com/dannbuckley/flopy_mf6_work/blob/main/notebooks/learning/gwf_advtidal.ipynb">Learning</a></td>
<td>Implementation</td>
<td>Testing</td>
<td><a href="https://github.com/dannbuckley/flopy_mf6_work/blob/main/src/flopy_mf6_work/gwf/advtidal/__init__.py">Implementation</a></td>
<td><a href="https://github.com/dannbuckley/flopy_mf6_work/blob/main/notebooks/testing/gwf_advtidal/gwf_advtidal.ipynb">Testing</a></td>
</tr>
</tbody>
</table>
Expand Down
12 changes: 6 additions & 6 deletions notebooks/implementing/gwf_advtidal/gwf_advtidal.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -896,12 +896,12 @@
"wel = fp.mf6.ModflowGwfwel(\n",
" model=model,\n",
" boundnames=True,\n",
" timeseries={\n",
" \"time_series_namerecord\": wel_ts_df.columns[1:].tolist(),\n",
" \"interpolation_methodrecord\": [\"stepwise\", \"stepwise\", \"stepwise\"],\n",
" \"timeseries\": wel_ts_df.to_records(index=False),\n",
" \"filename\": f\"{sim_name}.wel.ts\"\n",
" },\n",
" # timeseries={\n",
" # \"time_series_namerecord\": wel_ts_df.columns[1:].tolist(),\n",
" # \"interpolation_methodrecord\": [\"stepwise\", \"stepwise\", \"stepwise\"],\n",
" # \"timeseries\": wel_ts_df.to_records(index=False),\n",
" # \"filename\": f\"{sim_name}.wel.ts\"\n",
" # },\n",
" maxbound=5,\n",
" stress_period_data={\n",
" 1: [\n",
Expand Down
6 changes: 2 additions & 4 deletions notebooks/learning/gwf_advtidal.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2927,8 +2927,7 @@
" # end of fourth stress period\n",
" (31., 0., -600., -400.)\n",
" ],\n",
" \"filename\": \"ex-gwf-advtidal.wel.ts\",\n",
" \"pname\": \"wel_ts\"\n",
" \"filename\": \"ex-gwf-advtidal.wel.ts\"\n",
"}\n",
"maxbound = 5\n",
"# list of (cellid, q, boundname)\n",
Expand Down Expand Up @@ -3124,8 +3123,7 @@
" ( 3., 45., 42.8), ( 4., 44., 43. ), ( 6., 43., 43.1),\n",
" ( 9., 42., 42.4), (11., 41., 41.5), (31., 40., 41. )\n",
" ],\n",
" \"filename\": \"ex-gwf-advtidal.riv.ts\",\n",
" \"pname\": \"riv_ts\"\n",
" \"filename\": \"ex-gwf-advtidal.riv.ts\"\n",
"}\n",
"maxbound = 20\n",
"# list of (cellid, stage, cond, rbot, boundname)\n",
Expand Down

0 comments on commit 96bea90

Please sign in to comment.