Changeset 311 for palm/trunk
- Timestamp:
- May 11, 2009 3:02:15 PM (16 years ago)
- Location:
- palm/trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/DOC/app/index.html
r238 r311 279 279 <p style="margin: 0cm 0cm 5.1pt 72pt;"><span style="font-family: Thorndale;"><a href="chapter_5.1.html">5.1</a> 280 280 Installation of <span class="SpellE">new</span><span class="SpellE"></span> / other 281 <span class="SpellE">versions, version update</span><o:p></o:p></span></p> 281 <span class="SpellE">versions, version update</span></span><span style="font-family: Thorndale;" lang="EN-GB"></span> 282 283 </p><p style="margin: 12pt 0cm 0.0001pt 36pt;"><span style="font-family: Thorndale;"><a href="appendix_a.html"><span style="" lang="EN-GB">Appendix A</span></a></span><span style="font-family: Thorndale;" lang="EN-GB"> PALM error messages</span></p> 282 284 <font color="#000000"> 283 285 <br> -
palm/trunk/SOURCE/CURRENT_MODIFICATIONS
r308 r311 41 41 Changed: 42 42 ------- 43 A Link to the website appendix_a.html is printed for further information 44 about the possible errors. (message.f90) 45 43 46 Temperature gradient criterion for estimating the boundary layer height 44 47 replaced by the gradient criterion of Sullivan et al. (1998). (flow_statistics) -
palm/trunk/SOURCE/message.f90
r226 r311 32 32 CHARACTER(LEN=6) :: message_identifier 33 33 CHARACTER(LEN=*) :: routine_name 34 CHARACTER(LEN=200) :: header_string 34 CHARACTER(LEN=200) :: header_string, information_string_1,information_string_2 35 35 36 36 INTEGER :: file_id, flush, i, message_level, output_on_pe, requested_action … … 61 61 header_string = TRIM( header_string ) // ' ' // message_identifier // & 62 62 ' generated by routine: ' // TRIM( routine_name ) 63 64 information_string_1 = 'Further information can be found at' 65 IF(message_identifier(1:2) == 'NC') THEN 66 information_string_2 = 'http://www.muk.uni-hannover.de/~raasch/PALM_group/doc' // & 67 '/app/appendix_a.html#NC****' 68 ELSE 69 information_string_2 = 'http://www.muk.uni-hannover.de/~raasch/PALM_group/doc' // & 70 '/app/appendix_a.html#' // message_identifier 71 END IF 72 63 73 64 74 ! print*, '#3' … … 105 115 WRITE( *, '(4X,A)' ) TRIM( message_string ) 106 116 ! print*, '#8' 117 WRITE( *, '(4X,A)' ) '' 118 WRITE( *, '(4X,A)' ) TRIM( information_string_1 ) 119 WRITE( *, '(4X,A)' ) TRIM( information_string_2 ) 107 120 108 121 ELSE … … 122 135 ENDDO 123 136 WRITE( file_id, '(4X,A)' ) TRIM( message_string ) 124 137 WRITE( *, '(4X,A)' ) '' 138 WRITE( file_id, '(4X,A)' ) TRIM( information_string_1 ) 139 WRITE( file_id, '(4X,A)' ) TRIM( information_string_2 ) 125 140 ! 126 141 !-- Flush buffer, if requested
Note: See TracChangeset
for help on using the changeset viewer.