- Timestamp:
- Jul 23, 2024, 3:29:36 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/surf_landice_mod.F90
r5102 r5103 227 227 PRINT*, 'alb_nir_sno_lic', alb_nir_sno_lic 228 228 229 firstcall = . false.229 firstcall = .FALSE. 230 230 ENDIF 231 231 !****************************************************************************************** … … 248 248 !**************************************************************************************** 249 249 ! landice_opt = 0 : soil_model, calcul_flux, fonte_neige, ... 250 ! landice_opt = 1 : prepare and callINterace Lmdz SISvat (INLANDSIS)250 ! landice_opt = 1 : prepare and CALL INterace Lmdz SISvat (INLANDSIS) 251 251 !**************************************************************************************** 252 252 … … 263 263 264 264 debut_is = debut 265 lafin_is = . false.265 lafin_is = .FALSE. 266 266 ! Suppose zero surface speed 267 267 u0(:) = 0.0 … … 299 299 300 300 IF (lafin) THEN 301 lafin_is = . true.301 lafin_is = .TRUE. 302 302 END IF 303 303 … … 312 312 emis_new, z0m, z0h, qsurf) 313 313 314 debut_is = . false.314 debut_is = .FALSE. 315 315 316 316 … … 330 330 331 331 ELSE 332 abort_message = 'Pb de coherence: landice_opt = 1 mais CPP_INLANDSIS = . false.'332 abort_message = 'Pb de coherence: landice_opt = 1 mais CPP_INLANDSIS = .FALSE.' 333 333 CALL abort_physic(modname, abort_message, 1) 334 334 END IF … … 506 506 507 507 if (precip_snow(j) > abs(fluxbs_1(j))) then 508 ok_remaining_freshsnow(j) = . true.508 ok_remaining_freshsnow(j) = .TRUE. 509 509 bsweight_fresh(j) = 1. 510 510 else 511 ok_remaining_freshsnow(j) = . false.511 ok_remaining_freshsnow(j) = .FALSE. 512 512 bsweight_fresh(j) = exp(-(abs(fluxbs_1(j)) - precip_snow(j)) / precip_snow(j)) 513 513 endif 514 514 else 515 ok_remaining_freshsnow(j) = . false.515 ok_remaining_freshsnow(j) = .FALSE. 516 516 fluxbs_1(j) = 0. 517 517 bsweight_fresh(j) = 0. … … 626 626 ) 627 627 628 ! callfonte_neige_export_xtrun_off_lic_0(knon,xtrun_off_lic_0_diag)628 ! CALL fonte_neige_export_xtrun_off_lic_0(knon,xtrun_off_lic_0_diag) 629 629 630 630 #endif … … 639 639 ! Send run-off on land-ice to coupler if coupled ocean. 640 640 ! run_off_lic has been calculated in fonte_neige or surf_inlandsis 641 ! If landice_opt>=2, corresponding callis done from surf_land_orchidee641 ! If landice_opt>=2, corresponding CALL is done from surf_land_orchidee 642 642 !**************************************************************************************** 643 643 IF (type_ocean=='couple' .AND. landice_opt < 2) THEN
Note: See TracChangeset
for help on using the changeset viewer.