Changes between Version 17 and Version 18 of DevelopmentActivities/ORCHIDEE-MEB


Ignore:
Timestamp:
2018-04-06T15:43:07+02:00 (6 years ago)
Author:
kpetrus
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentActivities/ORCHIDEE-MEB

    v17 v18  
    1313in the sechiba file for the global variables. 
    1414{{{ 
    15 '''DO''' i=1,ncol_enerbil 
     15DO i=1,ncol_enerbil 
    1616     pre_subroutine_mc(nmc) 
    1717     subroutine(..) 
    1818     post_subroutine_mc(nmc) 
    19 '''END DO''' 
     19END DO 
    2020 
    2121#The subroutines: ''pre_subroutine_mc'', ''post_subroutine_mc''  are created to pass variables (variable) computed in the subroutine 
    2222#to the multi-column variables (variable_mc) 
    2323 
    24 '''pre_subroutine_mc'''(nmc) 
     24pre_subroutine_mc(nmc) 
    2525variable=variable_mc 
    26 '''end''' pre_subroutine_mc 
     26end pre_subroutine_mc 
    2727 
    28 '''post_subroutine_mc'''(nmc) 
     28post_subroutine_mc(nmc) 
    2929variable_mc=variable 
    30 '''end''' post_subroutine_mc 
     30end post_subroutine_mc 
    3131 
    3232and in each module file (i.e.: enerbil.f90, diffuco.f90 ..etc) for the local variables.