Changeset 4875
- Timestamp:
- Feb 17, 2021 11:56:22 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SOURCE/radiation_model_mod.f90
r4874 r4875 27 27 ! ----------------- 28 28 ! $Id$ 29 ! bugfix for interpolating external radiation on first timestep 30 ! 31 ! 4874 2021-02-15 17:21:20Z raasch 29 32 ! bugfix for writing restart radiation arrays with MPI-IO 30 33 ! … … 3456 3459 ! Description: 3457 3460 ! ------------ 3458 !> A simple clear sky radiation model3461 !> Use external radiative forcing (short- and longwave downwelling radiation) from a driver 3459 3462 !--------------------------------------------------------------------------------------------------! 3460 3463 SUBROUTINE radiation_external … … 3494 3497 3495 3498 fac_dt = ( time_since_reference_point - time_rad_f%var1d(tm) + dt_3d ) / & 3496 ( time_rad_f%var1d(t) - time_rad_f%var1d(tm) )3499 MAX( TINY( 1._wp ), ( time_rad_f%var1d(t) - time_rad_f%var1d(tm) ) ) 3497 3500 fac_dt = MIN( 1.0_wp, fac_dt ) 3498 3501 ENDIF
Note: See TracChangeset
for help on using the changeset viewer.