I'm trying to use the new AVERAGES_DETIDE option in a simple estuary-like domain. The model runs fine without the option, but when I turn it on, I get this error when it tries to write out to the file:
Code: Select all
WRT_TIDES - error while writing variable: Hcount
into tide forcing NetCDF file:
Data/Forcing/frc_tides.nc
Code: Select all
netcdf frc_tides {
dimensions:
xi_rho = 102 ;
eta_rho = 5 ;
tide_period = 3 ;
variables:
double tide_period(tide_period) ;
double tide_Ephase(tide_period, eta_rho, xi_rho) ;
double tide_Eamp(tide_period, eta_rho, xi_rho) ;
double tide_Cphase(tide_period, eta_rho, xi_rho) ;
double tide_Cangle(tide_period, eta_rho, xi_rho) ;
double tide_Cmin(tide_period, eta_rho, xi_rho) ;
double tide_Cmax(tide_period, eta_rho, xi_rho) ;
}
J.Paul