Changeset 2887 for trunk/LMDZ.MARS/libf/phymars/comsoil_h.F90
- Timestamp:
- Feb 1, 2023, 9:34:37 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/comsoil_h.F90
r2616 r2887 25 25 real,save,allocatable :: beta(:,:) ! beta_k coefficients 26 26 real,save :: mu 27 real,save,allocatable :: flux_geo(:) ! Geothermal Flux (W/m^2) 27 28 28 !$OMP THREADPRIVATE(tsoil,mthermdiff,thermdiff,coefq,coefd,alph,beta,mu 29 !$OMP THREADPRIVATE(tsoil,mthermdiff,thermdiff,coefq,coefd,alph,beta,mu,flux_geo) 29 30 30 31 contains … … 47 48 allocate(alph(ngrid,nsoilmx-1)) 48 49 allocate(beta(ngrid,nsoilmx-1)) 49 50 allocate(flux_geo(ngrid)) 50 51 51 52 end subroutine ini_comsoil_h … … 66 67 if (allocated(alph)) deallocate(alph) 67 68 if (allocated(beta)) deallocate(beta) 68 69 if (allocated(flux_geo)) deallocate(flux_geo) 69 70 end subroutine end_comsoil_h 70 71
Note: See TracChangeset
for help on using the changeset viewer.