Changeset 4068 for trunk/LMDZ.COMMON/libf/evolution/clim_state_rec.F90
- Timestamp:
- Feb 12, 2026, 12:32:15 PM (2 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/clim_state_rec.F90
r4065 r4068 31 31 32 32 !======================================================================= 33 SUBROUTINE write_restart(ps4PCM,pa4PCM,preff4PCM, tsurf4PCM,q4PCM,teta4PCM,air_mass4PCM)33 SUBROUTINE write_restart(ps4PCM,pa4PCM,preff4PCM,q4PCM,teta4PCM,air_mass4PCM) 34 34 !----------------------------------------------------------------------- 35 35 ! NAME … … 61 61 real(dp), intent(in) :: pa4PCM, preff4PCM 62 62 real(dp), dimension(:), intent(in) :: ps4PCM 63 real(dp), dimension(:,:), intent(in) :: t surf4PCM, teta4PCM, air_mass4PCM63 real(dp), dimension(:,:), intent(in) :: teta4PCM, air_mass4PCM 64 64 real(dp), dimension(:,:,:), intent(in) :: q4PCM 65 65 … … 75 75 ! ~~~~~~~~~~~~~ 76 76 if (ngrid == 1) then 77 call write_restart1D(ps4PCM,pa4PCM,preff4PCM, tsurf4PCM,q4PCM)77 call write_restart1D(ps4PCM,pa4PCM,preff4PCM,q4PCM) 78 78 return 79 79 end if … … 120 120 121 121 !======================================================================= 122 SUBROUTINE write_restart1D(ps4PCM,pa4PCM,preff4PCM, tsurf4PCM,q4PCM)122 SUBROUTINE write_restart1D(ps4PCM,pa4PCM,preff4PCM,q4PCM) 123 123 !----------------------------------------------------------------------- 124 124 ! NAME … … 151 151 real(dp), intent(in) :: pa4PCM, preff4PCM 152 152 real(dp), dimension(:), intent(in) :: ps4PCM 153 real(dp), dimension(:,:), intent(in) :: tsurf4PCM154 153 real(dp), dimension(:,:,:), intent(in) :: q4PCM 155 154 … … 170 169 write(funit,*) 'u', (u_PCM(1,l), l = 1,nlayer) 171 170 write(funit,*) 'v', (v_PCM(1,l), l = 1,nlayer) 172 write(funit,*) 'teta', (t surf4PCM(1,j), j = 1,nslope), (teta_PCM(1,l), l = 1,nlayer)171 write(funit,*) 'teta', (teta_PCM(1,l), l = 1,nlayer) 173 172 close(funit) 174 173
Note: See TracChangeset
for help on using the changeset viewer.
