Changeset 3259
- Timestamp:
- Mar 11, 2024, 6:43:35 PM (9 months ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/changelog.txt
r3240 r3259 1874 1874 Removed the outdated 'How_to_add_an_aerosol_to_the_GCM.pdf' file, the information is now in the wiki page : https://lmdz-forge.lmd.jussieu.fr/mediawiki/Planets/index.php/Advanced_Use_of_the_GCM#How_to_Change_the_Aerosols_Optical_Properties 1875 1875 Add 'optpropgen' routines in the SVN (code written by JB Madeleine and Franck Montmessin, to generate aerosol optical properties) 1876 1877 == 11/03/2024 == GM 1878 1879 Fix a bug with global1d in callcorrk. When using global1d, the latitude used 1880 when global1d=false was still taken into account at global1d=true in the 1881 conditions for the presence of solar flux. -
trunk/LMDZ.GENERIC/libf/phystd/callcorrk.F90
r3233 r3259 1137 1137 !----------------------------------------------------------------------- 1138 1138 1139 if( fract(ig) .ge. 1.0e-4) then ! Only during daylight.1139 if((fract(ig) .ge. 1.0e-4).or.(global1d)) then ! Only during daylight. 1140 1140 if((ngrid.eq.1).and.(global1d))then 1141 1141 do nw=1,L_NSPECTV … … 1171 1171 1172 1172 ! Equivalent Albedo Calculation (for OUTPUT). MT2015 1173 if( fract(ig) .ge. 1.0e-4) then ! equivalent albedo makes sense only during daylight.1173 if((fract(ig) .ge. 1.0e-4).or.(global1d)) then ! equivalent albedo makes sense only during daylight. 1174 1174 surface_stellar_flux=sum(nfluxgndv_nu(1:L_NSPECTV)) 1175 1175 if(surface_stellar_flux .gt. 1.0e-3) then ! equivalent albedo makes sense only if the stellar flux received by the surface is positive.
Note: See TracChangeset
for help on using the changeset viewer.