Changeset 3932 for palm/trunk/SOURCE/pmc_interface_mod.f90
- Timestamp:
- Apr 24, 2019 5:31:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/pmc_interface_mod.f90
r3888 r3932 20 20 ! Current revisions: 21 21 ! ------------------ 22 ! 22 ! Add missing if statements for call of pmc_set_dataarray_name for TKE and 23 ! dissipation. 23 24 ! 24 25 ! Former revisions: … … 1341 1342 !-- design of model coupler, however, data array names must be already 1342 1343 !-- available at this point. 1343 CALL pmc_set_dataarray_name( 'coarse', 'e' ,'fine', 'e', ierr ) 1344 IF ( ( rans_mode_parent .AND. rans_mode ) .OR. & 1345 ( .NOT. rans_mode_parent .AND. .NOT. rans_mode .AND. & 1346 .NOT. constant_diffusion ) ) THEN 1347 CALL pmc_set_dataarray_name( 'coarse', 'e' ,'fine', 'e', ierr ) 1348 ENDIF 1344 1349 ! 1345 1350 !-- Nesting of dissipation rate only if both parent and child are in RANS 1346 !-- mode and TKE-epsilo closure is applied. Please s oalso comment for TKE1351 !-- mode and TKE-epsilo closure is applied. Please see also comment for TKE 1347 1352 !-- above. 1348 CALL pmc_set_dataarray_name( 'coarse', 'diss' ,'fine', 'diss', ierr ) 1353 IF ( rans_mode_parent .AND. rans_mode .AND. rans_tke_e ) THEN 1354 CALL pmc_set_dataarray_name( 'coarse', 'diss' ,'fine', 'diss', ierr ) 1355 ENDIF 1349 1356 1350 1357 IF ( .NOT. neutral ) THEN … … 1511 1518 1512 1519 DO WHILE ( pmc_c_getnextarray( myname ) ) 1520 ! 1513 1521 !-- Note that cg%nz is not the original nz of parent, but the highest 1514 1522 !-- parent-grid level needed for nesting.
Note: See TracChangeset
for help on using the changeset viewer.