Changeset 3130 for trunk/LMDZ.MARS/libf/phymars/albedocaps.F90
- Timestamp:
- Nov 20, 2023, 1:25:31 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/albedocaps.F90
r2999 r3130 11 11 USE mod_phys_lmdz_transfert_para, ONLY: bcast 12 12 USE mod_phys_lmdz_para, ONLY: is_master 13 USE paleoclimate_mod, ONLY: paleoclimate,albedo_peren ialco213 USE paleoclimate_mod, ONLY: paleoclimate,albedo_perennialco2 14 14 15 15 implicit none … … 21 21 integer,intent(in) :: ngrid 22 22 real,intent(in) :: piceco2(ngrid) ! amount of CO2 ice on the surface (kg/m2) 23 real,intent(inout) :: piceco2_peren(ngrid) ! amount of peren ial co2 ice (kg/m^2)23 real,intent(inout) :: piceco2_peren(ngrid) ! amount of perennial co2 ice (kg/m^2) 24 24 real,intent(out) :: psolaralb(ngrid,2) ! albedo of the surface 25 25 real,intent(out) :: emisref(ngrid) ! emissivity of the surface … … 109 109 if(paleoclimate) then 110 110 if((piceco2_peren(ig).gt.0.).and.(piceco2(ig).lt.piceco2_peren(ig))) then 111 psolaralb(ig,1) = albedo_peren ialco2112 psolaralb(ig,2) = albedo_peren ialco2111 psolaralb(ig,1) = albedo_perennialco2 112 psolaralb(ig,2) = albedo_perennialco2 113 113 piceco2_peren(ig) = piceco2(ig) 114 114 endif
Note: See TracChangeset
for help on using the changeset viewer.