Hello Claire,
I found some variables that may be of interest:
========================================================
! INITIAL STILL WATER LEVEL
DOUBLE PRECISION ZREPOS
This may be only an initial condition, as the name says, and probably has no effect later on the computation (just guessing).
This is also a single value for the whole domain and is set using the keyword "INITIAL STILL WATER LEVEL" in the steering.
========================================================
! cote du fond
DOUBLE PRECISION, DIMENSION(:) , POINTER :: ZF
This is the bathymetry, read from the variable BOTTOM in the geometry file. If you wish you can access it in MARUTI adding a "USE DECLARATIONS_TOMAWAC, ONLY : ZF" statement to it.
========================================================
! profondeur
DOUBLE PRECISION, DIMENSION(:) , POINTER :: DEPTH
This is the water depth saved in the results file. It is the (positive) height of the water column below a mesh node.
This variable can be accessed in the subroutine MARUTI adding a "USE DECLARATIONS_TOMAWAC, ONLY : DEPTH" statement in the subroutine.
Observation: The DEPTH is calculated inside TOMAWAC using ZF and ZREPOS as follows: DEPTH=ZREPOS-ZF
========================================================
Hope this helps.
Best regards,
Phelype