Hi,
Before setting the initial tracer value, I checked the elevation of each layer in the previous T3DRST file using the code below:
DO I=1,NPOIN2
DO IPLAN=1,NPLAN
J = NPOIN2*(IPLAN-1)+I
DEPTH = MESH3D%Z%R(I+(NPLAN-1)*NPOIN2)-MESH3D%Z%R(J)
IF(I.EQ.1) THEN
WRITE(LU,102) 'Surfa of node',J,'=', MESH3D%Z%R(I+(NPLAN-1)*NPOIN2)
WRITE(LU,102) 'Eleva of node',J,'=', MESH3D%Z%R(J)
WRITE(LU,103) 'Depth of node',J,'=', DEPTH
ENDIF
END DO
END DO
Some of the listing is shown below, it's noticeable that the elevation is extremely high and obviously abnormal. This explained the aforementioned incorrect temperature profile in Fig-1 as the calculated depths of all the layers was 0 (except the bottom layer).
Surfa of node 1 = 0.17976931+309
Eleva of node 1 = 0.60028606E+02
Depth of node 1 = 0.17976931+309
Surfa of node 206 = 0.17976931+309
Eleva of node 206 = 0.17976931+309
Depth of node 206 = 0.00
Surfa of node 411 = 0.17976931+309
Eleva of node 411 = 0.17976931+309
Depth of node 411 = 0.00
Has anyone ever run into this? Any idea is greatly appreciated.
Regards,
Yunhao