View source for Tutorial M11
←
Tutorial M11
Jump to navigation
Jump to search
= Introduction = In this module, the creek is represented as a 1D open channel embedded into the 2D floodplain.<br> Since the release of sub-grid sampling (SGS), 1D open channels may no longer be required if the DEM is at a fine resolution. If the DEM resolution is too coarse (for example in the below image), 1D open channel or quadtree may be required. The recommended approach is to use a quadtree model as demonstrated in <u>[[Tutorial_M07 | Module 7]]</u>, however, if the DEM is too coarse and cross section data is available, 1D open channel can be used. <br> <br> <ol> [[File:Poor_2D_representation.jpg | 450px]]<br> </ol> <br> The GIS layers are:<br> :*TGC layers: <ol><ol><li>2d_code: A layer containing polygons that define the cell codes (active and inactive). </ol></ol> <ol><ol><li>2d_zsh: A layer used to reinforce top of bank elevations. </ol></ol> :*ECF layers: <ol><ol><li>1d_nwk: A layer used to define culverts and open channels in 1D. </ol></ol> <ol><ol><li>1d_xs: A layer used to reference cross section data. </ol></ol> <ol><ol><li>1d_bc: A layer used to define 1D boundary conditions. </ol></ol> <ol><ol><li>1d_wll: A layer used to define 1D water level lines (to display 1D results in 2D map outputs). </ol></ol> :*TBC layers: <ol><ol><li> 2d_bc: A layer defining the locations of 1D/2D boundaries.</ol></ol> :*TCF layers: <ol><ol><li>0d_rl: A layer defining the reporting locations.</ol></ol> '''Module 11 builds from the model created in <u>[[Tutorial_M02 | Module 2]]</u>. The completed Module 2 model is provided in the Module_11\TUFLOW folder.''' <br> <br> =Part 1 - 1D Open Channel with Culverts= Simulate 1D open channel model with culverts conveying flow beneath roads. == GIS Inputs == Create, import and view input data: :*<u>[[Tutorial_M11_001_GIS_Inputs_QGIS | QGIS - SHP]]</u> :*<u>[[Tutorial_M11_001_GIS_Inputs_QGIS_GPKG | QGIS - GPKG]]</u> == Boundary Condition Database (bc_dbase) == Update the bc_dbase with a reference to the new weir outflow: <ol> <li>Navigate to the '''Module_11\Tutorial_Data''' folder. Copy the '''Weir_HQ.csv''' into the ''' Module_11\TUFLOW\bc_dbase''' folder. <li>Open the file, it contains a water level (head) versus flow boundary condition for the water leaving the model:<br> <br> [[File:M11_bc_dbase_01b.png]]<br> <br> <li>Save a copy of the '''bc_dbase.csv''' as '''bc_dbase_M11_001.csv'''. <li>Open the file and add the additional weir boundary condition:<br> <br> [[File:M11_bc_dbase_02a.png]]<br> <br> <li>Save the bc_dbase. </ol> == Simulation Control Files == === ESTRY Control File (ECF) === A new control file, the ESTRY Control File (ECF), is introduced. ESTRY is TUFLOW’s 1D hydraulic solver and includes all of the 1D files and commands. <br> <ol> <li>Create a new text file '''M11_001.ecf''' and save it in the '''Module_11\TUFLOW\model''' folder. <li>Add the following command lines: <br> <u>'''QGIS - SHP'''</u><br> <font color="green"><tt>! 1D TIME CONTROL</tt></font> <br> <font color="blue"><tt>Timestep </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>0.5</tt></font> <font color="green"><tt> ! Specifies a 1D computational timestep as 0.5 seconds</tt></font> <br> <font color="green"><tt>! 1D ELEMENTS</tt></font> <br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\1d_nwk_M03_culverts_001_L.shp</tt></font> <font color="green"><tt> ! Defines culverts</tt></font> <br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\1d_nwk_M11_channels_001_L.shp</tt></font> <font color="green"><tt> ! Reads in open channels</tt></font> <br> <font color="blue"><tt>Read GIS Table Links </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>xs\1d_xs_M11_channels_001_L.shp</tt></font> <font color="green"><tt> ! References cross-section data stored in separate csv files</tt></font> <br> <font color="green"><tt>! 1D BOUNDARY CONDITIONS</tt></font> <br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\1d_bc_M11_001_P.shp</tt></font> <font color="green"><tt> ! Reads in 1D boundary conditions</tt></font> <br> <font color="green"><tt>! 1D WATER LEVEL LINES</tt></font> <br> <font color="blue"><tt>Read GIS WLL </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\1d_wll_M11_001_L.shp</tt></font> <font color="green"><tt> ! Displays 1D results in 2D map output result files</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="green"><tt>! 1D TIME CONTROL</tt></font> <br> <font color="blue"><tt>Timestep </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>0.5</tt></font> <font color="green"><tt> ! Specifies a 1D computational timestep as 0.5 seconds</tt></font> <br> <font color="green"><tt>! 1D ELEMENTS</tt></font> <br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_nwk_M03_culverts_001_L</tt></font> <font color="green"><tt> ! Defines culverts</tt></font> <br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_nwk_M11_channels_001_L</tt></font> <font color="green"><tt> ! Reads in open channels</tt></font> <br> <font color="blue"><tt>Read GIS Table Links </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_xs_M11_channels_001_L</tt></font> <font color="green"><tt> ! References cross-section data stored in separate csv files</tt></font> <br> <font color="green"><tt>! 1D BOUNDARY CONDITIONS</tt></font> <br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_bc_M11_001_P</tt></font> <font color="green"><tt> ! Reads in 1D boundary conditions</tt></font> <br> <font color="green"><tt>! 1D WATER LEVEL LINES</tt></font> <br> <font color="blue"><tt>Read GIS WLL </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_wll_M11_001_L</tt></font> <font color="green"><tt> ! Displays 1D results in 2D map output result files</tt></font> <br> <li>Save the ECF. <br> </ol> === TUFLOW Geometry Control File (TGC) === <ol> <li>Save a copy of the '''M02_001.tgc''' as '''M11_001.tgc''' in the '''Module_11\TUFLOW\model''' folder. <li>Open the '''M11_001.tgc''' in a text editor and add the following line after the 'Read GIS Code' command: <br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>Read GIS Code</tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\2d_code_M11_null_creek_001_R.shp</tt></font> <font color="green"><tt> ! Deactivates cells where the channel has been modelled in 1D</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Read GIS Code</tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>2d_code_M11_null_creek_001_R</tt></font> <font color="green"><tt> ! Deactivates cells where the channel has been modelled in 1D</tt></font> <br> <li>Add the following line after the 'Read GIS Z Shape' command: <br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>Read GIS Z Shape </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\2d_zsh_M11_hx_001_L.shp | gis\2d_zsh_M11_hx_001_P.shp</tt></font> <font color="green"><tt> ! Defines the bank crest levels</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Read GIS Z Shape </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>2d_zsh_M11_hx_001_L | 2d_zsh_M11_hx_001_P</tt></font> <font color="green"><tt> ! Defines the bank crest levels</tt></font> <br> <li>Save the TGC. </ol> The line and point 2d_zsh files are read by the same command separated by a vertical line, by reading both of these layers on the same command line enables them to be linked. <br> === TUFLOW Boundary Control File (TBC) === <ol> <li>Save a copy of the '''M01_001.tbc''' as '''M11_001.tbc''' in the '''Module_11\TUFLOW\model''' folder. <li>Open the '''M11_001.tbc''' in a text editor and comment out or delete the below line, 1D boundaries are used instead: <br> <u>'''QGIS - SHP'''</u><br> <font color="green"><tt>! Read GIS BC == gis\2d_bc_M01_001_L.shp ! Reads in 2D boundaries</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="green"><tt>! Read GIS BC == 2d_bc_M01_001_L ! Reads in 2D boundaries</tt></font> <br> <li>Add reference to the new boundaries at the end of the TBC: <br> <u>'''QGIS - SHP'''</u><br> <font color="green"><tt>! INTERNAL 1D/2D BOUNDARIES</tt></font> <br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\2d_bc_M03_culverts_001_P.shp</tt></font> <font color="green"><tt> ! Links 1D culverts to 2D domain</tt></font> <br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\2d_bc_M11_hx_001_L.shp</tt></font> <font color="green"><tt> ! Reads in HX boundaries linking 1D channel to 2D domain</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="green"><tt>! INTERNAL 1D/2D BOUNDARIES</tt></font> <br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>2d_bc_M03_culverts_001_P</tt></font> <font color="green"><tt> ! Links 1D culverts to 2D domain</tt></font> <br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>2d_bc_M11_hx_001_L</tt></font> <font color="green"><tt> ! Reads in HX boundaries linking 1D channel to 2D domain</tt></font> <br> <li>Save the TBC. </ol> === TUFLOW Control File (TCF) === <ol> <li>Save a copy of the '''M02_5m_001.tcf''' as '''M11_5m_001.tcf''' in the '''Module_11\TUFLOW\runs''' folder. <li>Open the '''M11_5m_001.tcf''' in a text editor and add the following line in the 'Model Inputs' section: <br> <font color="blue"><tt>ESTRY Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt> ..\model\M11_001.ecf </tt></font> <font color="green"><tt> ! Reference the ESTRY (1D) Control File</tt></font> <br> <li>Make the following reference updates: <br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>Geometry Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_001.tgc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Geometry Control File</tt></font> <br> <font color="blue"><tt>BC Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_001.tbc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Boundary Conditions Control File</tt></font> <br> <font color="blue"><tt>BC Database </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\bc_dbase\bc_dbase_M11_001.csv</tt></font> <font color="green"><tt> ! Reference the Boundary Conditions Database</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Spatial Database </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\gis\M11_001.gpkg</tt></font> <font color="green"><tt> ! Specify the location of the GeoPackage Spatial Database</tt></font> <br> <font color="blue"><tt>Geometry Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_001.tgc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Geometry Control File</tt></font> <br> <font color="blue"><tt>BC Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_001.tbc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Boundary Conditions Control File</tt></font> <br> <font color="blue"><tt>BC Database </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\bc_dbase\bc_dbase_M11_001.csv</tt></font> <font color="green"><tt> ! Reference the Boundary Conditions Database</tt></font> <br> <li>Remove reference to the 2D plot outputs and replace with reference to the reporting locations: <br> <u>'''QGIS - SHP'''</u><br> <font color="green"><tt>! Read GIS PO == ..\model\gis\2d_po_M01_001_L.shp ! Reads in plot output line</tt></font> <br> <font color="green"><tt>! Read GIS PO == ..\model\gis\2d_po_M01_001_P.shp ! Reads in plot output point</tt></font> <br> <font color="blue"><tt>Read GIS Reporting Location </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\gis\0d_rl_M11_001_L.shp</tt></font> <font color="green"><tt> ! Reads in reporting location line</tt></font> <br> <font color="blue"><tt>Read GIS Reporting Location </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\gis\0d_rl_M11_001_P.shp</tt></font> <font color="green"><tt> ! Reads in reporting location point</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="green"><tt>! Read GIS PO == 2d_po_M01_001_L ! Reads in plot output line</tt></font> <br> <font color="green"><tt>! Read GIS PO == 2d_po_M01_001_P ! Reads in plot output point</tt></font> <br> <font color="blue"><tt>Read GIS Reporting Location </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>0d_rl_M11_001_L</tt></font> <font color="green"><tt> ! Reads in reporting location line</tt></font> <br> <font color="blue"><tt>Read GIS Reporting Location </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>0d_rl_M11_001_P</tt></font> <font color="green"><tt> ! Reads in reporting location point</tt></font> <br> <li>Save the TCF. </ol> == Running the Simulation == <ol> <li>Save a copy of '''_run_M02_HPC.bat''' as '''_run_M11_HPC.bat''' in the '''Module_11\TUFLOW\runs''' folder. <li>Update the batch file to reference the '''M11_5m_001.tcf''' :<br> <font color="blue"><tt>'''set'''</tt></font> <font color="black"><tt>exe</tt></font><font color="red"><tt>=</tt></font><font color="black"><tt>"..\..\..\exe\2023-03-AA\TUFLOW_iSP_w64.exe"</tt></font> <br> <font color="blue"><tt>'''set'''</tt></font> <font color="black"><tt>run</tt></font><font color="red"><tt>=</tt></font><font color="black"><tt>start "TUFLOW" /wait</tt></font> <font color="orange"><tt> %exe%</tt></font> <font color="black"><tt> -b</tt></font> <br> <font color="orange"><tt>%run% </tt></font> <font color="black"><tt>M11_5m_001.tcf </tt></font> <br> <li>Double click the batch file in file explorer to run the simulation. <br> </ol> == Troubleshooting == See tips on common mistakes and troubleshooting steps if the model doesn't run: :*<u>[[Tutorial_Troubleshooting_QGIS | QGIS]]</u> == Check Files == While the model is running, review the added features are specified correctly: :*<u>[[Tutorial_M11_001_Check_Files_QGIS | QGIS - SHP]]</u> :*<u>[[Tutorial_M11_001_Check_Files_QGIS_GPKG | QGIS - GPKG]]</u> == Results == When the model is finished, review the results: :*<u>[[Tutorial_M11_001_Results_QGIS | QGIS]]</u> <br> =Part 2 - 1D Open Channel with 1D Bridges and Weir inflow (2D) and Outflow (1D)= Simulate 1D open channel model with 1D bridges conveying flow beneath roads. 1D weir is used to convey flow overtopping the downstream road. == GIS Inputs == Create, import and view input data: :*<u>[[Tutorial_M11_002_GIS_Inputs_QGIS | QGIS - SHP]]</u> :*<u>[[Tutorial_M11_002_GIS_Inputs_QGIS_GPKG | QGIS - GPKG]]</u> == Simulation Control Files == === ESTRY Control File (ECF) === <ol> <li>Save a copy of the '''M11_001.ecf''' as '''M11_002.ecf''' in the '''Module_11\TUFLOW\model''' folder. <li>Open the '''M11_002.ecf''' in a text editor and update the following reference: <br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\1d_nwk_M11_culverts_002_L.shp</tt></font> <font color="green"><tt> ! Defines culverts</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_nwk_M11_culverts_002_L</tt></font> <font color="green"><tt> ! Defines culverts</tt></font> <br> <li>Add the following commands:<br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\1d_nwk_M11_bridges_002_L.shp</tt></font> <font color="green"><tt> ! Defines bridges</tt></font> <br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\1d_nwk_M11_weirs_002_L.shp</tt></font> <font color="green"><tt> ! Defines weirs</tt></font> <br> <font color="blue"><tt>Read GIS Table Links </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>xs\1d_xs_M11_bridges_002_L.shp</tt></font> <font color="green"><tt> ! References bridges cross section data stored in separate csv</tt></font> <br> <font color="blue"><tt>Read GIS Table Links </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>xs\1d_xs_M11_weirs_002_L.shp</tt></font> <font color="green"><tt> ! References weirs cross section data stored in separate csv</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_nwk_M11_bridges_002_L</tt></font> <font color="green"><tt> ! Defines bridges</tt></font> <br> <font color="blue"><tt>Read GIS Network </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_nwk_M11_weirs_002_L</tt></font> <font color="green"><tt> ! Defines weirs</tt></font> <br> <font color="blue"><tt>Read GIS Table Links </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_xs_M11_bridges_002_L</tt></font> <font color="green"><tt> ! References bridges cross section data stored in separate csv</tt></font> <br> <font color="blue"><tt>Read GIS Table Links </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>1d_xs_M11_weirs_002_L</tt></font> <font color="green"><tt> ! References weirs cross section data stored in separate csv</tt></font> <br> <li>Save the ECF. </ol> === TUFLOW Geometry Control File (TGC) === <ol> <li>Save a copy of the '''M11_001.tgc''' as '''M11_002.tgc''' in the '''Module_11\TUFLOW\model''' folder. <li>Open the '''M11_002.tgc''' in a text editor and update the following references: <br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>Read GIS Code </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\2d_code_M11_null_creek_002_R.shp</tt></font> <font color="green"><tt> ! Deactivates cells where the channel has been modelled in 1D </tt></font> <br> <font color="blue"><tt>Read GIS Z Shape </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\2d_zsh_M11_hx_002_L.shp | gis\2d_zsh_M11_hx_001_P.shp</tt></font> <font color="green"><tt> ! Defines the bank crest levels</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Read GIS Code </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>2d_code_M11_null_creek_002_R</tt></font> <font color="green"><tt> ! Deactivates cells where the channel has been modelled in 1D </tt></font> <br> <font color="blue"><tt>Read GIS Z Shape </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>2d_zsh_M11_hx_002_L | 2d_zsh_M11_hx_001_P</tt></font> <font color="green"><tt> ! Defines the bank crest levels</tt></font> <br> <li>Save the TGC. </ol> === TUFLOW Boundary Control File (TBC) === <ol> <li>Save a copy of the '''M11_001.tbc''' as '''M11_002.tbc''' in the '''Module_11\TUFLOW\model''' folder. <li>Open the '''M11_002.tbc''' in a text editor and update the following reference: <br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>gis\2d_bc_M11_hx_002_L.shp</tt></font> <font color="green"><tt> ! Reads in HX boundaries linking 1D channel to 2D domain</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Read GIS BC </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>2d_bc_M11_hx_002_L</tt></font> <font color="green"><tt> ! Reads in HX boundaries linking 1D channel to 2D domain</tt></font> <br> <li>Save the TBC. </ol> === TUFLOW Control File (TCF) === <ol> <li>Save a copy of the '''M11_5m_001.tcf''' as '''M11_5m_002.tcf''' in the '''Module_11\TUFLOW\runs''' folder. <li>Open the '''M11_5m_002.tcf''' in a text editor and make the following reference updates: <br> <u>'''QGIS - SHP'''</u><br> <font color="blue"><tt>ESTRY Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt> ..\model\M11_002.ecf </tt></font> <font color="green"><tt> ! Reference the ESTRY (1D) Control File</tt></font> <br> <font color="blue"><tt>Geometry Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_002.tgc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Geometry Control File</tt></font> <br> <font color="blue"><tt>BC Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_002.tbc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Boundary Conditions Control File</tt></font> <br> <u>'''QGIS - GPKG'''</u><br> <font color="blue"><tt>Spatial Database </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt> ..\model\gis\M11_002.gpkg </tt></font> <font color="green"><tt>! Specify the location of the GeoPackage Spatial Database</tt></font> <br> <font color="blue"><tt>ESTRY Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt> ..\model\M11_002.ecf </tt></font> <font color="green"><tt> ! Reference the ESTRY (1D) Control File</tt></font> <br> <font color="blue"><tt>Geometry Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_002.tgc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Geometry Control File</tt></font> <br> <font color="blue"><tt>BC Control File </tt></font> <font color="red"><tt>== </tt></font> <font color="black"><tt>..\model\M11_002.tbc</tt></font> <font color="green"><tt> ! Reference the TUFLOW Boundary Conditions Control File</tt></font> <br> <li>Save the TCF. </ol> == Running the Simulation == Update the batch file created in the first part of Module 11 to reference the '''M11_5m_002.tcf''' file. Save the batch file and double click it in file explorer to run the simulation. <br> == Troubleshooting == See tips on common mistakes and troubleshooting steps if the model doesn't run: :*<u>[[Tutorial_Troubleshooting_QGIS | QGIS]]</u> == Check Files == While the model is running, review the added features are specified correctly: :*<u>[[Tutorial_M11_002_Check_Files_QGIS | QGIS - SHP]]</u> :*<u>[[Tutorial_M11_002_Check_Files_QGIS_GPKG | QGIS - GPKG]]</u> == Results == When the model is finished, review the results: :*<u>[[Tutorial_M11_002_Results_QGIS | QGIS]]</u> <br> = Conclusion = :*A model with 1D open channel embedded into 2D floodplain was created. :*The 1D open channel conveyed flow underneath the roads through 1D culverts. :*Bridges were modelled in 1D, with overflow occurring in the 2D for the upstream bridge and 1D weir for the downstream bridge. <br> {{Tips Navigation |uplink=[[Tutorial_Introduction| Back to Tutorial Introduction Main Page]] }}
Template used on this page:
Template:Tips Navigation
(
view source
)
Return to
Tutorial M11
.
Navigation menu
Personal tools
English
Log in
Namespaces
Page
Discussion
English
Views
Read
View source
View history
More
Search
Navigation
Main page
Recent changes
Random page
MediaWiki help
Tools
What links here
Related changes
Special pages
Page information