Changes between Version 1 and Version 2 of Documentation/UserGuide/InstallingORCHIDEEBasic


Ignore:
Timestamp:
2013-02-01T16:13:10+01:00 (11 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/InstallingORCHIDEEBasic

    v1 v2  
    44 
    55 
     6== Method 1 == 
    67To extract and compile the latest trunk version of ORCHIDEE and configuration files for offline simulations : 
    78{{{ 
     
    1415 
    1516 
     17== Method 2 == 
    1618If you want another version of ORCHIDEE, before compiling change the version of ORCHIDEE, in this case you will keep the configuration files from the trunk version :  
    1719{{{ 
     
    2123cd ../modeles 
    2224rm -fr ORCHIDEE 
    23 svn co svn://forge.ipsl.jussieu.fr/orchidee/branches/xxxxxxx/ORCHIDEE ORCHIDEE 
     25svn co svn://forge.ipsl.jussieu.fr/orchidee/branches/xxxxxxx/ORCHIDEE ORCHIDEE     # or a copy from a local version of ORCHIDEE 
    2426cd ../util ; ./ins_make      # Create makefiles 
    2527cd ../modeles/ORCHIDEE 
    2628gmake driver 
    2729}}} 
     30 
     31== Method 3 == 
     32Do as method 1 but modifiy the file mod.def to extract a specific version of ORCHIDEE. The file mod.def specifices all componentes to be extracted with the script model for each configuration predefined. 
     33{{{ 
     34svn co http://forge.ipsl.jussieu.fr/igcmg/svn/modipsl/trunk modipsl 
     35cd modipsl/util 
     36vi mod.def                  # Edit the line corresponding to extraction of ORCHIDEE sources for target ORCHIDEE_trunk 
     37 
     38Change following line : 
     39#-C- ORCHIDEE_trunk  trunk/ORCHIDEE                           HEAD   15 ORCHIDEE         modeles 
     40into, with correct path to your branch or perso directory, HEAD can also be changed to a specific revision number : 
     41#-C- ORCHIDEE_trunk  branches/mybranch/ORCHIDEE               HEAD   15 ORCHIDEE         modeles 
     42 
     43./model ORCHIDEE_trunk 
     44cd ../modeles/ORCHIDEE 
     45gmake driver 
     46}}}