Where does TIMELESS_DATA be difined?

Report or discuss software problems and other woes

Moderators: arango, robertson

Post Reply
Message
Author
zhaoqian
Posts: 45
Joined: Tue Nov 11, 2008 5:45 pm
Location: National Marine Environmental Mornitoring Center

Where does TIMELESS_DATA be difined?

#1 Unread post by zhaoqian »

In \Nonliear\initial.F, it write
! If applicable, read in input data.
!
# ifdef TIMELESS_DATA
!
CALL get_idata (ng)
# endif
CALL get_data (ng)

but I can't understand the meaning of TIMELESS_DATA and can't find where(in which file) it is difined.

Thanks a lot for your instruction.

zhaoqian
Posts: 45
Joined: Tue Nov 11, 2008 5:45 pm
Location: National Marine Environmental Mornitoring Center

Re: Where does TIMELESS_DATA be difined?

#2 Unread post by zhaoqian »

I have found it in globaldefs.h.
/*
** Check if processing timeless data.
*/

#if (!defined ANA_PSOURCE && \
(defined UV_PSOURCE || defined TS_PSOURCE || \
defined Q_PSOURCE)) || \
(defined SSH_TIDES || defined UV_TIDES)
# define TIMELESS_DATA
#endif

Post Reply