Changeset 8227 for branches/ORCHIDEE_2_2/ORCHIDEE
- Timestamp:
- 2023-10-11T15:11:36+02:00 (15 months ago)
- Location:
- branches/ORCHIDEE_2_2/ORCHIDEE/src_sechiba
- Files:
-
- 6 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ORCHIDEE_2_2/ORCHIDEE/src_sechiba/routing_wrapper.f90
r7710 r8227 35 35 USE routing_highres 36 36 USE routing_simple 37 USE routing_native_mod 37 38 USE constantes_soil 38 39 … … 76 77 ELSEIF(routing_method=='simple') THEN 77 78 CALL routing_simple_xios_initialize 79 ELSEIF(routing_method=='native') THEN 80 CALL routing_native_xios_initialize 78 81 ENDIF 79 82 … … 179 182 returnflow, reinfiltration, irrigation, riverflow, & 180 183 coastalflow, flood_frac, flood_res ) 184 185 riverflow(:) = zero 186 coastalflow(:) = zero 187 returnflow(:) = zero 188 reinfiltration(:) = zero 189 irrigation(:) = zero 190 flood_frac(:) = zero 191 flood_res(:) = zero 192 193 ELSE IF(routing_method== 'native') THEN 194 195 CALL routing_native_initialize( kjit, nbpt, index, & 196 rest_id, hist_id, hist2_id, lalo, & 197 neighbours, resolution, contfrac, stempdiag, & 198 returnflow, reinfiltration, irrigation, riverflow, & 199 coastalflow, flood_frac, flood_res , irrigated_next) 181 200 182 201 riverflow(:) = zero … … 284 303 drainage, transpot, precip_rain, humrel, k_litt, flood_frac, flood_res, & 285 304 stempdiag, reinf_slope, returnflow, reinfiltration, irrigation, riverflow, coastalflow, & 286 rest_id, hist_id, hist2_id) 305 rest_id, hist_id, hist2_id) 306 307 ELSE IF(routing_method=='native') THEN 308 309 CALL routing_native_main (kjit, nbpt, index, & 310 lalo, neighbours, resolution, contfrac, totfrac_nobio, veget_max, floodout, runoff, & 311 drainage, transpot, precip_rain, humrel, k_litt, flood_frac, flood_res, & 312 stempdiag, reinf_slope, returnflow, reinfiltration, irrigation, riverflow, coastalflow, & 313 rest_id, hist_id, hist2_id, & 314 soiltile, root_deficit, irrigated_next, irrig_frac, fraction_aeirrig_sw) 287 315 ENDIF 288 316 … … 331 359 CALL routing_simple_finalize( kjit, nbpt, rest_id, flood_frac, flood_res ) 332 360 361 ELSE IF(routing_method=='native') THEN 362 363 CALL routing_native_finalize( kjit, nbpt, rest_id, flood_frac, flood_res ) 364 333 365 ENDIF 334 366 … … 363 395 364 396 CALL routing_simple_clear 365 397 398 ELSE IF(routing_method=='native') THEN 399 400 CALL routing_native_clear 366 401 ENDIF 367 402
Note: See TracChangeset
for help on using the changeset viewer.