Changeset 5103 for LMDZ6/branches/Amaury_dev/libf/phylmd/Dust/read_vent.f90
- Timestamp:
- Jul 23, 2024, 3:29:36 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/Dust/read_vent.f90
r5101 r5103 106 106 107 107 ! added by JE from the nh SPLA, dyn3d/read_reanalyse.F which is not available any more 108 subroutinecorrectbid(iim, nl, x)108 SUBROUTINE correctbid(iim, nl, x) 109 109 integer :: iim, nl 110 110 real :: x(iim + 1, nl) … … 116 116 if(abs(x(i, l))>1.e10) then 117 117 zz = 0.5 * (x(i - 1, l) + x(i + 1, l)) 118 ! print*,'correction ',i,l,x(i,l),zz118 ! PRINT*,'correction ',i,l,x(i,l),zz 119 119 x(i, l) = zz 120 120 endif … … 123 123 124 124 return 125 end subroutinecorrectbid125 END SUBROUTINE correctbid 126 126 127 127
Note: See TracChangeset
for help on using the changeset viewer.