Hi
This an answer for your second question.
To use Finite volume method you have to add the following keyword:
EQUATIONS = 'SAINT-VENANT VF'
To choose which scheme you need to add :
FINITE VOLUME SCHEME =
For this keyword you can choose
0: Roe scheme (1st order in space, good numerical properties but risk of negative water depth)
1: Kinetic scheme (1st orde in space, good numerical properties (shock capturing, positive depth, mass conservation))
2: Kinetic scheme (2nd order in space, same properties as for 1)
3: Tchamen scheme (1rs order in space, good numerical properties, well suited for wetting and drying but more diffusive)
4: Zokagoa scheme (1st order in space, same properties than 3)
It it important to notice that FV kernel is explicit in time, so it needs more CPU time than FE. Furthermore you need to add the following kew words
VARIABLE TIME-STEP =YES
DESIRED COURANT NUMBER = 0.8 (between 0 an 1)
DURATION = (in stead of number of time steps )
Moreover, you can obtain 2nd order in time by adding the following keyword
NEWMARK TIME INTEGRATION COEFFICIENT = 0.5
With my best regards
Riadh