Skip to content

Commit f723046

Browse files
Merge branch 'development' of https://github.com/CyprienBosserelle/BG_Flood into development
2 parents 6130ae4 + 0a3b96b commit f723046

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

docs/tutorial/TutorialSimpleRain.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,20 +105,33 @@ rain = rain.txt
105105

106106
### Optional but useful
107107

108-
While we could stop there, it is not very useful to let BG_Flood's default behaviour run the show. In particular, we want to specify what to output, how often, and where.
108+
While we could stop there, it is not very useful to let BG_Flood's default behaviour run the show. In particular, we want to specify what to output, how often, how long and where.
109109

110110
```
111111
##########
112112
# output
113113
##########
114114
115+
endtime = 36000.0
115116
outputtimestep = 600.00
116117
outvars = hmax, zsmax, hUmax, h, zs, u, v, Umax
117118
outfile = StressTest_Port_Charles.nc
118119
```
119120

120121
> **Tip:** BG_Flood will **never** overwrite an existing file. Instead, it will add an incremental number to the end of the filename each time it runs (e.g., `StressTest_Port_Charles_1.nc`).
121122
123+
### Use non-default engine
124+
125+
BG_Flood default engine is great for many use but doesn't do too well with heavy rain on steep catchment (i.e. this tutorial). so to get better results we will change the engine to a more suitable one.
126+
127+
```
128+
#################
129+
## Use the engine 5 for rain-on-grid
130+
#################
131+
132+
engine = 5
133+
134+
```
122135

123136
## Full BG_param.txt
124137

@@ -147,10 +160,17 @@ dx = 32.0
147160
148161
rain = rain.txt
149162
163+
#################
164+
## Use the multi-layer engine with just 1 layer
165+
#################
166+
167+
engine = 5
168+
150169
##########
151170
# output
152171
##########
153172
173+
endtime = 36000.0
154174
outputtimestep = 600.00
155175
outvars = hmax, zsmax, hUmax, h, zs, u, v, Umax
156176

0 commit comments

Comments
 (0)