Ignore:
Timestamp:
11/16/12 08:10:16 (12 years ago)
Author:
Mathieu Morlighem
Message:

merged trunk-jpl and trunk for revision 13974

Location:
issm/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk

  • issm/trunk/startup.py

    r13395 r13975  
    1616        raise NameError('"ISSM_DIR" environment variable is empty! You should define ISSM_DIR in your .cshrc or .bashrc!')
    1717
    18 #Now add all issm code paths necessary to run issm smoothly.
    19 #We capture the error output, so that we can warn the user to update
    20 #the variable ISSM_DIR in this file, in case it is not correctly setup.
    21 
    22 #ISSM path. Go through src/py and load everything we find  that looks like a python file
    23 for root,dirs,files in os.walk(ISSM_DIR+ '/src/py'):
    24         if '.svn' in dirs:
    25                 dirs.remove('.svn')
    26         for file in files:
    27                 if file.find(".py") != -1:
    28                         if file.find(".pyc") == -1:
    29                                 #add to path
    30                                 sys.path.append(root)
    31                                 file=os.path.splitext(file)[0]
    32                                 #__import__(file)
    33 
     18#Go through src/m and append any directory that contains a *.py file to PATH
    3419for root,dirs,files in os.walk(ISSM_DIR+ '/src/m'):
    3520        if '.svn' in dirs:
     
    3823                if file.find(".py") != -1:
    3924                        if file.find(".pyc") == -1:
    40                                 #add to path
    41                                 sys.path.append(root)
    42                                 file=os.path.splitext(file)[0]
    43                                 #__import__(file)
     25                                if root not in sys.path:
     26                                        sys.path.append(root)
    4427                               
    4528sys.path.append(ISSM_DIR + '/lib')
    4629
    47 #Deal with scipy import:
    48 import scipy
    49 import numpy
    50 import nose
    51 
    52 #Import modules that are absolutely needed in ISSM {{{
    53 from model import *
    54 from mesh import *
    55 from mask import *
    56 from geometry import *
    57 from constants import *
    58 from surfaceforcings import *
    59 from basalforcings import *
    60 from matice import *
    61 from friction import *
    62 from flowequation import *
    63 from fielddisplay import *
    64 from timestepping import *
    65 from initialization import *
    66 from rifts import *
    67 from debug import *
    68 from settings import *
    69 from solver import *
    70 from ismumps  import *
    71 from pairoptions  import *
    72 from petscversion  import *
    73 from asmoptions import *           
    74 from iluasmoptions import *       
    75 from jacobiasmoptions import *     
    76 from jacobicgoptions import *     
    77 from matlaboptions import *       
    78 from mumpsoptions import *         
    79 from soroptions import *           
    80 from stokesoptions import *
    81 from generic import *
    82 from hydrology import *
    83 from miscellaneous import *
    84 from private import *
    85 from triangle import *
    86 from setmask import *
    87 #}}}
    88 
    8930print("\n  To get started with ISSM, type issmdoc at the command prompt.\n\n")
Note: See TracChangeset for help on using the changeset viewer.