Changeset 4071 for LMDZ6/trunk/libf/phylmdiso
- Timestamp:
- Jan 31, 2022, 9:20:17 PM (3 years ago)
- Location:
- LMDZ6/trunk/libf/phylmdiso
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmdiso/phyetat0.F90
r4056 r4071 471 471 it = 0 472 472 DO iq = 1, nqtot 473 IF(.NOT. tracers(iq)%isAdvected .OR. tracers(iq)%isH2Ofamily) CYCLE473 IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE 474 474 it = it+1 475 475 found=phyetat0_get(1,trs(:,it),"trs_"//TRIM(tracers(iq)%name), & -
LMDZ6/trunk/libf/phylmdiso/phyredem.F90
r4056 r4071 350 350 it = 0 351 351 DO iq = 1, nqtot 352 IF(.NOT. tracers(iq)%isAdvected .OR. tracers(iq)%isH2Ofamily) CYCLE352 IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE 353 353 it = it+1 354 354 CALL put_field(pass,"trs_"//tracers(iq)%name, "", trs(:, it)) -
LMDZ6/trunk/libf/phylmdiso/phys_output_mod.F90
r4056 r4071 504 504 itr = 0 505 505 DO iq = 1, nqtot 506 IF(.NOT. tracers(iq)%isAdvected .OR. tracers(iq)%isH2Ofamily) CYCLE506 IF(.NOT.(tracers(iq)%isAdvected .AND. tracers(iq)%isInPhysics)) CYCLE 507 507 itr = itr + 1 508 508 dn = 'd'//TRIM(tracers(iq)%name)//'_' -
LMDZ6/trunk/libf/phylmdiso/physiq_mod.F90
r4065 r4071 2474 2474 itr = 0 2475 2475 DO iq = 1, nqtot 2476 IF( tracers(iq)%isH2Ofamily) CYCLE2476 IF(.NOT.tracers(iq)%isInPhysics) CYCLE 2477 2477 itr = itr+1 2478 2478 !#ifdef ISOVERIF … … 2498 2498 itr = 0 2499 2499 do iq = 1, nqtot 2500 IF( tracers(iq)%isH2Ofamily) CYCLE2500 IF(.NOT.tracers(iq)%isInPhysics) CYCLE 2501 2501 itr = itr+1 2502 2502 tr_ancien(:,:,itr)=tr_seri(:,:,itr) … … 6531 6531 itr = 0 6532 6532 DO iq = 1, nqtot 6533 IF( tracers(iq)%isH2Ofamily) CYCLE6533 IF(.NOT.tracers(iq)%isInPhysics) CYCLE 6534 6534 itr = itr+1 6535 6535 DO k = 1, klev
Note: See TracChangeset
for help on using the changeset viewer.