I try to couple WRF and ROMS and i set the parameters but i got following error,
MOD_COUPLER - Number assigned processors: 001
not equal to spawned MPI nodes: 004
MOD_COUPLER - Number assigned processors: 001
not equal to spawned MPI nodes: 004
MOD_COUPLER - Number assigned processors: 001
not equal to spawned MPI nodes: 004
MOD_COUPLER - Number assigned processors: 001
not equal to spawned MPI nodes: 004
I submit the job using 4 proc and my coupling paramaters like that,
Code: Select all
Nmodels = 2
! Coupled models order label used to process information arrays, [1:Nmodels]
! string values are expected. The order is arbitrary, the indices below are
! ordered from bottom to top grids.
OrderLabel = ocean \
atmos
! Number of parallel threads assigned to each model in the coupled system,
! [1:Nmodels] KEYWORD entries are expected with the order label (OrderLabel)
! in parenthesis. The sum of all entries must be equal to the total number
! of processors.
Nthreads(ocean) = 2
Nthreads(atmos) = 2
! Time interval (seconds) between coupling of models, [1:Nmodels] real
! values are expected corresponding to the entries of a lower triangular
! matrix Aij for i>j. For example, for three model components ordered
! as ocean, waves, and atmos, the time interval is read as:
!
! Aij 1 2 3
! i\j ocean waves atmos
! 1 ocean - - - v(1): ocean-waves coupling interval
! 2 waves v(1) - - v(2): ocean-atmos coupling interval
! 3 atmos v(2) v(3) - v(3): waves-atmos coupling interval
!
! TimeInterval = v(1) v(2) v(3)
TimeInterval = 0.0 120.0d0
! Coupled model standard input file name, [1:Nmodels] KEYWORD entries are
! expected with the label code in parenthesis.
INPname(ocean) = med_ocean.in
INPname(waves) = med_atmos.in
! Coupled models variables information file name.
CPLname = coupling.dat
...
...
...
Thanks,