Changeset 145 for palm/trunk/SOURCE/write_var_list.f90
- Timestamp:
- Jan 9, 2008 8:17:38 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/write_var_list.f90
r143 r145 4 4 ! Actual revisions: 5 5 ! ----------------- 6 ! -cross_ts_*,6 ! +numprocs, hor_index_bounds, -cross_ts_*, npex, npey 7 7 ! hom_sum, volume_flow_area, volume_flow_initial moved from write_3d_binary 8 8 ! to here … … 44 44 ! Description: 45 45 ! ------------ 46 ! Writing values of control variables to restart-file (binary format) 46 ! Writing values of control variables to restart-file (binary format). 47 ! These informations are only written to the file opened by PE0. 47 48 !------------------------------------------------------------------------------! 48 49 … … 63 64 64 65 65 66 binary_version = '3.1' 67 68 WRITE ( 14 ) binary_version ! opened in write_3d_binary 69 66 binary_version = '3.2' 67 68 WRITE ( 14 ) binary_version 69 70 WRITE ( 14 ) 'numprocs ' 71 WRITE ( 14 ) numprocs 72 WRITE ( 14 ) 'hor_index_bounds ' 73 WRITE ( 14 ) hor_index_bounds 70 74 WRITE ( 14 ) 'nz ' 71 75 WRITE ( 14 ) nz … … 227 231 WRITE ( 14 ) 'netcdf_precision ' 228 232 WRITE ( 14 ) netcdf_precision 229 WRITE ( 14 ) 'npex '230 WRITE ( 14 ) npex231 WRITE ( 14 ) 'npey '232 WRITE ( 14 ) npey233 233 WRITE ( 14 ) 'nsor_ini ' 234 234 WRITE ( 14 ) nsor_ini
Note: See TracChangeset
for help on using the changeset viewer.