Changeset 2705 for palm/trunk/SOURCE
- Timestamp:
- Dec 18, 2017 11:26:23 AM (7 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/init_3d_model.f90
r2701 r2705 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix for reading initial profiles from ls/nuding file 28 ! 29 ! 2701 2017-12-15 15:40:50Z suehring 27 30 ! Bugfix, missing initialization of surface attributes in case of 28 31 ! inifor-initialization branch … … 1024 1027 1025 1028 ! 1029 !-- Initialize nudging if required 1030 IF ( nudging ) THEN 1031 CALL nudge_init 1032 ENDIF 1033 1034 ! 1035 !-- Initialize reading of large scale forcing from external file - if required 1036 IF ( large_scale_forcing .OR. forcing ) THEN 1037 CALL lsf_init 1038 ENDIF 1039 1040 ! 1026 1041 !-- Allocate arrays containing the RK coefficient for calculation of 1027 1042 !-- perturbation pressure and turbulent fluxes. At this point values are … … 2173 2188 2174 2189 ! 2175 !-- Initialize nudging if required2176 IF ( nudging ) THEN2177 CALL nudge_init2178 ENDIF2179 2180 !2181 !-- Initialize reading of large scale forcing from external file - if required2182 IF ( large_scale_forcing .OR. forcing ) THEN2183 CALL lsf_init2184 ENDIF2185 !2186 2190 !-- Initialize surface forcing corresponding to large-scale forcing. Therein, 2187 2191 !-- initialize heat-fluxes, etc. via datatype. Revise it later! -
palm/trunk/SOURCE/land_surface_model_mod.f90
r2696 r2705 25 25 ! ----------------- 26 26 ! $Id$ 27 ! Bugfix in binary output (wrong sequence) 28 ! 29 ! 2696 2017-12-14 17:12:51Z kanani 27 30 ! Bugfix: missing USE statement for calc_mean_profile 28 31 ! do not write surface temperatures onto pt array as this might cause … … 5746 5749 5747 5750 IF ( write_binary ) THEN 5751 5752 5753 WRITE ( 14 ) 'ns_h_on_file_lsm ' 5754 WRITE ( 14 ) surf_lsm_h%ns 5755 WRITE ( 14 ) 'ns_v_on_file_lsm ' 5756 WRITE ( 14 ) surf_lsm_v(0:3)%ns 5757 5748 5758 IF ( ALLOCATED( c_liq_av ) ) THEN 5749 5759 WRITE ( 14 ) 'c_liq_av '; WRITE ( 14 ) c_liq_av … … 5779 5789 WRITE ( 14 ) 't_soil_av '; WRITE ( 14 ) t_soil_av 5780 5790 ENDIF 5781 5782 5783 WRITE ( 14 ) 'ns_h_on_file_lsm '5784 WRITE ( 14 ) surf_lsm_h%ns5785 WRITE ( 14 ) 'ns_v_on_file_lsm '5786 WRITE ( 14 ) surf_lsm_v(0:3)%ns5787 5791 5788 5792 WRITE ( 14 ) 'lsm_start_index_h ' -
palm/trunk/SOURCE/urban_surface_mod.f90
r2703 r2705 21 21 ! Current revisions: 22 22 ! ------------------ 23 ! Workaround for calculation of r_a23 ! 24 24 ! 25 25 ! Former revisions: 26 26 ! ----------------- 27 27 ! $Id$ 28 ! Workaround for calculation of r_a 29 ! 30 ! 2703 2017-12-15 20:12:38Z maronga 28 31 ! - Bugfix in calculation of pt_surface and related fluxes. (BM) 29 32 ! - Do not write surface temperatures onto pt array as this might cause
Note: See TracChangeset
for help on using the changeset viewer.