I tried to include wind forcing correction in IS4DVAR by defining 'ADJUST_WSTRESS'.
(I provided wind forcing standard deviation file, too.)
It compiled well, but there was an error when I ran it.
After reading the standard deviation files for initial and wind forcing,
I got this message.
DEF_DIM - error while defining dimension: frc_adjust
in file: daccs_ini.nc
And at the last part, it said
So, I looked at the initial file, and its time dimension was set 'UNLIMITED'.ERROR: Abnormal termination: NetCDF OUTPUT.
REASON: NC_UNLIMITED size already in use
It seems to me that 'frc_adjust' wants unlimited dimension, but 'time' already has unlimited dimension so that it is impossible to define another unlimited dimension for 'frc_adjust'.netcdf daccs_ini {
dimensions:
xi_rho = 104 ;
xi_u = 103 ;
xi_v = 104 ;
eta_rho = 82 ;
eta_u = 82 ;
eta_v = 81 ;
s_rho = 42 ;
s_w = 43 ;
tracer = 2 ;
time = UNLIMITED ; // (1 currently)
variables:
If so, how can fix this error?
Or could you help me out to run model with correcting forcing?
I used to run IS4DVAR, but this is my first try to correct forcing,
and I am sure that I am missing many things.
Thank you!
Hajoon