Changeset 108 for palm/trunk/SOURCE/header.f90
- Timestamp:
- Aug 24, 2007 3:10:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/header.f90
r103 r108 6 6 ! Output of informations for coupled model runs (boundary conditions etc.) 7 7 ! + output of momentumfluxes at the top boundary 8 ! Rayleigh damping for ocean, e_init 8 9 ! 9 10 ! Former revisions: … … 241 242 IF ( use_upstream_for_tke ) WRITE ( io, 143 ) 242 243 IF ( rayleigh_damping_factor /= 0.0 ) THEN 243 WRITE ( io, 123 ) rayleigh_damping_height, rayleigh_damping_factor 244 IF ( .NOT. ocean ) THEN 245 WRITE ( io, 123 ) 'above', rayleigh_damping_height, & 246 rayleigh_damping_factor 247 ELSE 248 WRITE ( io, 123 ) 'below', rayleigh_damping_height, & 249 rayleigh_damping_factor 250 ENDIF 244 251 ENDIF 245 252 IF ( humidity ) THEN … … 1091 1098 ENDIF 1092 1099 IF ( .NOT. constant_diffusion) THEN 1100 IF ( e_init > 0.0 ) WRITE ( io, 455 ) e_init 1093 1101 IF ( e_min > 0.0 ) WRITE ( io, 454 ) e_min 1094 1102 IF ( wall_adjustment ) WRITE ( io, 453 ) wall_adjustment_factor … … 1240 1248 ' timestep changes') 1241 1249 122 FORMAT (' --> Time differencing scheme: ',A) 1242 123 FORMAT (' --> Rayleigh-Damping active, starts abovez = ',F8.2,' m'/ &1250 123 FORMAT (' --> Rayleigh-Damping active, starts ',A,' z = ',F8.2,' m'/ & 1243 1251 ' maximum damping coefficient: ',F5.3, ' 1/s') 1244 1252 124 FORMAT (' Spline-overshoots are being suppressed') … … 1468 1476 453 FORMAT (' Mixing length is limited to ',F4.2,' * z') 1469 1477 454 FORMAT (' TKE is not allowed to fall below ',E9.2,' (m/s)**2') 1478 455 FORMAT (' initial TKE is prescribed as ',E9.2,' (m/s)**2') 1470 1479 470 FORMAT (//' Actions during the simulation:'/ & 1471 1480 ' -----------------------------'/)
Note: See TracChangeset
for help on using the changeset viewer.