- Timestamp:
- May 6, 2015, 12:14:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/carbon_cycle_mod.F90
r3817 r3825 86 86 87 87 USE dimphy 88 USE comgeomphy88 USE geometry_mod, ONLY : cell_area 89 89 USE mod_phys_lmdz_transfert_para 90 90 USE infotrac_phy … … 289 289 ! 5) Calculate total area of the earth surface 290 290 ! -------------------------------------------- 291 CALL reduce_sum(SUM( airephy),airetot)291 CALL reduce_sum(SUM(cell_area),airetot) 292 292 CALL bcast(airetot) 293 293 … … 308 308 USE phys_cal_mod, ONLY : mth_cur, mth_len 309 309 USE phys_cal_mod, ONLY : day_cur 310 USE comgeomphy311 310 USE indice_sol_mod 312 311 USE inifis_mod, ONLY: lunout 312 USE geometry_mod, ONLY : cell_area 313 313 314 314 IMPLICIT NONE … … 443 443 444 444 ! Calculate a global mean value of delta CO2 flux 445 fco2_tmp(1:klon) = fco2_tmp(1:klon) * airephy(1:klon)445 fco2_tmp(1:klon) = fco2_tmp(1:klon) * cell_area(1:klon) 446 446 CALL reduce_sum(SUM(fco2_tmp),sumtmp) 447 447 CALL bcast(sumtmp)
Note: See TracChangeset
for help on using the changeset viewer.