Hello Chi-Tuan,
Thanks for your time, after a few tests I found that the problem was caused by setting the WATER QUALITY PROCESS = 330, with 55 the problem was gone. I use the latest v8p2.
There's another issue I encountered regarding those keywords with two parameters assigned to in the WAQTEL steering file, for example:
COEFFICIENTS OF ALGAL MORTALITY AT 20C = 0.08; 0.003
the latter one (0.003) was not actually read into the corresponding subroutine algae_death. If we print out these two parameters by simply adding the two lines below in algae_death.f,
WRITE(LU,*) 'M1= ',CMOR(1)
WRITE(LU,*) 'M2= ',CMOR(2)
we can find in the listing below the CMOR(2) was assigned with the wrong parameter.
M1= 8.0E-002
M2= 8.0E-002
This looks like a bug needs to be solved.
Best regards,
Yunhao Song