Changeset 5158 for LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_aerosol_optics_description.F90
- Timestamp:
- Aug 2, 2024, 2:12:03 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_aerosol_optics_description.F90
r4489 r5158 137 137 138 138 ! Loop over hydrophilic types 139 doja = 1,size(this%bin_philic)139 DO ja = 1,size(this%bin_philic) 140 140 ! Check if we have a match 141 141 if (to_string(this%code_philic(:,ja)) == code_str & … … 146 146 end do 147 147 ! Repeat for the hydrophobic types 148 doja = 1,size(this%bin_phobic)148 DO ja = 1,size(this%bin_phobic) 149 149 if (to_string(this%code_phobic(:,ja)) == code_str & 150 150 & .and. to_string(this%optical_model_phobic(1:len(optical_model_str),ja)) & … … 207 207 if (lhydrophilic) then 208 208 ! Loop over hydrophilic aerosol types 209 doja = 1,size(this%bin_philic)209 DO ja = 1,size(this%bin_philic) 210 210 current_score = 0 211 211 if (to_string(this%code_philic(:,ja)) == code_str) then … … 258 258 else 259 259 ! Loop over hydrophobic aerosol types 260 doja = 1,size(this%bin_phobic)260 DO ja = 1,size(this%bin_phobic) 261 261 current_score = 0 262 262 if (to_string(this%code_phobic(:,ja)) == code_str) then … … 325 325 character(len=size(arr)) :: str 326 326 integer :: jc 327 dojc = 1,size(arr)327 DO jc = 1,size(arr) 328 328 str(jc:jc) = arr(jc) 329 329 end do
Note: See TracChangeset
for help on using the changeset viewer.