Changeset 131 for LMDZ.3.3/branches/rel-LF/libf
- Timestamp:
- Sep 13, 2000, 3:41:01 PM (24 years ago)
- Location:
- LMDZ.3.3/branches/rel-LF/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ.3.3/branches/rel-LF/libf/phylmd/interface_surf.F90
r121 r131 295 295 ! 296 296 if (ocean == 'couple') then 297 297 ! nexca = 0 298 298 if (nexca == 0) then 299 299 abort_message='nexca = 0 dans interfoce_cpl' … … 362 362 cal = 0. 363 363 dif_grnd = 0. 364 beta = 1. 364 365 365 366 ! else if (ocean == 'slab ') then … … 761 762 real, allocatable, dimension(:,:),save :: tamp_zmasq 762 763 real, dimension(iim, jjm+1) :: deno 764 ! 765 logical, save :: first_appel = .true. 766 logical :: check = .true. 763 767 ! 764 768 ! Initialisation 765 769 ! 766 if (debut) then 770 if (check) write(*,*)'Entree ',modname,'nisurf = ',nisurf 771 772 if (first_appel) then 767 773 sum_error = 0 768 774 allocate(cpl_sols(knon,2), stat = error); sum_error = sum_error + error … … 780 786 allocate(read_sst(iim, jjm+1), stat = error); sum_error = sum_error + error 781 787 allocate(read_sic(iim, jjm+1), stat = error); sum_error = sum_error + error 782 allocate(read_sit(iim, jjm+1), stat = error); sum_error = sum_error + error783 788 allocate(read_sit(iim, jjm+1), stat = error); sum_error = sum_error + error 784 789 allocate(read_alb_sic(iim, jjm+1), stat = error); sum_error = sum_error + error … … 832 837 endif 833 838 834 endif ! fin if (debut) 839 first_appel = .false. 840 endif ! fin if (first_appel) 835 841 836 842 ! fichier restart et fichiers histoires -
LMDZ.3.3/branches/rel-LF/libf/phylmd/oasis.F
r121 r131 58 58 c Define the model name 59 59 c 60 clmodnam = ' toyatm' ! as in $NBMODEL in Cpl/Nam/namcouple.tmp60 clmodnam = 'lmdz.x' ! as in $NBMODEL in Cpl/Nam/namcouple.tmp 61 61 c 62 62 c Define the coupler name … … 162 162 c Define names of each model as in $NBMODEL line of namcouple 163 163 c (used for CLIM/MPI2 only) 164 cmpi_modnam(1)=' toyatm'165 cmpi_modnam(2)=' toyoce'164 cmpi_modnam(1)='lmdz.x' 165 cmpi_modnam(2)='oce.xx' 166 166 c Start the coupling 167 167 c -
LMDZ.3.3/branches/rel-LF/libf/phylmd/oasis.h
r98 r131 10 10 11 11 CHARACTER*8 cchan 12 PARAMETER ( cchan=' PIPE' )12 PARAMETER ( cchan='CLIM' ) 13 13 C 14 14 C --- end of oasis.h
Note: See TracChangeset
for help on using the changeset viewer.