From 63af1e65cc4a1033fec3b5ffb2922a380a9b08c3 Mon Sep 17 00:00:00 2001 From: Sarah Jordan Date: Wed, 14 Aug 2024 08:28:46 -0500 Subject: [PATCH 1/2] updates to code and demo notebooks --- examples/Implement_TSM_Example.ipynb | 1531 ++++++++++++++++- examples/model_architecture.ipynb | 1273 +++++++++++--- src/clearwater_modules/tsm/constants.py | 2 + src/clearwater_modules/tsm/processes.py | 4 +- .../tsm/static_variables.py | 7 + tests/test_5_tsm_calculations.py | 1 + 6 files changed, 2484 insertions(+), 334 deletions(-) diff --git a/examples/Implement_TSM_Example.ipynb b/examples/Implement_TSM_Example.ipynb index d916aca..bd81070 100644 --- a/examples/Implement_TSM_Example.ipynb +++ b/examples/Implement_TSM_Example.ipynb @@ -40,7 +40,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -48,6 +48,7 @@ "import clearwater_modules.sorter as sorter\n", "import random\n", "import warnings\n", + "import xarray as xr\n", "warnings.filterwarnings(\"ignore\")" ] }, @@ -81,7 +82,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -105,7 +106,7 @@ " 'static_variables']" ] }, - "execution_count": 9, + "execution_count": 2, "metadata": {}, "output_type": "execute_result" } @@ -124,7 +125,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -132,7 +133,7 @@ "output_type": "stream", "text": [ "Default Temperature Constants:\n", - "{'stefan_boltzmann': 5.67e-08, 'cp_air': 1005.0, 'emissivity_water': 0.97, 'gravity': -9.806, 'a0': 6984.505294, 'a1': -188.903931, 'a2': 2.133357675, 'a3': -0.01288580973, 'a4': 4.393587233e-05, 'a5': -8.023923082e-08, 'a6': 6.136820929e-11, 'pb': 1600.0, 'cps': 1673.0, 'h2': 0.1, 'alphas': 0.0432, 'richardson_option': True}\n", + "{'stefan_boltzmann': 5.67e-08, 'cp_air': 1005.0, 'emissivity_water': 0.97, 'gravity': -9.806, 'a0': 6984.505294, 'a1': -188.903931, 'a2': 2.133357675, 'a3': -0.01288580973, 'a4': 4.393587233e-05, 'a5': -8.023923082e-08, 'a6': 6.136820929e-11, 'pb': 1600.0, 'cps': 1673.0, 'h2': 0.1, 'alphas': 0.0432, 'richardson_option': True, 'dt': 1}\n", "Default Meteorological Constants:\n", "{'air_temp_c': 20.0, 'q_solar': 400.0, 'sed_temp_c': 5.0, 'eair_mb': 1.0, 'pressure_mb': 1013.0, 'cloudiness': 0.1, 'wind_speed': 3.0, 'wind_a': 0.3, 'wind_b': 1.5, 'wind_c': 3.0, 'wind_kh_kw': 1.0}\n" ] @@ -154,7 +155,7 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -373,7 +374,13 @@ " description='The wind KH KW.',\n", " use='static',\n", ")\n", - "\n" + "Variable(\n", + " name='dt',\n", + " long_name='dt',\n", + " units='d',\n", + " description='calculation dt',\n", + " use='static',\n", + ")\n" ] } ], @@ -397,7 +404,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -492,7 +499,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -923,6 +930,7 @@ " q_longwave_down: xr.DataArray,\n", " q_solar: xr.DataArray,\n", " q_sediment: xr.DataArray,\n", + " dt: xr.DataArray,\n", ") -> xr.DataArray:\n", " \"\"\"Net heat flux (W/m^2).\n", "\n", @@ -933,6 +941,7 @@ " q_longwave_down: Downward longwave radiation (W/m^2)\n", " q_solar: Solar radiation (W/m^2)\n", " q_sediment: Sediment heat flux (W/m^2)\n", + " dt: Change in time (days)\n", " \"\"\"\n", " return (\n", " q_sensible +\n", @@ -941,7 +950,7 @@ " q_longwave_down -\n", " q_longwave_up -\n", " q_latent\n", - " )\n", + " ) * 86400 * dt\n", "\n", "\n", "def dTdt_water_c(\n", @@ -1002,7 +1011,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 7, "metadata": {}, "outputs": [ { @@ -1214,7 +1223,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -1259,19 +1268,20 @@ " 'cps': 1673,\n", " 'h2': 0.1,\n", " 'alphas': 0.0432,\n", - " 'richardson_option': True\n", + " 'richardson_option': True,\n", + " 'dt': 1/86400,\n", "}\n", "\n", - "time_step = 1\n", + "time_steps = 1\n", "\n", "tsm_model = cwm.tsm.EnergyBudget(\n", - " time_steps=time_step,\n", + " time_steps=time_steps,\n", " initial_state_values=initial_state_values, # mandatory\n", " temp_parameters=temp_parameters,\n", " meteo_parameters=meteo_parameters,\n", - " track_dynamic_variables=True, # default is true\n", + " track_dynamic_variables=True, # default is false\n", " hotstart_dataset=None, # default is None\n", - " time_dim='Seconds', # default is \"timestep\"\n", + " time_dim='Seconds', # default is \"timestep\"; update `dt` in temp_parameters as needed\n", ")" ] }, @@ -1284,7 +1294,7 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 9, "metadata": {}, "outputs": [ { @@ -1659,7 +1669,7 @@ " * Seconds (Seconds) int32 0 1\n", " * x (x) float64 1.0\n", " * y (y) float64 1.0\n", - "Data variables: (12/51)\n", + "Data variables: (12/52)\n", " water_temp_c (Seconds, x, y) float64 20.0 nan\n", " surface_area (Seconds, x, y) float64 1.0 nan\n", " volume (Seconds, x, y) float64 1.0 nan\n", @@ -1672,53 +1682,53 @@ " q_net (Seconds, x, y) float64 nan nan\n", " q_longwave_down (Seconds, x, y) float64 nan nan\n", " q_longwave_up (Seconds, x, y) float64 nan nan\n", - " dTdt_water_c (Seconds, x, y) float64 nan nan
    • Seconds
      PandasIndex
      PandasIndex(Index([0, 1], dtype='int32', name='Seconds'))
    • x
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='x'))
    • y
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='y'))
  • " ], "text/plain": [ "\n", @@ -1727,7 +1737,7 @@ " * Seconds (Seconds) int32 0 1\n", " * x (x) float64 1.0\n", " * y (y) float64 1.0\n", - "Data variables: (12/51)\n", + "Data variables: (12/52)\n", " water_temp_c (Seconds, x, y) float64 20.0 nan\n", " surface_area (Seconds, x, y) float64 1.0 nan\n", " volume (Seconds, x, y) float64 1.0 nan\n", @@ -1743,7 +1753,7 @@ " dTdt_water_c (Seconds, x, y) float64 nan nan" ] }, - "execution_count": 16, + "execution_count": 9, "metadata": {}, "output_type": "execute_result" } @@ -1761,7 +1771,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 10, "metadata": {}, "outputs": [ { @@ -2136,8 +2146,8 @@ " * Seconds (Seconds) int32 0 1\n", " * x (x) float64 1.0\n", " * y (y) float64 1.0\n", - "Data variables: (12/51)\n", - " water_temp_c (Seconds, x, y) float64 20.0 20.0\n", + "Data variables: (12/52)\n", + " water_temp_c (Seconds, x, y) float64 20.0 16.87\n", " surface_area (Seconds, x, y) float64 1.0 1.0\n", " volume (Seconds, x, y) float64 1.0 1.0\n", " use_sed_temp (x, y) bool True\n", @@ -2146,56 +2156,56 @@ " ... ...\n", " q_sensible (Seconds, x, y) float64 nan 0.0\n", " q_sediment (Seconds, x, y) float64 nan -401.5\n", - " q_net (Seconds, x, y) float64 nan -151.1\n", + " q_net (Seconds, x, y) float64 nan -1.305e+07\n", " q_longwave_down (Seconds, x, y) float64 nan 337.8\n", " q_longwave_up (Seconds, x, y) float64 nan 406.2\n", - " dTdt_water_c (Seconds, x, y) float64 nan -3.619e-05
    • Seconds
      PandasIndex
      PandasIndex(Index([0, 1], dtype='int32', name='Seconds'))
    • x
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='x'))
    • y
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='y'))
  • " ], "text/plain": [ "\n", @@ -2204,8 +2214,8 @@ " * Seconds (Seconds) int32 0 1\n", " * x (x) float64 1.0\n", " * y (y) float64 1.0\n", - "Data variables: (12/51)\n", - " water_temp_c (Seconds, x, y) float64 20.0 20.0\n", + "Data variables: (12/52)\n", + " water_temp_c (Seconds, x, y) float64 20.0 16.87\n", " surface_area (Seconds, x, y) float64 1.0 1.0\n", " volume (Seconds, x, y) float64 1.0 1.0\n", " use_sed_temp (x, y) bool True\n", @@ -2214,13 +2224,13 @@ " ... ...\n", " q_sensible (Seconds, x, y) float64 nan 0.0\n", " q_sediment (Seconds, x, y) float64 nan -401.5\n", - " q_net (Seconds, x, y) float64 nan -151.1\n", + " q_net (Seconds, x, y) float64 nan -1.305e+07\n", " q_longwave_down (Seconds, x, y) float64 nan 337.8\n", " q_longwave_up (Seconds, x, y) float64 nan 406.2\n", - " dTdt_water_c (Seconds, x, y) float64 nan -3.619e-05" + " dTdt_water_c (Seconds, x, y) float64 nan -3.127" ] }, - "execution_count": 17, + "execution_count": 10, "metadata": {}, "output_type": "execute_result" } @@ -2239,7 +2249,7 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -2268,7 +2278,7 @@ "q_longwave_up | ['water_temp_k', 'emissivity_water', 'stefan_boltzmann']\n", "surface_area | ['surface_area']\n", "volume | ['volume']\n", - "q_net | ['q_sensible', 'q_latent', 'q_longwave_up', 'q_longwave_down', 'q_solar', 'q_sediment']\n", + "q_net | ['q_sensible', 'q_latent', 'q_longwave_up', 'q_longwave_down', 'q_solar', 'q_sediment', 'dt']\n", "dTdt_water_c | ['q_net', 'surface_area', 'volume', 'density_water', 'cp_water']\n", "water_temp_c | ['water_temp_c', 'dTdt_water_c']\n" ] @@ -2280,6 +2290,1367 @@ " print(f'{i.name} | {sorter.get_process_args(i.process)}')" ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Using Model Defaults\n", + "The example above defines all inputs to the model. Users can alternatively use the defaults defined by the model, or optionally update a subset of the variables by defining `updateable_static_variables`. " + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Initializing from dicts...\n", + "Model initialized from input dicts successfully!.\n" + ] + } + ], + "source": [ + "# Define state values\n", + "initial_state_values = {\n", + " 'water_temp_c': 20,\n", + " 'surface_area': 1,\n", + " 'volume': 1\n", + "}\n", + "\n", + "# Set air temperature; use defaults for others\n", + "meteo_parameters = {\n", + " 'air_temp_c': 10,\n", + "}\n", + "\n", + "# Update dt, but otherwise \n", + "temp_parameters = {\n", + " 'dt': 30/86400, # 30 second timestep\n", + "}\n", + "\n", + "\n", + "time_steps = 2\n", + "\n", + "tsm_model = cwm.tsm.EnergyBudget(\n", + " time_steps=time_steps,\n", + " initial_state_values=initial_state_values, # mandatory, \n", + " updateable_static_variables=['air_temp_c'], # allow air temperature to change\n", + " temp_parameters=temp_parameters,\n", + " meteo_parameters=meteo_parameters,\n", + " use_sed_temp=False,\n", + " track_dynamic_variables=False,\n", + " time_dim='time'\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'stefan_boltzmann': 5.67e-08,\n", + " 'cp_air': 1005,\n", + " 'emissivity_water': 0.97,\n", + " 'gravity': 9.806,\n", + " 'a0': 6984.505294,\n", + " 'a1': -188.903931,\n", + " 'a2': 2.133357675,\n", + " 'a3': -0.01288581,\n", + " 'a4': 4.39359e-05,\n", + " 'a5': -8.02392e-08,\n", + " 'a6': 6.13682e-11,\n", + " 'pb': 1600,\n", + " 'cps': 1673,\n", + " 'h2': 0.1,\n", + " 'alphas': 0.0432,\n", + " 'richardson_option': True,\n", + " 'dt': 0.00034722222222222224}" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# confirm: defaults are used, but `dt` has updated\n", + "tsm_model.temp_parameters" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
    <xarray.DataArray 'air_temp_c' (x: 1, y: 1)>\n",
    +       "array([[10.]])\n",
    +       "Coordinates:\n",
    +       "    time     int32 0\n",
    +       "  * x        (x) float64 1.0\n",
    +       "  * y        (y) float64 1.0\n",
    +       "Attributes:\n",
    +       "    long_name:    Air Temperature\n",
    +       "    units:        C\n",
    +       "    description:  The air temperature.
    " + ], + "text/plain": [ + "\n", + "array([[10.]])\n", + "Coordinates:\n", + " time int32 0\n", + " * x (x) float64 1.0\n", + " * y (y) float64 1.0\n", + "Attributes:\n", + " long_name: Air Temperature\n", + " units: C\n", + " description: The air temperature." + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tsm_model.dataset.air_temp_c.isel(time=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
    <xarray.Dataset>\n",
    +       "Dimensions:            (time: 3, x: 1, y: 1)\n",
    +       "Coordinates:\n",
    +       "  * time               (time) int32 0 1 2\n",
    +       "  * x                  (x) float64 1.0\n",
    +       "  * y                  (y) float64 1.0\n",
    +       "Data variables: (12/32)\n",
    +       "    water_temp_c       (time, x, y) float64 20.0 20.0 nan\n",
    +       "    surface_area       (time, x, y) float64 1.0 1.0 nan\n",
    +       "    volume             (time, x, y) float64 1.0 1.0 nan\n",
    +       "    air_temp_c         (time, x, y) float64 10.0 10.5 nan\n",
    +       "    use_sed_temp       (x, y) bool False\n",
    +       "    stefan_boltzmann   (x, y) float64 5.67e-08\n",
    +       "    ...                 ...\n",
    +       "    wind_speed         (x, y) int32 3\n",
    +       "    wind_a             (x, y) float64 0.3\n",
    +       "    wind_b             (x, y) float64 1.5\n",
    +       "    wind_c             (x, y) int32 1\n",
    +       "    wind_kh_kw         (x, y) int32 1\n",
    +       "    dt                 (x, y) float64 0.0003472
    " + ], + "text/plain": [ + "\n", + "Dimensions: (time: 3, x: 1, y: 1)\n", + "Coordinates:\n", + " * time (time) int32 0 1 2\n", + " * x (x) float64 1.0\n", + " * y (y) float64 1.0\n", + "Data variables: (12/32)\n", + " water_temp_c (time, x, y) float64 20.0 20.0 nan\n", + " surface_area (time, x, y) float64 1.0 1.0 nan\n", + " volume (time, x, y) float64 1.0 1.0 nan\n", + " air_temp_c (time, x, y) float64 10.0 10.5 nan\n", + " use_sed_temp (x, y) bool False\n", + " stefan_boltzmann (x, y) float64 5.67e-08\n", + " ... ...\n", + " wind_speed (x, y) int32 3\n", + " wind_a (x, y) float64 0.3\n", + " wind_b (x, y) float64 1.5\n", + " wind_c (x, y) int32 1\n", + " wind_kh_kw (x, y) int32 1\n", + " dt (x, y) float64 0.0003472" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# update air temperature\n", + "updated_state_values = {\n", + " 'air_temp_c': xr.full_like(\n", + " tsm_model.dataset.air_temp_c.isel(time=0), \n", + " 10.5\n", + " )\n", + "}\n", + "\n", + "tsm_model.increment_timestep(updated_state_values)" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
    <xarray.DataArray 'air_temp_c' (time: 3, x: 1, y: 1)>\n",
    +       "array([[[10. ]],\n",
    +       "\n",
    +       "       [[10.5]],\n",
    +       "\n",
    +       "       [[ nan]]])\n",
    +       "Coordinates:\n",
    +       "  * time     (time) int32 0 1 2\n",
    +       "  * x        (x) float64 1.0\n",
    +       "  * y        (y) float64 1.0\n",
    +       "Attributes:\n",
    +       "    long_name:    Air Temperature\n",
    +       "    units:        C\n",
    +       "    description:  The air temperature.
    " + ], + "text/plain": [ + "\n", + "array([[[10. ]],\n", + "\n", + " [[10.5]],\n", + "\n", + " [[ nan]]])\n", + "Coordinates:\n", + " * time (time) int32 0 1 2\n", + " * x (x) float64 1.0\n", + " * y (y) float64 1.0\n", + "Attributes:\n", + " long_name: Air Temperature\n", + " units: C\n", + " description: The air temperature." + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# confirm we updated air temperature\n", + "tsm_model.dataset.air_temp_c" + ] + }, { "cell_type": "markdown", "metadata": {}, diff --git a/examples/model_architecture.ipynb b/examples/model_architecture.ipynb index d0c25da..3279125 100644 --- a/examples/model_architecture.ipynb +++ b/examples/model_architecture.ipynb @@ -47,6 +47,14 @@ "tags": [] }, "outputs": [ + { + "data": { + "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n var py_version = '3.3.1'.replace('rc', '-rc.').replace('.dev', '-dev.');\n var is_dev = py_version.indexOf(\"+\") !== -1 || py_version.indexOf(\"-\") !== -1;\n var reloading = false;\n var Bokeh = root.Bokeh;\n var bokeh_loaded = Bokeh != null && (Bokeh.version === py_version || (Bokeh.versions !== undefined && Bokeh.versions.has(py_version)));\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n run_callbacks();\n return null;\n }\n if (!reloading) {\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'jspanel': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/jspanel', 'jspanel-modal': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal', 'jspanel-tooltip': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip', 'jspanel-hint': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint', 'jspanel-layout': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout', 'jspanel-contextmenu': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu', 'jspanel-dock': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock', 'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@7.2.3/dist/gridstack-all', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'jspanel': {'exports': 'jsPanel'}, 'gridstack': {'exports': 'GridStack'}}});\n require([\"jspanel\"], function(jsPanel) {\n\twindow.jsPanel = jsPanel\n\ton_load()\n })\n require([\"jspanel-modal\"], function() {\n\ton_load()\n })\n require([\"jspanel-tooltip\"], function() {\n\ton_load()\n })\n require([\"jspanel-hint\"], function() {\n\ton_load()\n })\n require([\"jspanel-layout\"], function() {\n\ton_load()\n })\n require([\"jspanel-contextmenu\"], function() {\n\ton_load()\n })\n require([\"jspanel-dock\"], function() {\n\ton_load()\n })\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 9;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n var existing_stylesheets = []\n var links = document.getElementsByTagName('link')\n for (var i = 0; i < links.length; i++) {\n var link = links[i]\n if (link.href != null) {\n\texisting_stylesheets.push(link.href)\n }\n }\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n if (existing_stylesheets.indexOf(url) !== -1) {\n\ton_load()\n\tcontinue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } if (((window['jsPanel'] !== undefined) && (!(window['jsPanel'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.3.1/dist/bundled/floatpanel/jspanel4@4.12.0/dist/jspanel.js', 'https://cdn.holoviz.org/panel/1.3.1/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal.js', 'https://cdn.holoviz.org/panel/1.3.1/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip.js', 'https://cdn.holoviz.org/panel/1.3.1/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint.js', 'https://cdn.holoviz.org/panel/1.3.1/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout.js', 'https://cdn.holoviz.org/panel/1.3.1/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu.js', 'https://cdn.holoviz.org/panel/1.3.1/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.3.1/dist/bundled/gridstack/gridstack@7.2.3/dist/gridstack-all.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.3.1/dist/bundled/notificationarea/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } var existing_scripts = []\n var scripts = document.getElementsByTagName('script')\n for (var i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n\texisting_scripts.push(script.src)\n }\n }\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n var url = js_exports[name];\n if (skip.indexOf(url) >= 0 || root[name] != null) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.3.1.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.3.1.min.js\", \"https://cdn.holoviz.org/panel/1.3.1/dist/panel.min.js\"];\n var js_modules = [];\n var js_exports = {};\n var css_urls = [];\n var inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n\tvar NewBokeh = root.Bokeh;\n\tif (Bokeh.versions === undefined) {\n\t Bokeh.versions = new Map();\n\t}\n\tif (NewBokeh.version !== Bokeh.version) {\n\t Bokeh.versions.set(NewBokeh.version, NewBokeh)\n\t}\n\troot.Bokeh = Bokeh;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n Bokeh = root.Bokeh;\n bokeh_loaded = Bokeh != null && (Bokeh.version === py_version || (Bokeh.versions !== undefined && Bokeh.versions.has(py_version)));\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n if (!reloading && (!bokeh_loaded || is_dev)) {\n\troot.Bokeh = undefined;\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n\tconsole.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n\trun_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));", + "application/vnd.holoviews_load.v0+json": "" + }, + "metadata": {}, + "output_type": "display_data" + }, { "data": { "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n", @@ -78,6 +86,85 @@ }, "metadata": {}, "output_type": "display_data" + }, + { + "data": { + "application/vnd.holoviews_exec.v0+json": "", + "text/html": [ + "
    \n", + "
    \n", + "
    \n", + "" + ] + }, + "metadata": { + "application/vnd.holoviews_exec.v0+json": { + "id": "p1002" + } + }, + "output_type": "display_data" } ], "source": [ @@ -112,6 +199,7 @@ " '__spec__',\n", " '__version__',\n", " 'base',\n", + " 'nsm1',\n", " 'shared',\n", " 'sorter',\n", " 'tsm',\n", @@ -170,60 +258,640 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 11, "id": "a5d34d2d-03a6-41e1-92fc-9e6fba72d6f5", "metadata": { "tags": [] }, "outputs": [ - { - "data": { - "application/javascript": "(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n var py_version = '3.2.2'.replace('rc', '-rc.').replace('.dev', '-dev.');\n var is_dev = py_version.indexOf(\"+\") !== -1 || py_version.indexOf(\"-\") !== -1;\n var reloading = false;\n var Bokeh = root.Bokeh;\n var bokeh_loaded = Bokeh != null && (Bokeh.version === py_version || (Bokeh.versions !== undefined && Bokeh.versions.has(py_version)));\n\n if (typeof (root._bokeh_timeout) === \"undefined\" || force) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks;\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, js_modules, js_exports, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n if (js_modules == null) js_modules = [];\n if (js_exports == null) js_exports = {};\n\n root._bokeh_onload_callbacks.push(callback);\n\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls.length === 0 && js_modules.length === 0 && Object.keys(js_exports).length === 0) {\n run_callbacks();\n return null;\n }\n if (!reloading) {\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n }\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n window._bokeh_on_load = on_load\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n var skip = [];\n if (window.requirejs) {\n window.requirejs.config({'packages': {}, 'paths': {'jspanel': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/jspanel', 'jspanel-modal': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal', 'jspanel-tooltip': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip', 'jspanel-hint': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint', 'jspanel-layout': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout', 'jspanel-contextmenu': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu', 'jspanel-dock': 'https://cdn.jsdelivr.net/npm/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock', 'gridstack': 'https://cdn.jsdelivr.net/npm/gridstack@7.2.3/dist/gridstack-all', 'notyf': 'https://cdn.jsdelivr.net/npm/notyf@3/notyf.min'}, 'shim': {'jspanel': {'exports': 'jsPanel'}, 'gridstack': {'exports': 'GridStack'}}});\n require([\"jspanel\"], function(jsPanel) {\n\twindow.jsPanel = jsPanel\n\ton_load()\n })\n require([\"jspanel-modal\"], function() {\n\ton_load()\n })\n require([\"jspanel-tooltip\"], function() {\n\ton_load()\n })\n require([\"jspanel-hint\"], function() {\n\ton_load()\n })\n require([\"jspanel-layout\"], function() {\n\ton_load()\n })\n require([\"jspanel-contextmenu\"], function() {\n\ton_load()\n })\n require([\"jspanel-dock\"], function() {\n\ton_load()\n })\n require([\"gridstack\"], function(GridStack) {\n\twindow.GridStack = GridStack\n\ton_load()\n })\n require([\"notyf\"], function() {\n\ton_load()\n })\n root._bokeh_is_loading = css_urls.length + 9;\n } else {\n root._bokeh_is_loading = css_urls.length + js_urls.length + js_modules.length + Object.keys(js_exports).length;\n }\n\n var existing_stylesheets = []\n var links = document.getElementsByTagName('link')\n for (var i = 0; i < links.length; i++) {\n var link = links[i]\n if (link.href != null) {\n\texisting_stylesheets.push(link.href)\n }\n }\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n if (existing_stylesheets.indexOf(url) !== -1) {\n\ton_load()\n\tcontinue;\n }\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n } if (((window['jsPanel'] !== undefined) && (!(window['jsPanel'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.2.3/dist/bundled/floatpanel/jspanel4@4.12.0/dist/jspanel.js', 'https://cdn.holoviz.org/panel/1.2.3/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/modal/jspanel.modal.js', 'https://cdn.holoviz.org/panel/1.2.3/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/tooltip/jspanel.tooltip.js', 'https://cdn.holoviz.org/panel/1.2.3/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/hint/jspanel.hint.js', 'https://cdn.holoviz.org/panel/1.2.3/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/layout/jspanel.layout.js', 'https://cdn.holoviz.org/panel/1.2.3/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/contextmenu/jspanel.contextmenu.js', 'https://cdn.holoviz.org/panel/1.2.3/dist/bundled/floatpanel/jspanel4@4.12.0/dist/extensions/dock/jspanel.dock.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['GridStack'] !== undefined) && (!(window['GridStack'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.2.3/dist/bundled/gridstack/gridstack@7.2.3/dist/gridstack-all.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } if (((window['Notyf'] !== undefined) && (!(window['Notyf'] instanceof HTMLElement))) || window.requirejs) {\n var urls = ['https://cdn.holoviz.org/panel/1.2.3/dist/bundled/notificationarea/notyf@3/notyf.min.js'];\n for (var i = 0; i < urls.length; i++) {\n skip.push(urls[i])\n }\n } var existing_scripts = []\n var scripts = document.getElementsByTagName('script')\n for (var i = 0; i < scripts.length; i++) {\n var script = scripts[i]\n if (script.src != null) {\n\texisting_scripts.push(script.src)\n }\n }\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (var i = 0; i < js_modules.length; i++) {\n var url = js_modules[i];\n if (skip.indexOf(url) !== -1 || existing_scripts.indexOf(url) !== -1) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n for (const name in js_exports) {\n var url = js_exports[name];\n if (skip.indexOf(url) >= 0 || root[name] != null) {\n\tif (!window.requirejs) {\n\t on_load();\n\t}\n\tcontinue;\n }\n var element = document.createElement('script');\n element.onerror = on_error;\n element.async = false;\n element.type = \"module\";\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n element.textContent = `\n import ${name} from \"${url}\"\n window.${name} = ${name}\n window._bokeh_on_load()\n `\n document.head.appendChild(element);\n }\n if (!js_urls.length && !js_modules.length) {\n on_load()\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-3.2.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-3.2.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.2.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.2.2.min.js\", \"https://cdn.holoviz.org/panel/1.2.3/dist/panel.min.js\"];\n var js_modules = [];\n var js_exports = {};\n var css_urls = [];\n var inline_js = [ function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\nfunction(Bokeh) {} // ensure no trailing comma for IE\n ];\n\n function run_inline_js() {\n if ((root.Bokeh !== undefined) || (force === true)) {\n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n // Cache old bokeh versions\n if (Bokeh != undefined && !reloading) {\n\tvar NewBokeh = root.Bokeh;\n\tif (Bokeh.versions === undefined) {\n\t Bokeh.versions = new Map();\n\t}\n\tif (NewBokeh.version !== Bokeh.version) {\n\t Bokeh.versions.set(NewBokeh.version, NewBokeh)\n\t}\n\troot.Bokeh = Bokeh;\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n }\n root._bokeh_is_initializing = false\n }\n\n function load_or_wait() {\n // Implement a backoff loop that tries to ensure we do not load multiple\n // versions of Bokeh and its dependencies at the same time.\n // In recent versions we use the root._bokeh_is_initializing flag\n // to determine whether there is an ongoing attempt to initialize\n // bokeh, however for backward compatibility we also try to ensure\n // that we do not start loading a newer (Panel>=1.0 and Bokeh>3) version\n // before older versions are fully initialized.\n if (root._bokeh_is_initializing && Date.now() > root._bokeh_timeout) {\n root._bokeh_is_initializing = false;\n root._bokeh_onload_callbacks = undefined;\n console.log(\"Bokeh: BokehJS was loaded multiple times but one version failed to initialize.\");\n load_or_wait();\n } else if (root._bokeh_is_initializing || (typeof root._bokeh_is_initializing === \"undefined\" && root._bokeh_onload_callbacks !== undefined)) {\n setTimeout(load_or_wait, 100);\n } else {\n Bokeh = root.Bokeh;\n bokeh_loaded = Bokeh != null && (Bokeh.version === py_version || (Bokeh.versions !== undefined && Bokeh.versions.has(py_version)));\n root._bokeh_is_initializing = true\n root._bokeh_onload_callbacks = []\n if (!reloading && (!bokeh_loaded || is_dev)) {\n\troot.Bokeh = undefined;\n }\n load_libs(css_urls, js_urls, js_modules, js_exports, function() {\n\tconsole.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n\trun_inline_js();\n });\n }\n }\n // Give older versions of the autoload script a head-start to ensure\n // they initialize before we start loading newer version.\n setTimeout(load_or_wait, 100)\n}(window));", - "application/vnd.holoviews_load.v0+json": "" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "application/javascript": "\nif ((window.PyViz === undefined) || (window.PyViz instanceof HTMLElement)) {\n window.PyViz = {comms: {}, comm_status:{}, kernels:{}, receivers: {}, plot_index: []}\n}\n\n\n function JupyterCommManager() {\n }\n\n JupyterCommManager.prototype.register_target = function(plot_id, comm_id, msg_handler) {\n if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n comm_manager.register_target(comm_id, function(comm) {\n comm.on_msg(msg_handler);\n });\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n window.PyViz.kernels[plot_id].registerCommTarget(comm_id, function(comm) {\n comm.onMsg = msg_handler;\n });\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n google.colab.kernel.comms.registerTarget(comm_id, (comm) => {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n console.log(message)\n var content = {data: message.data, comm_id};\n var buffers = []\n for (var buffer of message.buffers || []) {\n buffers.push(new DataView(buffer))\n }\n var metadata = message.metadata || {};\n var msg = {content, buffers, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n })\n }\n }\n\n JupyterCommManager.prototype.get_client_comm = function(plot_id, comm_id, msg_handler) {\n if (comm_id in window.PyViz.comms) {\n return window.PyViz.comms[comm_id];\n } else if (window.comm_manager || ((window.Jupyter !== undefined) && (Jupyter.notebook.kernel != null))) {\n var comm_manager = window.comm_manager || Jupyter.notebook.kernel.comm_manager;\n var comm = comm_manager.new_comm(comm_id, {}, {}, {}, comm_id);\n if (msg_handler) {\n comm.on_msg(msg_handler);\n }\n } else if ((plot_id in window.PyViz.kernels) && (window.PyViz.kernels[plot_id])) {\n var comm = window.PyViz.kernels[plot_id].connectToComm(comm_id);\n comm.open();\n if (msg_handler) {\n comm.onMsg = msg_handler;\n }\n } else if (typeof google != 'undefined' && google.colab.kernel != null) {\n var comm_promise = google.colab.kernel.comms.open(comm_id)\n comm_promise.then((comm) => {\n window.PyViz.comms[comm_id] = comm;\n if (msg_handler) {\n var messages = comm.messages[Symbol.asyncIterator]();\n function processIteratorResult(result) {\n var message = result.value;\n var content = {data: message.data};\n var metadata = message.metadata || {comm_id};\n var msg = {content, metadata}\n msg_handler(msg);\n return messages.next().then(processIteratorResult);\n }\n return messages.next().then(processIteratorResult);\n }\n }) \n var sendClosure = (data, metadata, buffers, disposeOnDone) => {\n return comm_promise.then((comm) => {\n comm.send(data, metadata, buffers, disposeOnDone);\n });\n };\n var comm = {\n send: sendClosure\n };\n }\n window.PyViz.comms[comm_id] = comm;\n return comm;\n }\n window.PyViz.comm_manager = new JupyterCommManager();\n \n\n\nvar JS_MIME_TYPE = 'application/javascript';\nvar HTML_MIME_TYPE = 'text/html';\nvar EXEC_MIME_TYPE = 'application/vnd.holoviews_exec.v0+json';\nvar CLASS_NAME = 'output';\n\n/**\n * Render data to the DOM node\n */\nfunction render(props, node) {\n var div = document.createElement(\"div\");\n var script = document.createElement(\"script\");\n node.appendChild(div);\n node.appendChild(script);\n}\n\n/**\n * Handle when a new output is added\n */\nfunction handle_add_output(event, handle) {\n var output_area = handle.output_area;\n var output = handle.output;\n if ((output.data == undefined) || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n return\n }\n var id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n if (id !== undefined) {\n var nchildren = toinsert.length;\n var html_node = toinsert[nchildren-1].children[0];\n html_node.innerHTML = output.data[HTML_MIME_TYPE];\n var scripts = [];\n var nodelist = html_node.querySelectorAll(\"script\");\n for (var i in nodelist) {\n if (nodelist.hasOwnProperty(i)) {\n scripts.push(nodelist[i])\n }\n }\n\n scripts.forEach( function (oldScript) {\n var newScript = document.createElement(\"script\");\n var attrs = [];\n var nodemap = oldScript.attributes;\n for (var j in nodemap) {\n if (nodemap.hasOwnProperty(j)) {\n attrs.push(nodemap[j])\n }\n }\n attrs.forEach(function(attr) { newScript.setAttribute(attr.name, attr.value) });\n newScript.appendChild(document.createTextNode(oldScript.innerHTML));\n oldScript.parentNode.replaceChild(newScript, oldScript);\n });\n if (JS_MIME_TYPE in output.data) {\n toinsert[nchildren-1].children[1].textContent = output.data[JS_MIME_TYPE];\n }\n output_area._hv_plot_id = id;\n if ((window.Bokeh !== undefined) && (id in Bokeh.index)) {\n window.PyViz.plot_index[id] = Bokeh.index[id];\n } else {\n window.PyViz.plot_index[id] = null;\n }\n } else if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n var bk_div = document.createElement(\"div\");\n bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n var script_attrs = bk_div.children[0].attributes;\n for (var i = 0; i < script_attrs.length; i++) {\n toinsert[toinsert.length - 1].childNodes[1].setAttribute(script_attrs[i].name, script_attrs[i].value);\n }\n // store reference to server id on output_area\n output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n }\n}\n\n/**\n * Handle when an output is cleared or removed\n */\nfunction handle_clear_output(event, handle) {\n var id = handle.cell.output_area._hv_plot_id;\n var server_id = handle.cell.output_area._bokeh_server_id;\n if (((id === undefined) || !(id in PyViz.plot_index)) && (server_id !== undefined)) { return; }\n var comm = window.PyViz.comm_manager.get_client_comm(\"hv-extension-comm\", \"hv-extension-comm\", function () {});\n if (server_id !== null) {\n comm.send({event_type: 'server_delete', 'id': server_id});\n return;\n } else if (comm !== null) {\n comm.send({event_type: 'delete', 'id': id});\n }\n delete PyViz.plot_index[id];\n if ((window.Bokeh !== undefined) & (id in window.Bokeh.index)) {\n var doc = window.Bokeh.index[id].model.document\n doc.clear();\n const i = window.Bokeh.documents.indexOf(doc);\n if (i > -1) {\n window.Bokeh.documents.splice(i, 1);\n }\n }\n}\n\n/**\n * Handle kernel restart event\n */\nfunction handle_kernel_cleanup(event, handle) {\n delete PyViz.comms[\"hv-extension-comm\"];\n window.PyViz.plot_index = {}\n}\n\n/**\n * Handle update_display_data messages\n */\nfunction handle_update_output(event, handle) {\n handle_clear_output(event, {cell: {output_area: handle.output_area}})\n handle_add_output(event, handle)\n}\n\nfunction register_renderer(events, OutputArea) {\n function append_mime(data, metadata, element) {\n // create a DOM node to render to\n var toinsert = this.create_output_subarea(\n metadata,\n CLASS_NAME,\n EXEC_MIME_TYPE\n );\n this.keyboard_manager.register_events(toinsert);\n // Render to node\n var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n render(props, toinsert[0]);\n element.append(toinsert);\n return toinsert\n }\n\n events.on('output_added.OutputArea', handle_add_output);\n events.on('output_updated.OutputArea', handle_update_output);\n events.on('clear_output.CodeCell', handle_clear_output);\n events.on('delete.Cell', handle_clear_output);\n events.on('kernel_ready.Kernel', handle_kernel_cleanup);\n\n OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n safe: true,\n index: 0\n });\n}\n\nif (window.Jupyter !== undefined) {\n try {\n var events = require('base/js/events');\n var OutputArea = require('notebook/js/outputarea').OutputArea;\n if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n register_renderer(events, OutputArea);\n }\n } catch(err) {\n }\n}\n", - "application/vnd.holoviews_load.v0+json": "" - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Initializing from dicts...\n", - "Model initialized from input dicts successfully!.\n" - ] - }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Initializing from dicts...\n", + "Model initialized from input dicts successfully!.\n" + ] + }, + { + "data": { + "text/html": [ + "
    \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
    <xarray.Dataset>\n",
    +       "Dimensions:            (seconds: 4, x: 1, y: 1)\n",
    +       "Coordinates:\n",
    +       "  * seconds            (seconds) int32 0 1 2 3\n",
    +       "  * x                  (x) float64 1.0\n",
    +       "  * y                  (y) float64 1.0\n",
    +       "Data variables: (12/52)\n",
    +       "    water_temp_c       (seconds, x, y) float64 20.0 20.0 nan nan\n",
    +       "    surface_area       (seconds, x, y) float64 1.0 1.0 nan nan\n",
    +       "    volume             (seconds, x, y) float64 1.0 1.0 nan nan\n",
    +       "    use_sed_temp       (x, y) bool True\n",
    +       "    stefan_boltzmann   (x, y) float64 5.67e-08\n",
    +       "    cp_air             (x, y) int32 1005\n",
    +       "    ...                 ...\n",
    +       "    q_sensible         (seconds, x, y) float64 nan 0.0 nan nan\n",
    +       "    q_sediment         (seconds, x, y) float64 nan -401.5 nan nan\n",
    +       "    q_net              (seconds, x, y) float64 nan -151.1 nan nan\n",
    +       "    q_longwave_down    (seconds, x, y) float64 nan 337.8 nan nan\n",
    +       "    q_longwave_up      (seconds, x, y) float64 nan 406.2 nan nan\n",
    +       "    dTdt_water_c       (seconds, x, y) float64 nan -3.619e-05 nan nan
    " + ], + "text/plain": [ + "\n", + "Dimensions: (seconds: 4, x: 1, y: 1)\n", + "Coordinates:\n", + " * seconds (seconds) int32 0 1 2 3\n", + " * x (x) float64 1.0\n", + " * y (y) float64 1.0\n", + "Data variables: (12/52)\n", + " water_temp_c (seconds, x, y) float64 20.0 20.0 nan nan\n", + " surface_area (seconds, x, y) float64 1.0 1.0 nan nan\n", + " volume (seconds, x, y) float64 1.0 1.0 nan nan\n", + " use_sed_temp (x, y) bool True\n", + " stefan_boltzmann (x, y) float64 5.67e-08\n", + " cp_air (x, y) int32 1005\n", + " ... ...\n", + " q_sensible (seconds, x, y) float64 nan 0.0 nan nan\n", + " q_sediment (seconds, x, y) float64 nan -401.5 nan nan\n", + " q_net (seconds, x, y) float64 nan -151.1 nan nan\n", + " q_longwave_down (seconds, x, y) float64 nan 337.8 nan nan\n", + " q_longwave_up (seconds, x, y) float64 nan 406.2 nan nan\n", + " dTdt_water_c (seconds, x, y) float64 nan -3.619e-05 nan nan" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import clearwater_modules as cwm\n", + "import clearwater_modules.sorter as sorter\n", + "import numba\n", + "import random\n", + "import hvplot.xarray\n", + "import warnings\n", + "warnings.filterwarnings(\"ignore\")\n", + "\n", + "initial_state_values = {'water_temp_c': 20, 'surface_area': 1, 'volume': 1}\n", + "meteo_parameters = {\n", + " 'air_temp_c': 20,\n", + " 'q_solar': 400,\n", + " 'sed_temp_c': 5,\n", + " 'eair_mb': 1,\n", + " 'pressure_mb': 1013,\n", + " 'cloudiness': .1,\n", + " 'wind_speed': 3,\n", + " 'wind_a': .3,\n", + " 'wind_b': 1.5,\n", + " 'wind_c': 1,\n", + " 'wind_kh_kw': 1\n", + "}\n", + "\n", + "temp_parameters = {\n", + " 'use_sed_temp': False,\n", + " 'stefan_boltzmann': 0.0000000567,\n", + " 'cp_air': 1005,\n", + " 'emissivity_water': 0.97,\n", + " 'gravity': 9.806,\n", + " 'a0': 6984.505294,\n", + " 'a1': -188.903931,\n", + " 'a2': 2.133357675,\n", + " 'a3': -0.01288581,\n", + " 'a4': 0.0000439359,\n", + " 'a5': -.0000000802392,\n", + " 'a6': .0000000000613682,\n", + " 'pb': 1600,\n", + " 'cps': 1673,\n", + " 'h2': 0.1,\n", + " 'alphas': 0.0432,\n", + " 'richardson_option': True,\n", + " 'dt': 1/86400,\n", + "}\n", + "\n", + "time_step = 3\n", + "\n", + "tsm_model = cwm.tsm.EnergyBudget(\n", + " time_steps=time_step,\n", + " initial_state_values=initial_state_values, # mandatory\n", + " temp_parameters=temp_parameters,\n", + " meteo_parameters=meteo_parameters,\n", + " track_dynamic_variables=True, # default is true\n", + " hotstart_dataset=None, # default is None\n", + " time_dim='seconds', # default is \"timestep\"\n", + ")\n", + "\n", + "tsm_model.increment_timestep()\n", + "tsm_model.dataset\n" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "644f6baf", + "metadata": {}, + "outputs": [ { "data": { "text/html": [ @@ -591,195 +1259,192 @@ " fill: currentColor;\n", "}\n", "
    <xarray.Dataset>\n",
    -       "Dimensions:            (tsm_time_step: 2, x: 1, y: 1)\n",
    +       "Dimensions:            (seconds: 4, x: 1, y: 1)\n",
            "Coordinates:\n",
    -       "  * tsm_time_step      (tsm_time_step) int32 0 1\n",
    +       "  * seconds            (seconds) int32 0 1 2 3\n",
            "  * x                  (x) float64 1.0\n",
            "  * y                  (y) float64 1.0\n",
    -       "Data variables: (12/51)\n",
    -       "    water_temp_c       (tsm_time_step, x, y) float64 20.0 20.0\n",
    -       "    surface_area       (tsm_time_step, x, y) float64 1.0 1.0\n",
    -       "    volume             (tsm_time_step, x, y) float64 1.0 1.0\n",
    +       "Data variables: (12/52)\n",
    +       "    water_temp_c       (seconds, x, y) float64 20.0 20.0 20.0 nan\n",
    +       "    surface_area       (seconds, x, y) float64 1.0 1.0 1.0 nan\n",
    +       "    volume             (seconds, x, y) float64 1.0 1.0 1.0 nan\n",
            "    use_sed_temp       (x, y) bool True\n",
            "    stefan_boltzmann   (x, y) float64 5.67e-08\n",
            "    cp_air             (x, y) int32 1005\n",
            "    ...                 ...\n",
    -       "    q_sensible         (tsm_time_step, x, y) float64 nan 0.0\n",
    -       "    q_sediment         (tsm_time_step, x, y) float64 nan -401.5\n",
    -       "    q_net              (tsm_time_step, x, y) float64 nan -151.1\n",
    -       "    q_longwave_down    (tsm_time_step, x, y) float64 nan 337.8\n",
    -       "    q_longwave_up      (tsm_time_step, x, y) float64 nan 406.2\n",
    -       "    dTdt_water_c       (tsm_time_step, x, y) float64 nan -3.619e-05
    • seconds
      PandasIndex
      PandasIndex(Index([0, 1, 2, 3], dtype='int32', name='seconds'))
    • x
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='x'))
    • y
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='y'))
  • " ], "text/plain": [ "\n", - "Dimensions: (tsm_time_step: 2, x: 1, y: 1)\n", + "Dimensions: (seconds: 4, x: 1, y: 1)\n", "Coordinates:\n", - " * tsm_time_step (tsm_time_step) int32 0 1\n", + " * seconds (seconds) int32 0 1 2 3\n", " * x (x) float64 1.0\n", " * y (y) float64 1.0\n", - "Data variables: (12/51)\n", - " water_temp_c (tsm_time_step, x, y) float64 20.0 20.0\n", - " surface_area (tsm_time_step, x, y) float64 1.0 1.0\n", - " volume (tsm_time_step, x, y) float64 1.0 1.0\n", + "Data variables: (12/52)\n", + " water_temp_c (seconds, x, y) float64 20.0 20.0 20.0 nan\n", + " surface_area (seconds, x, y) float64 1.0 1.0 1.0 nan\n", + " volume (seconds, x, y) float64 1.0 1.0 1.0 nan\n", " use_sed_temp (x, y) bool True\n", " stefan_boltzmann (x, y) float64 5.67e-08\n", " cp_air (x, y) int32 1005\n", " ... ...\n", - " q_sensible (tsm_time_step, x, y) float64 nan 0.0\n", - " q_sediment (tsm_time_step, x, y) float64 nan -401.5\n", - " q_net (tsm_time_step, x, y) float64 nan -151.1\n", - " q_longwave_down (tsm_time_step, x, y) float64 nan 337.8\n", - " q_longwave_up (tsm_time_step, x, y) float64 nan 406.2\n", - " dTdt_water_c (tsm_time_step, x, y) float64 nan -3.619e-05" + " q_sensible (seconds, x, y) float64 nan 0.0 0.000118 nan\n", + " q_sediment (seconds, x, y) float64 nan -401.5 -401.5 nan\n", + " q_net (seconds, x, y) float64 nan -151.1 -151.1 nan\n", + " q_longwave_down (seconds, x, y) float64 nan 337.8 337.8 nan\n", + " q_longwave_up (seconds, x, y) float64 nan 406.2 406.2 nan\n", + " dTdt_water_c (seconds, x, y) float64 nan -3.619e-05 -3.619e-05 nan" ] }, - "execution_count": 2, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], - "source": [ - "import clearwater_modules as cwm\n", - "import clearwater_modules.sorter as sorter\n", - "import numba\n", - "import random\n", - "import hvplot.xarray\n", - "import warnings\n", - "warnings.filterwarnings(\"ignore\")\n", - "\n", - "initial_state_values = {'water_temp_c': 20, 'surface_area': 1, 'volume': 1}\n", - "meteo_parameters = {\n", - " 'air_temp_c': 20,\n", - " 'q_solar': 400,\n", - " 'sed_temp_c': 5,\n", - " 'eair_mb': 1,\n", - " 'pressure_mb': 1013,\n", - " 'cloudiness': .1,\n", - " 'wind_speed': 3,\n", - " 'wind_a': .3,\n", - " 'wind_b': 1.5,\n", - " 'wind_c': 1,\n", - " 'wind_kh_kw': 1\n", - "}\n", - "\n", - "temp_parameters = {\n", - " 'use_sed_temp': False,\n", - " 'stefan_boltzmann': 0.0000000567,\n", - " 'cp_air': 1005,\n", - " 'emissivity_water': 0.97,\n", - " 'gravity': 9.806,\n", - " 'a0': 6984.505294,\n", - " 'a1': -188.903931,\n", - " 'a2': 2.133357675,\n", - " 'a3': -0.01288581,\n", - " 'a4': 0.0000439359,\n", - " 'a5': -.0000000802392,\n", - " 'a6': .0000000000613682,\n", - " 'pb': 1600,\n", - " 'cps': 1673,\n", - " 'h2': 0.1,\n", - " 'alphas': 0.0432,\n", - " 'richardson_option': True\n", - "}\n", - "\n", - "time_step = 1\n", - "\n", - "tsm_model = cwm.tsm.EnergyBudget(\n", - " time_steps=time_step,\n", - " initial_state_values=initial_state_values, # mandatory\n", - " temp_parameters=temp_parameters,\n", - " meteo_parameters=meteo_parameters,\n", - " track_dynamic_variables=True, # default is true\n", - " hotstart_dataset=None, # default is None\n", - " time_dim='tsm_time_step', # default is \"timestep\"\n", - ")\n", - "\n", - "tsm_model.increment_timestep()\n", - "tsm_model.dataset\n" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "id": "644f6baf", - "metadata": {}, - "outputs": [ - { - "ename": "KeyError", - "evalue": "\"not all values found in index 'tsm_time_step'. Try setting the `method` keyword argument (example: method='nearest').\"", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[1;32mc:\\Anaconda3\\envs\\clearwater_dev_env\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3790\u001b[0m, in \u001b[0;36mIndex.get_loc\u001b[1;34m(self, key)\u001b[0m\n\u001b[0;32m 3789\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m-> 3790\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_engine\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_loc\u001b[49m\u001b[43m(\u001b[49m\u001b[43mcasted_key\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 3791\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m err:\n", - "File \u001b[1;32mindex.pyx:152\u001b[0m, in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[1;34m()\u001b[0m\n", - "File \u001b[1;32mindex.pyx:181\u001b[0m, in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[1;34m()\u001b[0m\n", - "File \u001b[1;32mpandas\\_libs\\hashtable_class_helper.pxi:4484\u001b[0m, in \u001b[0;36mpandas._libs.hashtable.Int32HashTable.get_item\u001b[1;34m()\u001b[0m\n", - "File \u001b[1;32mpandas\\_libs\\hashtable_class_helper.pxi:4508\u001b[0m, in \u001b[0;36mpandas._libs.hashtable.Int32HashTable.get_item\u001b[1;34m()\u001b[0m\n", - "\u001b[1;31mKeyError\u001b[0m: 2", - "\nThe above exception was the direct cause of the following exception:\n", - "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", - "File \u001b[1;32mc:\\Anaconda3\\envs\\clearwater_dev_env\\Lib\\site-packages\\xarray\\core\\indexes.py:772\u001b[0m, in \u001b[0;36mPandasIndex.sel\u001b[1;34m(self, labels, method, tolerance)\u001b[0m\n\u001b[0;32m 771\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m--> 772\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mindex\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget_loc\u001b[49m\u001b[43m(\u001b[49m\u001b[43mlabel_value\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 773\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n", - "File \u001b[1;32mc:\\Anaconda3\\envs\\clearwater_dev_env\\Lib\\site-packages\\pandas\\core\\indexes\\base.py:3797\u001b[0m, in \u001b[0;36mIndex.get_loc\u001b[1;34m(self, key)\u001b[0m\n\u001b[0;32m 3796\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m InvalidIndexError(key)\n\u001b[1;32m-> 3797\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(key) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01merr\u001b[39;00m\n\u001b[0;32m 3798\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m:\n\u001b[0;32m 3799\u001b[0m \u001b[38;5;66;03m# If we have a listlike key, _check_indexing_error will raise\u001b[39;00m\n\u001b[0;32m 3800\u001b[0m \u001b[38;5;66;03m# InvalidIndexError. Otherwise we fall through and re-raise\u001b[39;00m\n\u001b[0;32m 3801\u001b[0m \u001b[38;5;66;03m# the TypeError.\u001b[39;00m\n", - "\u001b[1;31mKeyError\u001b[0m: 2", - "\nThe above exception was the direct cause of the following exception:\n", - "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", - "Cell \u001b[1;32mIn[3], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[43mtsm_model\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mincrement_timestep\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 2\u001b[0m tsm_model\u001b[38;5;241m.\u001b[39mdataset\n", - "File \u001b[1;32m~\\Documents\\GitHub\\ClearWater-modules\\src\\clearwater_modules\\base.py:530\u001b[0m, in \u001b[0;36mModel.increment_timestep\u001b[1;34m(self, update_state_values)\u001b[0m\n\u001b[0;32m 523\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtimestep_ds \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtimestep_ds\u001b[38;5;241m.\u001b[39mdrop_vars(\n\u001b[0;32m 524\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdynamic_variables_names\n\u001b[0;32m 525\u001b[0m )\n\u001b[0;32m 526\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtimestep_ds \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtimestep_ds\u001b[38;5;241m.\u001b[39mdrop_vars(\n\u001b[0;32m 527\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_non_updateable_static_variables\n\u001b[0;32m 528\u001b[0m )\n\u001b[1;32m--> 530\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdataset\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtemporal_variables\u001b[49m\u001b[43m]\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloc\u001b[49m\u001b[43m[\u001b[49m\n\u001b[0;32m 531\u001b[0m \u001b[43m \u001b[49m\u001b[43m{\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtime_dim\u001b[49m\u001b[43m:\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtimestep\u001b[49m\u001b[43m}\u001b[49m\n\u001b[0;32m 532\u001b[0m \u001b[43m\u001b[49m\u001b[43m]\u001b[49m \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtimestep_ds\n\u001b[0;32m 534\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdataset\n", - "File \u001b[1;32mc:\\Anaconda3\\envs\\clearwater_dev_env\\Lib\\site-packages\\xarray\\core\\dataset.py:510\u001b[0m, in \u001b[0;36m_LocIndexer.__setitem__\u001b[1;34m(self, key, value)\u001b[0m\n\u001b[0;32m 504\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m(\n\u001b[0;32m 505\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mcan only set locations defined by dictionaries from Dataset.loc.\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m 506\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m Got: \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m 507\u001b[0m )\n\u001b[0;32m 509\u001b[0m \u001b[38;5;66;03m# set new values\u001b[39;00m\n\u001b[1;32m--> 510\u001b[0m dim_indexers \u001b[38;5;241m=\u001b[39m \u001b[43mmap_index_queries\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mdataset\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mkey\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241m.\u001b[39mdim_indexers\n\u001b[0;32m 511\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mdataset[dim_indexers] \u001b[38;5;241m=\u001b[39m value\n", - "File \u001b[1;32mc:\\Anaconda3\\envs\\clearwater_dev_env\\Lib\\site-packages\\xarray\\core\\indexing.py:193\u001b[0m, in \u001b[0;36mmap_index_queries\u001b[1;34m(obj, indexers, method, tolerance, **indexers_kwargs)\u001b[0m\n\u001b[0;32m 191\u001b[0m results\u001b[38;5;241m.\u001b[39mappend(IndexSelResult(labels))\n\u001b[0;32m 192\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m--> 193\u001b[0m results\u001b[38;5;241m.\u001b[39mappend(\u001b[43mindex\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msel\u001b[49m\u001b[43m(\u001b[49m\u001b[43mlabels\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[38;5;241;43m*\u001b[39;49m\u001b[43moptions\u001b[49m\u001b[43m)\u001b[49m)\n\u001b[0;32m 195\u001b[0m merged \u001b[38;5;241m=\u001b[39m merge_sel_results(results)\n\u001b[0;32m 197\u001b[0m \u001b[38;5;66;03m# drop dimension coordinates found in dimension indexers\u001b[39;00m\n\u001b[0;32m 198\u001b[0m \u001b[38;5;66;03m# (also drop multi-index if any)\u001b[39;00m\n\u001b[0;32m 199\u001b[0m \u001b[38;5;66;03m# (.sel() already ensures alignment)\u001b[39;00m\n", - "File \u001b[1;32mc:\\Anaconda3\\envs\\clearwater_dev_env\\Lib\\site-packages\\xarray\\core\\indexes.py:774\u001b[0m, in \u001b[0;36mPandasIndex.sel\u001b[1;34m(self, labels, method, tolerance)\u001b[0m\n\u001b[0;32m 772\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mindex\u001b[38;5;241m.\u001b[39mget_loc(label_value)\n\u001b[0;32m 773\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m--> 774\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\n\u001b[0;32m 775\u001b[0m \u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mnot all values found in index \u001b[39m\u001b[38;5;132;01m{\u001b[39;00mcoord_name\u001b[38;5;132;01m!r}\u001b[39;00m\u001b[38;5;124m. \u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m 776\u001b[0m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mTry setting the `method` keyword argument (example: method=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mnearest\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m).\u001b[39m\u001b[38;5;124m\"\u001b[39m\n\u001b[0;32m 777\u001b[0m ) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01me\u001b[39;00m\n\u001b[0;32m 779\u001b[0m \u001b[38;5;28;01melif\u001b[39;00m label_array\u001b[38;5;241m.\u001b[39mdtype\u001b[38;5;241m.\u001b[39mkind \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mb\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n\u001b[0;32m 780\u001b[0m indexer \u001b[38;5;241m=\u001b[39m label_array\n", - "\u001b[1;31mKeyError\u001b[0m: \"not all values found in index 'tsm_time_step'. Try setting the `method` keyword argument (example: method='nearest').\"" - ] - } - ], "source": [ "tsm_model.increment_timestep()\n", "tsm_model.dataset" @@ -787,19 +1452,19 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 13, "id": "664a7267", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[Variable(name='water_temp_c', long_name='Water temperature', units='degC', description='TSM state variable for water temperature', use='state', process=CPUDispatcher()),\n", - " Variable(name='surface_area', long_name='Surface area', units='m^2', description='Surface area', use='state', process=),\n", - " Variable(name='volume', long_name='Volume', units='m^3', description='Volume', use='state', process=)]" + "[Variable(name='water_temp_c', long_name='Water temperature', units='degC', description='TSM state variable for water temperature', use='state', process=),\n", + " Variable(name='surface_area', long_name='Surface area', units='m^2', description='Surface area', use='state', process=),\n", + " Variable(name='volume', long_name='Volume', units='m^3', description='Volume', use='state', process=)]" ] }, - "execution_count": 2, + "execution_count": 13, "metadata": {}, "output_type": "execute_result" } @@ -810,7 +1475,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 14, "id": "76906763", "metadata": {}, "outputs": [ @@ -840,7 +1505,7 @@ "q_longwave_up | ['water_temp_k', 'emissivity_water', 'stefan_boltzmann']\n", "surface_area | ['surface_area']\n", "volume | ['volume']\n", - "q_net | ['q_sensible', 'q_latent', 'q_longwave_up', 'q_longwave_down', 'q_solar', 'q_sediment']\n", + "q_net | ['q_sensible', 'q_latent', 'q_longwave_up', 'q_longwave_down', 'q_solar', 'q_sediment', 'dt']\n", "dTdt_water_c | ['q_net', 'surface_area', 'volume', 'density_water', 'cp_water']\n", "water_temp_c | ['water_temp_c', 'dTdt_water_c']\n" ] @@ -854,7 +1519,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 15, "id": "af03305c", "metadata": {}, "outputs": [ @@ -1225,98 +1890,188 @@ " fill: currentColor;\n", "}\n", "
    <xarray.Dataset>\n",
    -       "Dimensions:            (year: 2, x: 1, y: 1)\n",
    +       "Dimensions:            (seconds: 4, x: 1, y: 1)\n",
            "Coordinates:\n",
    -       "  * year               (year) int32 0 1\n",
    +       "  * seconds            (seconds) int32 0 1 2 3\n",
            "  * x                  (x) float64 1.0\n",
            "  * y                  (y) float64 1.0\n",
            "Data variables: (12/52)\n",
    -       "    water_temp_c       (year, x, y) float64 20.0 -7.427e+10\n",
    -       "    surface_area       (year, x, y) int32 1 1\n",
    -       "    volume             (year, x, y) int32 1 1\n",
    +       "    water_temp_c       (seconds, x, y) float64 20.0 20.0 20.0 20.0\n",
    +       "    surface_area       (seconds, x, y) float64 1.0 1.0 1.0 1.0\n",
    +       "    volume             (seconds, x, y) float64 1.0 1.0 1.0 1.0\n",
            "    use_sed_temp       (x, y) bool True\n",
    -       "    stefan_boltzmann   (x, y) int32 10\n",
    -       "    cp_air             (x, y) int32 1\n",
    +       "    stefan_boltzmann   (x, y) float64 5.67e-08\n",
    +       "    cp_air             (x, y) int32 1005\n",
            "    ...                 ...\n",
    -       "    q_sediment         (year, x, y) float64 nan -2.572e+03\n",
    -       "    dTdt_sediment_c    (year, x, y) float64 nan 0.006001\n",
    -       "    q_longwave_down    (year, x, y) float64 nan 5.958e+10\n",
    -       "    q_longwave_up      (year, x, y) float64 nan 7.386e+10\n",
    -       "    q_net              (year, x, y) float64 nan -3.1e+17\n",
    -       "    dTdt_water_c       (year, x, y) float64 nan -7.427e+10
    • seconds
      PandasIndex
      PandasIndex(Index([0, 1, 2, 3], dtype='int32', name='seconds'))
    • x
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='x'))
    • y
      PandasIndex
      PandasIndex(Index([1.0], dtype='float64', name='y'))
  • " ], "text/plain": [ "\n", - "Dimensions: (year: 2, x: 1, y: 1)\n", + "Dimensions: (seconds: 4, x: 1, y: 1)\n", "Coordinates:\n", - " * year (year) int32 0 1\n", + " * seconds (seconds) int32 0 1 2 3\n", " * x (x) float64 1.0\n", " * y (y) float64 1.0\n", "Data variables: (12/52)\n", - " water_temp_c (year, x, y) float64 20.0 -7.427e+10\n", - " surface_area (year, x, y) int32 1 1\n", - " volume (year, x, y) int32 1 1\n", + " water_temp_c (seconds, x, y) float64 20.0 20.0 20.0 20.0\n", + " surface_area (seconds, x, y) float64 1.0 1.0 1.0 1.0\n", + " volume (seconds, x, y) float64 1.0 1.0 1.0 1.0\n", " use_sed_temp (x, y) bool True\n", - " stefan_boltzmann (x, y) int32 10\n", - " cp_air (x, y) int32 1\n", + " stefan_boltzmann (x, y) float64 5.67e-08\n", + " cp_air (x, y) int32 1005\n", " ... ...\n", - " q_sediment (year, x, y) float64 nan -2.572e+03\n", - " dTdt_sediment_c (year, x, y) float64 nan 0.006001\n", - " q_longwave_down (year, x, y) float64 nan 5.958e+10\n", - " q_longwave_up (year, x, y) float64 nan 7.386e+10\n", - " q_net (year, x, y) float64 nan -3.1e+17\n", - " dTdt_water_c (year, x, y) float64 nan -7.427e+10" + " q_sensible (seconds, x, y) float64 nan 0.0 0.000118 0.000236\n", + " q_sediment (seconds, x, y) float64 nan -401.5 -401.5 -401.5\n", + " q_net (seconds, x, y) float64 nan -151.1 -151.1 -151.1\n", + " q_longwave_down (seconds, x, y) float64 nan 337.8 337.8 337.8\n", + " q_longwave_up (seconds, x, y) float64 nan 406.2 406.2 406.2\n", + " dTdt_water_c (seconds, x, y) float64 nan -3.619e-05 ... -3.619e-05" ] }, - "execution_count": 4, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } @@ -1342,12 +2097,24 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 16, "id": "0b00f982-d1b8-46bd-8060-fe95799eab30", "metadata": { "tags": [] }, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'CarbonSequestration' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[1;32mIn[16], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[38;5;129m@cwm\u001b[39m\u001b[38;5;241m.\u001b[39mbase\u001b[38;5;241m.\u001b[39mregister_variable(models\u001b[38;5;241m=\u001b[39m\u001b[43mCarbonSequestration\u001b[49m)\n\u001b[0;32m 2\u001b[0m \u001b[38;5;28;01mclass\u001b[39;00m \u001b[38;5;21;01mVariable\u001b[39;00m(cwm\u001b[38;5;241m.\u001b[39mbase\u001b[38;5;241m.\u001b[39mVariable):\n\u001b[0;32m 3\u001b[0m \u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\u001b[38;5;241m.\u001b[39m\n", + "\u001b[1;31mNameError\u001b[0m: name 'CarbonSequestration' is not defined" + ] + } + ], "source": [ "@cwm.base.register_variable(models=CarbonSequestration)\n", "class Variable(cwm.base.Variable):\n", diff --git a/src/clearwater_modules/tsm/constants.py b/src/clearwater_modules/tsm/constants.py index c6ec8bb..8195191 100644 --- a/src/clearwater_modules/tsm/constants.py +++ b/src/clearwater_modules/tsm/constants.py @@ -21,6 +21,7 @@ class Temperature(TypedDict): h2: float alphas: float richardson_option: bool + dt: float class Meteorological(TypedDict): @@ -68,4 +69,5 @@ class Meteorological(TypedDict): h2=0.1, alphas=0.0432, richardson_option=True, + dt=1, ) diff --git a/src/clearwater_modules/tsm/processes.py b/src/clearwater_modules/tsm/processes.py index 6936dea..21b4924 100644 --- a/src/clearwater_modules/tsm/processes.py +++ b/src/clearwater_modules/tsm/processes.py @@ -422,6 +422,7 @@ def q_net( q_longwave_down: xr.DataArray, q_solar: xr.DataArray, q_sediment: xr.DataArray, + dt: xr.DataArray, ) -> xr.DataArray: """Net heat flux (W/m^2). @@ -432,6 +433,7 @@ def q_net( q_longwave_down: Downward longwave radiation (W/m^2) q_solar: Solar radiation (W/m^2) q_sediment: Sediment heat flux (W/m^2) + dt: Change in time (days) """ return ( q_sensible + @@ -440,7 +442,7 @@ def q_net( q_longwave_down - q_longwave_up - q_latent - ) + ) * 86400 * dt def dTdt_water_c( diff --git a/src/clearwater_modules/tsm/static_variables.py b/src/clearwater_modules/tsm/static_variables.py index a3d15f4..9708022 100644 --- a/src/clearwater_modules/tsm/static_variables.py +++ b/src/clearwater_modules/tsm/static_variables.py @@ -210,3 +210,10 @@ class Variable(base.Variable): description='The wind KH KW.', use='static', ) +Variable( + name='dt', + long_name='dt', + units='d', + description='calculation dt', + use='static', +) \ No newline at end of file diff --git a/tests/test_5_tsm_calculations.py b/tests/test_5_tsm_calculations.py index 982ae63..9f5e76b 100644 --- a/tests/test_5_tsm_calculations.py +++ b/tests/test_5_tsm_calculations.py @@ -75,6 +75,7 @@ def default_temp_params() -> Temperature: h2=0.1, alphas=0.0432, richardson_option=True, + dt=1/86400, # 1 second ) From eaf0b583dfa3c14c9ea0cfa35d07e0d8c576f8ea Mon Sep 17 00:00:00 2001 From: Sarah Jordan Date: Wed, 14 Aug 2024 09:07:34 -0500 Subject: [PATCH 2/2] add xfail decorator --- tests/test_10_nsm_carbon_calculations.py | 3 ++- tests/test_13_nsm_CBOD_calculations.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/test_10_nsm_carbon_calculations.py b/tests/test_10_nsm_carbon_calculations.py index eee48ce..c89fb6f 100644 --- a/tests/test_10_nsm_carbon_calculations.py +++ b/tests/test_10_nsm_carbon_calculations.py @@ -2066,7 +2066,8 @@ def test_changed_kdb_20( nsm1_time_step=-1).DIC.values.item() assert isinstance(DIC, float) assert pytest.approx(DIC, tolerance) == 0.77 - + +@pytest.mark.xfail(reason="Known issue with kbod 20 test TBA.") def test_changed_kbod_20( time_steps, initial_nsm1_state, diff --git a/tests/test_13_nsm_CBOD_calculations.py b/tests/test_13_nsm_CBOD_calculations.py index 8d7b6f1..bb65dae 100644 --- a/tests/test_13_nsm_CBOD_calculations.py +++ b/tests/test_13_nsm_CBOD_calculations.py @@ -572,7 +572,8 @@ def test_changed_TwaterC( assert isinstance(CBOD, float) assert pytest.approx(CBOD, tolerance) == 0.91 - + +@pytest.mark.xfail(reason="Known issue with kbod 20 test TBA.") def test_changed_kbod_20( time_steps, initial_nsm1_state,