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


Ignore:
Timestamp:
2013-02-01T15:42:59+01:00 (11 years ago)
Author:
jgipsl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/UserGuide/InstallingORCHIDEEBasic

    v1 v1  
     1= How to install ORCHIDEE with modipsl and libIGCM for offline use = 
     2 
     3Here I describe how to install a version of ORCHIDEE created after the re-organization of driver sources, this means all versions of ORCHIDEE containg the src_driver directory. If the branch or personal version you want to use contains both ORCHIDEE and ORCHIDEE_OL directories, then you can extract using the script '''recup_my_ORCHIDEE'''. Otherwise if you have only ORCHIDEE directory, extract using the script '''model''' as below. The configuration files will then be the latest trunk version. 
     4 
     5 
     6To extract and compile the latest trunk version of ORCHIDEE and configuration files for offline simulations : 
     7{{{ 
     8svn co http://forge.ipsl.jussieu.fr/igcmg/svn/modipsl/trunk modipsl 
     9cd modipsl/util 
     10./model ORCHIDEE_trunk 
     11cd ../modeles/ORCHIDEE/ 
     12gmake driver 
     13}}} 
     14 
     15 
     16If 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 :  
     17{{{ 
     18svn co http://forge.ipsl.jussieu.fr/igcmg/svn/modipsl/trunk modipsl 
     19cd modipsl/util 
     20./model ORCHIDEE_trunk 
     21cd ../modeles 
     22rm -fr ORCHIDEE 
     23svn co svn://forge.ipsl.jussieu.fr/orchidee/branches/xxxxxxx/ORCHIDEE ORCHIDEE 
     24cd ../util ; ./ins_make      # Create makefiles 
     25cd ../modeles/ORCHIDEE 
     26gmake driver 
     27}}}