Changeset 1324 for palm/trunk/SOURCE/data_output_spectra.f90
- Timestamp:
- Mar 21, 2014 9:13:16 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/data_output_spectra.f90
r1323 r1324 20 20 ! Current revisions: 21 21 ! ----------------- 22 ! 22 ! Bugfix: module statistics and module spectrum added, missing variables in ONLY 23 ! arguments added 23 24 ! 24 25 ! Former revisions: … … 58 59 59 60 USE control_parameters, & 60 ONLY: average_count_sp, averaging_interval_sp, dosp_time_count 61 ONLY: average_count_sp, averaging_interval_sp, dosp_time_count, & 62 message_string, netcdf_output, run_description_header, & 63 time_since_reference_point 61 64 62 65 USE cpulog, & … … 70 73 71 74 USE spectrum, & 72 ONLY: data_output_sp 75 ONLY: data_output_sp, spectra_direction 73 76 74 77 USE statistics, & … … 274 277 SUBROUTINE data_output_spectra_x( m, cranz, pr, frame_written ) 275 278 279 USE arrays_3d, & 280 ONLY: zu, zw 276 281 USE constants, & 277 282 ONLY: pi 278 283 279 284 USE control_parameters, & 280 ONLY: averaging_interval_sp 285 ONLY: averaging_interval_sp, run_description_header, simulated_time_chr 281 286 282 287 USE grid_variables, & … … 290 295 USE pegrid 291 296 297 USE statistics, & 298 ONLY: spectrum_x 299 292 300 USE spectrum, & 293 ONLY: comp_spectra_level, n_sp_x, plot_spectra_level 301 ONLY: comp_spectra_level, header_char, lstyles, klist_x, n_sp_x, & 302 plot_spectra_level, utext_char, ytext_char 294 303 295 304 IMPLICIT NONE … … 469 478 SUBROUTINE data_output_spectra_y( m, cranz, pr, frame_written ) 470 479 480 USE arrays_3d, & 481 ONLY: zu, zw 482 471 483 USE constants, & 472 484 ONLY: pi 473 485 474 486 USE control_parameters, & 475 ONLY: averaging_interval_sp 487 ONLY: averaging_interval_sp, run_description_header, simulated_time_chr 476 488 477 489 USE grid_variables, & … … 484 496 485 497 USE pegrid 486 487 USE spectrum comp_spectra_level, plot_spectra_level 498 499 USE statistics, & 500 ONLY: spectrum_y 501 502 USE spectrum, & 503 ONLY: comp_spectra_level, header_char, klist_y, lstyles, n_sp_y, & 504 plot_spectra_level, utext_char, ytext_char 488 505 489 506 IMPLICIT NONE
Note: See TracChangeset
for help on using the changeset viewer.