Ignore:
Timestamp:
09/05/14 14:42:27 (10 years ago)
Author:
millour
Message:

Added features for the Saturn case:

  • Added possibility to run without startfi or restartfi.nc files
  • Added reference temperature "temp_profile.txt" profile to start from
  • More XIOS outputs, and put them on "presnivs (pressure) vertical coordinate
  • Added "-openmp-threadprivate compat" OpenMP option in Ada arch file

EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/branches/SATURN_DYNAMICO/LMDZ.COMMON/libf/phystd/iostart.F90

    r245 r270  
    4444CONTAINS 
    4545 
    46   SUBROUTINE open_startphy(filename) 
     46  SUBROUTINE open_startphy(filename,found) 
    4747  USE netcdf, only: NF90_OPEN, NF90_NOERR, NF90_NOWRITE, nf90_strerror 
    4848  USE mod_phys_lmdz_para, only: is_master, bcast 
    4949  IMPLICIT NONE 
    50     CHARACTER(LEN=*) :: filename 
     50    CHARACTER(LEN=*),INTENT(IN) :: filename 
     51    LOGICAL,INTENT(OUT),OPTIONAL   :: found  
    5152    INTEGER          :: ierr 
    5253 
     
    5657        write(*,*)'open_startphy: problem opening file '//trim(filename) 
    5758        write(*,*)trim(nf90_strerror(ierr)) 
    58         CALL ABORT 
     59        !CALL ABORT 
     60        found=.false. 
     61      ELSE 
     62        found=.true. 
    5963      ENDIF 
    6064    ENDIF 
    6165     
    6266    CALL bcast(nid_start) ! tell all procs about nid_start 
     67    if(present(found)) CALL bcast(found) 
    6368   
    6469  END SUBROUTINE open_startphy 
Note: See TracChangeset for help on using the changeset viewer.