Changeset 1125 for LMDZ4/branches/LMDZ4-dev/libf/phylmd/cpl_mod.F90
- Timestamp:
- Mar 17, 2009, 11:32:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4-dev/libf/phylmd/cpl_mod.F90
r1079 r1125 359 359 read_u0(:,:), read_v0(:,:), tmp_r0(:,:)) 360 360 !$OMP END MASTER 361 CALL WriteField('read_u0',read_u0) 362 CALL WriteField('read_v0',read_v0) 363 CALL WriteField('read_r0',tmp_r0) 361 364 362 ELSE 365 363 read_u0(:,:) = 0. … … 442 440 443 441 SUBROUTINE cpl_receive_seaice_fields(knon, knindex, & 444 tsurf_new, alb_new )442 tsurf_new, alb_new, u0_new, v0_new) 445 443 ! 446 444 ! This routine returns the fields for the seaice that have been read from the coupler … … 459 457 REAL, DIMENSION(klon), INTENT(OUT) :: tsurf_new 460 458 REAL, DIMENSION(klon), INTENT(OUT) :: alb_new 459 REAL, DIMENSION(klon), INTENT(OUT) :: u0_new 460 REAL, DIMENSION(klon), INTENT(OUT) :: v0_new 461 461 462 462 ! Local variables … … 472 472 CALL cpl2gath(read_alb_sic, alb_new, knon, knindex) 473 473 CALL cpl2gath(read_sic, sic_new, knon, knindex) 474 CALL cpl2gath(read_u0, u0_new, knon, knindex) 475 CALL cpl2gath(read_v0, v0_new, knon, knindex) 474 476 475 477 !*************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.