I have a problem in make when I active analytic sea surface height, I get:
-------------------------------------------------------------------------
cd Build; /opt/pb/gcc-5.1.0/bin/gfortran -c -frepack-arrays -fopenmp -O3 -ffast-math -ffree-form -ffree-line-length-none mp_exchange.f90
cd Build; /opt/pb/gcc-5.1.0/bin/gfortran -c -frepack-arrays -fopenmp -O3 -ffast-math -ffree-form -ffree-line-length-none analytical.f90
analytical.f90
CLIMA(ng)%ssh(i,j)=???
1
Error: Invalid character in name at (1)
make: *** [Build/analytical.o] Error 1
-------------------------------------------------------------------------
I have already check analytical.f90 file in Ln 1100 and Col 32, I have:
!-----------------------------------------------------------------------
! Set sea surface height (meters).
!-----------------------------------------------------------------------
!
IF (LsshCLM(ng)) THEN
DO j=JstrT,JendT
DO i=IstrT,IendT
CLIMA(ng)%ssh(i,j)=???
END DO
END DO
Do I need establish a value in "CLIMA(ng)%ssh(i,j)=???"?
I hope you can help me, thanks in advance.
Mar.Mo.