Ignore:
Timestamp:
Mar 20, 2014 8:40:49 AM (10 years ago)
Author:
raasch
Message:

ONLY-attribute added to USE-statements,
kind-parameters added to all INTEGER and REAL declaration statements,
kinds are defined in new module kinds,
old module precision_kind is removed,
revision history before 2012 removed,
comment fields (!:) to be used for variable explanations added to all variable declaration statements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • palm/trunk/SOURCE/write_var_list.f90

    r1310 r1320  
    2020! Current revisions:
    2121! -----------------
     22! revision history before 2012 removed,
     23! comment fields (!:) to be used for variable explanations added to
     24! all variable declaration statements
    2225!
    2326!
     
    8588! +curvature_solution_effects
    8689!
    87 ! 622 2010-12-10 08:08:13Z raasch
    88 ! +collective_wait
    89 !
    90 ! 600 2010-11-24 16:10:51Z raasch
    91 ! +call_psolver_at_all_substeps, cfl_factor, cycle_mg, mg_cycles,
    92 ! mg_switch_to_pe0_level, ngsrb, nsor, omega_sor, psolver,
    93 ! rayleigh_damping_factor, rayleigh_damping_height, residual_limit
    94 !
    95 ! 589 2010-10-27 14:21:29Z heinze
    96 ! bugfix: character string of subs_vertical_gradient and
    97 ! subs_vertical_gradient_level shortened to 30 characters
    98 !
    99 ! 587 2010-10-27 08:36:51Z helmke
    100 ! +time_domask
    101 !
    102 ! 580 2010-10-05 13:59:11Z heinze
    103 ! Renaming of ws_vertical_gradient to subs_vertical_gradient,
    104 ! ws_vertical_gradient_level to subs_vertical_gradient_level and
    105 ! ws_vertical_gradient_level_ind to subs_vertical_gradient_level_i
    106 !
    107 ! 411 2009-12-11 14:15:58Z heinze
    108 ! +large_scale_subsidence, ws_vertical_gradient, ws_vertical_gradient_level,
    109 ! ws_vertical_gradient_level_ind
    110 !
    111 ! 345 2009-07-01 14:37:56Z heinze
    112 ! +output_for_t0
    113 ! bugfix: -dt_fixed, because otherwise, restart runs cannot change from a
    114 ! fixed to a free timestep.
    115 ! +canyon_height, canyon_width_x, canyon_width_y, canyon_wall_left,
    116 ! canyon_wall_south, conserve_volume_flow_mode, coupling_start_time,
    117 ! dp_external, dp_level_b, dp_smooth, dpdxy, run_coupled,
    118 ! time_since_reference_point, topography_grid_convention, u_bulk, v_bulk
    119 !
    120 ! 153 2008-03-19 09:41:30Z steinfeld
    121 ! +cthf, leaf_surface_concentration, scalar_exchange_coefficient
    122 ! +numprocs, hor_index_bounds, inflow_damping_height, inflow_damping_width,
    123 ! mean_inflow_profiles, recycling_width, turbulent_inflow,
    124 ! -cross_ts_*, npex, npey
    125 ! hom_sum, volume_flow_area, volume_flow_initial moved from write_3d_binary
    126 ! to here
    127 !
    128 ! 138 2007-11-28 10:03:58Z letzel
    129 ! +canopy_mode, drag_coefficient, lad, lad_surface, lad_vertical_gradient,
    130 ! lad_vertical_gradient_level, lad_vertical_gradient_level_ind, pch_index,
    131 ! plant_canopy, time_sort_particles
    132 !
    133 ! 102 2007-07-27 09:09:17Z raasch
    134 ! +top_momentumflux_u|v, time_coupling
    135 !
    136 ! 95 2007-06-02 16:48:38Z raasch
    137 ! +bc_sa_t, ocean, sa_init, sa_surface, sa_vertical_gradient,
    138 ! sa_vertical_gradient_level, bottom/top_salinity_flux
    139 !
    140 ! 87 2007-05-22 15:46:47Z raasch
    141 ! +max_pr_user (version 3.1)
    142 !
    143 ! 75 2007-03-22 09:54:05Z raasch
    144 ! +loop_optimization, pt_refrence, moisture renamed humidity
    145 !
    146 ! 20 2007-02-26 00:12:32Z raasch
    147 ! +top_heatflux, use_top_fluxes
    148 !
    149 ! RCS Log replace by Id keyword, revision history cleaned up
    150 !
    151 ! Revision 1.34  2006/08/22 14:30:52  raasch
    152 ! +dz_max
    153 !
    15490! Revision 1.1  1998/03/18 20:20:38  raasch
    15591! Initial revision
     
    16298!------------------------------------------------------------------------------!
    16399
    164     USE arrays_3d
    165     USE averaging
    166     USE cloud_parameters
     100    USE arrays_3d,                                                             &
     101        ONLY:  inflow_damping_factor, lad, mean_inflow_profiles, pt_init,      &
     102               q_init, ref_state, sa_init, u_init, ug, v_init, vg
     103   
     104    USE cloud_parameters,                                                      &
     105        ONLY:  c_sedimentation, curvature_solution_effects,                    &
     106               limiter_sedimentation, nc_const, ventilation_effect
     107   
    167108    USE control_parameters
    168     USE grid_variables
    169     USE indices
    170     USE model_1d
    171     USE netcdf_control
    172     USE particle_attributes
     109   
     110    USE grid_variables,                                                        &
     111        ONLY:  dx, dy
     112   
     113    USE indices,                                                               &
     114        ONLY:  nz, nx, ny
     115   
     116    USE model_1d,                                                              &
     117        ONLY:  damp_level_1d, dt_pr_1d, dt_run_control_1d, end_time_1d
     118   
     119    USE netcdf_control,                                                        &
     120        ONLY:  output_for_t0
     121   
     122    USE particle_attributes,                                                   &
     123        ONLY:  time_sort_particles
     124   
    173125    USE pegrid
    174     USE profil_parameter
    175     USE statistics
    176 
     126   
     127    USE statistics,                                                            &
     128        ONLY:  statistic_regions, hom, hom_sum, u_max, u_max_ijk, v_max,       &
     129               v_max_ijk, w_max, w_max_ijk
     130   
    177131    IMPLICIT NONE
    178132
    179     CHARACTER (LEN=10) ::  binary_version
     133    CHARACTER (LEN=10) ::  binary_version   !:
    180134
    181135
Note: See TracChangeset for help on using the changeset viewer.