CyprienBosserelle / xbeach_gpu

Lightweight version of XBeach that uses CUDA C to run on the GPU. The code is used to simulate coastal waves, currents, sediment transport and beach morphology changes during extreme events. Visit:
http://cyprienbosserelle.github.io/xbeach_gpu/
GNU General Public License v3.0
13 stars 1 forks source link

Some parameters appear in groups rather than one per row #35

Closed davidbenncsiro closed 2 years ago

davidbenncsiro commented 2 years ago

In particular:

Separating these into distinct rows will make parameters in the user manual completely machine readable.

This case is more complicated than those above but the same approach applies:

                  <td>drydzmax=1.0, wetdzmax=2.0</td>
                  <td>1.0, 2.0</td>
                  <td>Wet/dry max slope in avalanching model</td>

could become:

                  <td>drydzmax</td>
                  <td>1.0</td>
                  <td>Dry max slope in avalanching model</td>
                  <td>wetdzmax</td>
                  <td>2.0</td>
                  <td>Wet max slope in avalanching model</td>