I'm trying to run in parallel (mpi on 2 intel's cores duo) a 3 D simulation of a simple East-West channel including areas of different roughness height (Z0).
To set up these areas I am using ANA_BMFLUX.
Unfortunately this message pops up each time I try to compile the code:
I don't really dig what the message says and even less how I could fix this.analytical.f90(83): error #6580: Name in only-list does not exist. [EXCHANGE_R3D_TILE]
USE exchange_3d_mod, ONLY : exchange_r3d_tile
----------------------------------^
compilation aborted for analytical.f90 (code 1)
Does anyone have an idea to sort this out ?
As information, here is my CPP options:
#define SOLVE3D
#define DIAGNOSTICS_UV
#define UV_SMAGORINSKY
#define MY25_MIXING
#define UV_LOGDRAG
#define ANA_GRID
#define ANA_INITIAL
#define ANA_FSOBC
#define ANA_BMFLUX
#define SEDIMENT
#define ANA_SMFLUX
#define ANA_STFLUX
#define ANA_BTFLUX
#define ANA_M3OBC
#define ANA_M2OBC
#define NORTHERN_WALL
#define SOUTHERN_WALL
#define EAST_FSCLAMPED
#define WEST_FSCLAMPED
#define EAST_M3RADIATION
#define EAST_M2REDUCED
#define WEST_M3RADIATION
#define WEST_M2FLATHER
and my compiler options (intel compiler):
/mpiifort -c -tune -ip -O3
Thanks
-T-