Changeset 3007
- Timestamp:
- Jul 21, 2023, 2:54:24 PM (16 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3006 r3007 4116 4116 include "nir_leedat.F" (reading/loading of the data) in the module. 4117 4117 Also turn nirco2abs.F in a module. 4118 4119 == 21/07/2023 == EM 4120 Fix OpenMP bug in paleoclimate_mod; saved variables should be threadprivate. 4121 -
trunk/LMDZ.MARS/libf/phymars/paleoclimate_mod.F90
r2999 r3007 11 11 IMPLICIT NONE 12 12 13 LOGICAL :: paleoclimate ! False by default, is activate for paleoclimates specific processes (e.g., lag layer) 13 LOGICAL, SAVE :: paleoclimate ! False by default, is activate for paleoclimates specific processes (e.g., lag layer) 14 ! is initialized in conf_phys 15 !$OMP THREADPRIVATE(paleoclimate) 16 14 17 real, save, allocatable :: lag_h2o_ice(:,:) ! Thickness of the lag before H2O ice [m] 15 18 real, save, allocatable :: lag_co2_ice(:,:) ! Thickness of the lag before CO2 ice [m] 16 19 real, save :: albedo_perenialco2 ! Albedo for perenial co2 ice [1] 20 !$OMP THREADPRIVATE(lag_h2o_ice,lag_co2_ice,albedo_perenialco2) 21 17 22 CONTAINS 18 23
Note: See TracChangeset
for help on using the changeset viewer.