Hi all,
I'm still working on a 3D-model (Sisyphe+Telemac3D). Now we've a got the new version V7P1. Since I start to impose a sediment Rouse profile I got NaN but a constant profile (constant value of 1.2 g/L) it works.
Does anyone got the same problem?
I'm checking (learning I will say) how the Rouse profil has been implemented, it does not like pretty trivial to me:
FROM BORD3D
IF(IPROF.NE.1) THEN
PROFZ=TRA_PROF_Z(IFRLIQ,NBOR2%I(K),AT,LT,NP,
& INFOGR,IPROF,ITRAC)
IF(IPROF.EQ.2.OR.IPROF.EQ.0) THEN
! Rouse concentrations profiles (IPROF=2) or values given by user (IPROF=0)
TABORL%ADR(ITRAC)%P%R(IBORD)=PROFZ
ELSEIF(IPROF.EQ.3) THEN
! Normalised concentrations profiles (IPROF=3)
TABORL%ADR(ITRAC)%P%R(IBORD)=
& TABORL%ADR(ITRAC)%P%R(IBORD)*PROFZ
ELSE
FROM NOEROD
IF(SETDEP.EQ.1) THEN
!
DO IPOIN =1,NPOIN2
USTAR=MAX(SQRT(UETCAR(IPOIN)),1.D-6)
ROUSE=PRANDTL*WCS(IPOIN)/KARMAN/USTAR
! rouse profile extrapolation up to 1/4 of the first layer
DELTAZ=(Z(IPOIN +NPOIN2)-Z(IPOIN))/FICT
ROUSE_Z=ZREF%R(IPOIN)/(HN%R(IPOIN)-ZREF%R(IPOIN))
& *(HN%R(IPOIN)-DELTAZ)/DELTAZ
CREF%R(IPOIN)=CREF%R(IPOIN)*ROUSE_Z**ROUSE
ENDDO
!
ENDIF