Changeset 145 for palm/trunk/SOURCE/user_interface.f90
- Timestamp:
- Jan 9, 2008 8:17:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/user_interface.f90
r144 r145 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! new subroutineuser_spectra6 ! +routines user_read_restart_data, user_spectra 7 7 ! 8 8 ! Former revisions: … … 177 177 178 178 179 SUBROUTINE user_ init180 181 !------------------------------------------------------------------------------! 182 ! 183 ! Description: 184 ! ------------ 185 ! Execution of user-defined initializing actions179 SUBROUTINE user_read_restart_data 180 181 !------------------------------------------------------------------------------! 182 ! 183 ! Description: 184 ! ------------ 185 ! Reading restart data from file(s) 186 186 !------------------------------------------------------------------------------! 187 187 188 188 USE control_parameters 189 189 USE indices 190 USE netcdf_control191 190 USE pegrid 192 191 USE user … … 196 195 CHARACTER (LEN=20) :: field_char 197 196 ! 198 !-- Here the user-defined initializing actions follow:197 !-- Here the reading of user-defined restart data follows: 199 198 !-- Sample for user-defined output 200 199 ! ALLOCATE( u2(nzb:nzt+1,nys-1:nyn+1,nxl-1:nxr+1) ) … … 224 223 ! ENDIF 225 224 226 ! 225 END SUBROUTINE user_read_restart_data 226 227 228 229 SUBROUTINE user_init 230 231 !------------------------------------------------------------------------------! 232 ! 233 ! Description: 234 ! ------------ 235 ! Execution of user-defined initializing actions 236 !------------------------------------------------------------------------------! 237 238 USE control_parameters 239 USE indices 240 USE netcdf_control 241 USE pegrid 242 USE user 243 244 IMPLICIT NONE 245 246 CHARACTER (LEN=20) :: field_char 247 ! 248 !-- Here the user-defined initializing actions follow: 227 249 !-- Sample for user-defined time series 228 250 !-- For each time series quantity you have to give a label and a unit,
Note: See TracChangeset
for help on using the changeset viewer.