Thankyou for the response.I want to capture turbulence intensity at each node but Telemac is having difficulty defining AK for some reason.
If I don't define AK then the results for the variable are "1.#INF".
If I define AK as:
TYPE(BIEF_OBJ), INTENT(IN) :: UN3, AK
IF(LEO.AND.SORG3D(28)) THEN
DO IPLAN = NPLAN-33,NPLAN
I3D = I1+NPOIN2*(IPLAN-1)
div = 0.666666
PRIVE%ADR(1)%P%R(I3D)=SQRT(div*AK%R(I3D)/UN3%R(I3D))
ENDIF
Then I get the error:
PRIVE%ADR(1)%P%R(I3D)=SQRT(div*AK%R(I3D)/UN3%R(I3D))
1
Error: Name ‘ak’ at (1) is an ambiguous reference to ‘ak’ from current program unit
which suggests to me there's a bad interaction. I assume AK is the correct variable for TKE in 3D.