I want to add the sediment in riverplume.So I modified the test case which is called riverplume1.
At first I modified the ana_psource.h file just like this
Code: Select all
# ifdef SEDIMENT
DO k=1,N(ng)
DO is=1,Nsrc(ng)
DO ised=1,NST
SOURCES(ng)%Tsrc(is,k,idsed(ised))=5.0_r8
END DO
END DO
END DO
# endif
not 5,even, is less than half of 5.
After I try to modify some of the parameters,I found that if I modified the salinity, the highest
sediment concentration would change too.
I modified the ana_psource.h file just like this(SOURCES(ng)%Tsrc
(is,k,isalt)=0.0_r8→SOURCES(ng)%Tsrc(is,k,isalt)=28.0_r8):
Code: Select all
! Set-up tracer (tracer units) point Sources/Sinks.
!
# if defined RIVERPLUME1
IF (DOMAIN(ng)%NorthEast_Test(tile)) THEN
DO k=1,N(ng)
DO is=1,Nsrc(ng)
SOURCES(ng)%Tsrc(is,k,itemp)=T0(ng) ! T0 is in ocean.in
SOURCES(ng)%Tsrc(is,k,isalt)=28.0_r8
END DO
END DO
END IF
But I don't known what the problem is,could anyone tell me how could this be?
Thanks in advance.