Changeset 2310 for trunk/NEMO/LIM_SRC_3/limdia.F90
- Timestamp:
- 2010-10-25T16:52:59+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEMO/LIM_SRC_3/limdia.F90
r1715 r2310 19 19 USE in_out_manager 20 20 USE par_ice ! ice parameters 21 USE ice_oce ! ice variables 22 USE daymod 21 23 USE dom_ice 22 24 USE ice … … 25 27 USE dom_oce 26 28 USE sbc_oce ! Surface boundary condition: ocean fields 27 29 USE dom_oce 30 USE lib_mpp 28 31 IMPLICIT NONE 29 32 PRIVATE … … 445 448 INTEGER :: jv , & ! dummy loop indice 446 449 & ntot , & 447 & ndeb 450 & ndeb , & 451 & irecl 448 452 449 453 REAL(wp) :: zxx0, zxx1 ! temporary scalars 450 454 451 455 CHARACTER(len=jpchinf) :: titinf 456 CHARACTER(len=50) :: clname 452 457 !!------------------------------------------------------------------- 453 458 … … 573 578 574 579 ! opening "ice_evolu" file 575 CALL ctl_opn( numevo_ice, 'ice.evolu', 'REPLACE', 'FORMATTED', 'SEQUENTIAL', -1, numout, lwp ) 580 IF ( lk_mpp ) THEN 581 WRITE(clname,FMT="('ice.evolu_',I4.4)") narea-1 582 ELSE 583 clname = 'ice.evolu' 584 END IF 585 irecl = ( jpchinf + 1 ) * nvinfo 586 CALL ctlopn( numevo_ice, clname, 'UNKNOWN', 'FORMATTED', 'SEQUENTIAL', & 587 & irecl, numout, narea, 1 ) 576 588 577 589 !- ecriture de 2 lignes d''entete :
Note: See TracChangeset
for help on using the changeset viewer.