C $Id: ini_fields.F,v 1.1 1998/04/22 19:15:30 cnh Exp $ #include "CPP_EEOPTIONS.h" CStartOfInterface SUBROUTINE INI_FIELDS( myThid ) C /==========================================================\ C | SUBROUTINE INI_FIELDS | C | o Initialise model fields | C |==========================================================| C | Initial conditions of the model state variables are | C | set here. For continuation runs a restart file will be | C | used. For original runs custom rules can be included | C | here. | C \==========================================================/ C === Global variables === #include "SIZE.h" #include "EEPARAMS.h" #include "PARAMS.h" C == Routine arguments == C myThid - Number of this instance of INI_FIELDS INTEGER myThid CEndOfInterface C-- Set model variables to initial/restart conditions IF ( startTime .EQ. 0. ) THEN CALL INI_UVEL( myThid ) CALL INI_VVEL( myThid ) CALL INI_THETA( myThid ) CALL INI_SALT( myThid ) ELSE ENDIF RETURN END