Changeset 4227 for palm/trunk/SOURCE/chemistry_model_mod.f90
- Timestamp:
- Sep 10, 2019 6:04:34 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/chemistry_model_mod.f90
r4182 r4227 27 27 ! ----------------- 28 28 ! $Id$ 29 ! implement new palm_date_time_mod 30 ! 31 ! 4182 2019-08-22 15:20:23Z scharf 29 32 ! Corrected "Former revisions" section 30 33 ! … … 2996 2999 2997 3000 USE control_parameters, & 2998 ONLY: dt_3d, intermediate_timestep_count, latitude 3001 ONLY: dt_3d, intermediate_timestep_count, latitude, & 3002 time_since_reference_point 2999 3003 3000 3004 USE arrays_3d, & 3001 3005 ONLY: dzw, rho_air_zw 3002 3006 3003 USE date_and_time_mod,&3004 ONLY: day_of_year3007 USE palm_date_time_mod, & 3008 ONLY: get_date_time 3005 3009 3006 3010 USE surface_mod, & … … 3012 3016 3013 3017 3018 INTEGER(iwp) :: day_of_year !< current day of the year 3014 3019 INTEGER(iwp), INTENT(IN) :: i 3015 3020 INTEGER(iwp), INTENT(IN) :: j … … 3286 3291 xm_O * 3 /) !< o3_biascorr 3287 3292 ! 3293 !-- Get current day of the year 3294 CALL get_date_time( time_since_reference_point, day_of_year = day_of_year ) 3295 ! 3288 3296 !-- Initialize surface element m 3289 3297 m = 0 … … 5849 5857 5850 5858 END MODULE chemistry_model_mod 5851
Note: See TracChangeset
for help on using the changeset viewer.