Changeset 5259 for LMDZ6/trunk
- Timestamp:
- Oct 22, 2024, 5:32:42 PM (2 months ago)
- Location:
- LMDZ6/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/inlandsis/sisvat_ts2.f90
r5246 r5259 262 262 ! IRs__D(ig) = dIRsdT(ig)* Tsf_SV(ig) * 0.75 !TsisSV(ig,isl) * 0.75 !: 263 263 dIRsdT(ig) = Eso_sv(ig)* StefBo * 4. & ! - d(IR)/d(T) 264 * TsisSV(ig,isl) & !265 * TsisSV(ig,isl) & !266 * TsisSV(ig,isl) & !264 * TsisSV(ig,isl) & 265 * TsisSV(ig,isl) & 266 * TsisSV(ig,isl) 267 267 IRs__D(ig) = dIRsdT(ig)* TsisSV(ig,isl) * 0.75 !: 268 268 END DO -
LMDZ6/trunk/libf/phylmd/inlandsis/surf_inlandsis_mod.F90
r5084 r5259 1054 1054 ! include "dimsoil.h" 1055 1055 include "clesphys.h" 1056 include "thermcell.h"1057 1056 include "compbl.h" 1058 1057 … … 1288 1287 1289 1288 include "netcdf.inc" 1290 ! include "indicesol.h"1291 ! include "dimsoil.h"1292 1289 include "clesphys.h" 1293 include "thermcell.h"1294 1290 include "compbl.h" 1295 1291 -
LMDZ6/trunk/libf/phylmd/surf_landice_mod.F90
r5217 r5259 52 52 USE lmdz_blowing_snow_ini, ONLY : c_esalt_bs, zeta_bs, pbst_bs, prt_bs, rhoice_bs, rhohard_bs 53 53 USE lmdz_blowing_snow_ini, ONLY : rhofresh_bs, tau_eqsalt_bs, tau_dens0_bs, tau_densmin_bs 54 #ifdef CPP_INLANDSIS55 54 USE surf_inlandsis_mod, ONLY : surf_inlandsis 56 #endif57 55 58 56 USE indice_sol_mod 57 USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INLANDSIS 59 58 60 59 ! INCLUDE "indicesol.h" … … 265 264 ! CALL to INLANDSIS interface 266 265 !**************************************************************************************** 267 #ifdef CPP_INLANDSIS 266 IF (CPPKEY_INLANDSIS) THEN 268 267 269 268 #ifdef ISO … … 342 341 343 342 344 #else 343 ELSE 345 344 abort_message='Pb de coherence: landice_opt = 1 mais CPP_INLANDSIS = .false.' 346 345 CALL abort_physic(modname,abort_message,1) 347 #endif 346 END IF 348 347 349 348 -
LMDZ6/trunk/makelmdz
r5253 r5259 482 482 fi 483 483 484 if [[ "$inlandsis" == "true" ]] 485 then484 src_dirs="$src_dirs phy${physique}/inlandsis" 485 if [[ "$inlandsis" == "true" ]]; then 486 486 CPP_KEY="$CPP_KEY CPP_INLANDSIS" 487 src_dirs="$src_dirs phy${physique}/inlandsis"488 487 fi 489 488 -
LMDZ6/trunk/makelmdz_fcm
r5253 r5259 471 471 fi 472 472 473 if [[ "$inlandsis" == "true" ]] 474 then473 INLANDSIS_PATH="$LIBFGCM/phy${physique}/inlandsis" 474 if [[ "$inlandsis" == "true" ]]; then 475 475 CPP_KEY="$CPP_KEY CPP_INLANDSIS" 476 INLANDSIS_PATH="$LIBFGCM/phy${physique}/inlandsis"477 476 fi 478 477
Note: See TracChangeset
for help on using the changeset viewer.