Changeset 2951
- Timestamp:
- Apr 27, 2023, 4:37:46 PM (19 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2947 r2951 4014 4014 written in the startfile). 4015 4015 Introduce the possibility to prescribe subsurface ice in the 1D model 4016 4017 == 27/04/2023 == EM 4018 Fix OpenMP bug on inertiesoil, unnecessary loop and a line 4019 too long for fixed fortran format. 4020 Minor fix for picky gfortran compiler in testphys1d (no .eq. for logicals!) -
trunk/LMDZ.MARS/libf/phymars/comsoil_h.F90
r2942 r2951 15 15 ! soil_settings.F) 16 16 17 !$OMP THREADPRIVATE(layer,mlayer,inertiedat, volcapa)17 !$OMP THREADPRIVATE(layer,mlayer,inertiedat,inertiesoil,volcapa) 18 18 19 19 ! variables (FC: built in firstcall in soil.F) -
trunk/LMDZ.MARS/libf/phymars/dyn1d/testphys1d.F
r2948 r2951 992 992 write_prof=.false. 993 993 call getin("write_prof",write_prof) 994 IF (write_prof .eq..true.) then994 IF (write_prof) then 995 995 DO iq = 1, nq 996 996 call writeprofile(nlayer,q(:,iq),noms(iq),iq) -
trunk/LMDZ.MARS/libf/phymars/soil_settings.F
r2942 r2951 320 320 if (.not.ok) then 321 321 write(*,*)'soil_settings: Field <inertiesoil> not found!' 322 write(*,*)' => Building <inertiesoil> from surface values <inertiedat>'323 do iloop=1,nsoil 324 do islope=1,nslope322 write(*,*)' => Building <inertiesoil> from surface values'// 323 & ' <inertiedat>' 324 do islope=1,nslope 325 325 inertiesoil(:,:,islope)=inertiedat(:,:) 326 enddo 327 enddo 326 enddo 328 327 else ! <inertiesoil> found 329 328 if (interpol) then ! put values in oldtsoil
Note: See TracChangeset
for help on using the changeset viewer.