Changeset 3620
- Timestamp:
- Dec 11, 2018 12:29:43 PM (6 years ago)
- Location:
- palm/trunk/SOURCE
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/land_surface_model_mod.f90
r3597 r3620 25 25 ! ----------------- 26 26 ! $Id$ 27 ! update the 3d rad_lw_out array 28 ! 29 ! 3597 2018-12-04 08:40:18Z maronga 27 30 ! Added pt_2m / theta_2m. Removed unncessary _eb strings. 28 31 ! … … 1755 1758 1756 1759 USE pegrid 1760 USE radiation_model_mod, ONLY: rad_lw_out 1757 1761 1758 1762 IMPLICIT NONE … … 2191 2195 2192 2196 surf%shf(m) = - f_shf * ( surf%pt1(m) - surf%pt_surface(m) ) / c_p 2197 ! update the 3d field of rad_lw_ou array 2198 IF ( horizontal ) rad_lw_out(k+k_off,j+j_off,i+i_off) = surf%rad_lw_out(m) 2193 2199 2194 2200 IF ( humidity ) THEN -
palm/trunk/SOURCE/radiation_model_mod.f90
r3616 r3620 28 28 ! ----------------- 29 29 ! $Id$ 30 ! - fix initialization of date and time after calling zenith 31 ! - fix a bug in radiation_solar_pos 32 ! 33 ! 3616 2018-12-10 09:44:36Z Salim 30 34 ! fix manipulation of time variables in radiation_presimulate_solar_pos 31 35 ! … … 2441 2445 !-- whether the sun is up 2442 2446 CALL calc_zenith 2447 ! readjust date and time to its initial value 2448 CALL init_date_and_time 2443 2449 ! 2444 2450 !-- Calculate initial surface albedo for different surfaces … … 2634 2640 2635 2641 END SELECT 2642 2643 ! readjust date and time to its initial value 2644 CALL init_date_and_time 2636 2645 2637 2646 RETURN … … 8012 8021 DO it = 0, CEILING(( end_time - spinup_time ) / dt_radiation) 8013 8022 time_since_reference_point = REAL(it, wp) * dt_radiation 8014 simulated_time = simulated_time + dt_ spinup8023 simulated_time = simulated_time + dt_radiation 8015 8024 CALL simulate_pos 8016 8025 ENDDO
Note: See TracChangeset
for help on using the changeset viewer.