Changeset 2174 for palm/trunk/SOURCE/time_integration.f90
- Timestamp:
- Mar 13, 2017 8:18:57 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/time_integration.f90
r2119 r2174 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! Added support for nesting with cloud microphysics 23 23 ! 24 24 ! Former revisions: … … 250 250 251 251 USE arrays_3d, & 252 ONLY: diss, dzu, e, e_p, nr _p, prho, pt, pt_p, pt_init, q_init, q,&253 ql, ql_c, ql_v, ql_vp, qr _p, q_p, ref_state, rho_ocean, s, s_p, sa_p,&254 tend, u, u_p, v, vpt, v_p, w, w_p252 ONLY: diss, dzu, e, e_p, nr, nr_p, prho, pt, pt_p, pt_init, q_init, q,& 253 ql, ql_c, ql_v, ql_vp, qr, qr_p, q_p, ref_state, rho_ocean, & 254 s, s_p, sa_p, tend, u, u_p, v, vpt, v_p, w, w_p 255 255 256 256 USE calc_mean_profile_mod, & … … 603 603 CALL pmci_datatrans( nesting_mode ) 604 604 605 IF ( TRIM( nesting_mode ) == 'two-way' .OR. 605 IF ( TRIM( nesting_mode ) == 'two-way' .OR. & 606 606 nesting_mode == 'vertical' ) THEN 607 607 ! … … 611 611 CALL exchange_horiz( v, nbgp ) 612 612 CALL exchange_horiz( w, nbgp ) 613 IF ( .NOT. neutral ) CALL exchange_horiz( pt, nbgp ) 614 IF ( humidity ) CALL exchange_horiz( q, nbgp ) 615 IF ( passive_scalar ) CALL exchange_horiz( s, nbgp ) 616 IF ( .NOT. constant_diffusion ) CALL exchange_horiz( e, nbgp ) 613 IF ( .NOT. neutral ) CALL exchange_horiz( pt, nbgp ) 614 615 IF ( humidity ) THEN 616 617 CALL exchange_horiz( q, nbgp ) 618 619 IF ( cloud_physics .AND. microphysics_seifert ) THEN 620 ! CALL exchange_horiz( qc, nbgp ) 621 CALL exchange_horiz( qr, nbgp ) 622 ! CALL exchange_horiz( nc, nbgp ) 623 CALL exchange_horiz( nr, nbgp ) 624 ENDIF 625 626 ENDIF 627 628 IF ( passive_scalar ) CALL exchange_horiz( s, nbgp ) 629 IF ( .NOT. constant_diffusion ) CALL exchange_horiz( e, nbgp ) 617 630 ENDIF 618 631 ! … … 686 699 CALL calc_liquid_water_content 687 700 ENDIF 688 ! 701 ! 689 702 !-- If required, compute virtual potential temperature 690 703 IF ( humidity ) THEN
Note: See TracChangeset
for help on using the changeset viewer.