Changes between Version 3 and Version 4 of DevelopmentActivities/ORCHIDEE-MEB


Ignore:
Timestamp:
2018-04-06T14:38:18+02:00 (6 years ago)
Author:
kpetrus
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/ORCHIDEE-MEB

    v3 v4  
    33 
    44= Implementation = 
    5 It consist to create a supplementary dimension to each variable which correspond to 
     5It consists to create a supplementary dimension to each variable which correspond to 
    66one energy, hydrology budget. 
    77In order to do a multi budget over each variable, loop over each subroutine has been chosen. 
     8The scheme is implemented such as for each subroutine (i.e. enerbil, diffuco, slowproc etc .. ) 
     9in the sechiba file for the global variables. 
     10{{{ 
     11DO i=1,ncol_enerbil 
     12     pre_subroutine_mc(nmc) 
     13     subroutine(..) 
     14     post_subroutine_mc(nmc) 
     15END DO 
     16 
     17#These subroutines are meant to pass variables computed in the subroutine 
     18#to the multi-column variables 
     19 
     20pre_subroutine_mc(nmc) 
     21variable=variable_mc 
     22 
     23post_subroutine_mc(nmc) 
     24variable_mc=variable 
     25 
     26and in each module file (i.e.: enerbil.f90, diffuco.f90 ..etc) for the local variables. 
     27 
     28}}} 
    829 
    930