Changeset 13975 for issm/trunk/startup.py
- Timestamp:
- 11/16/12 08:10:16 (12 years ago)
- Location:
- issm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 13397-13398,13401,13407-13582,13584-13974
- Property svn:mergeinfo changed
-
issm/trunk/startup.py
r13395 r13975 16 16 raise NameError('"ISSM_DIR" environment variable is empty! You should define ISSM_DIR in your .cshrc or .bashrc!') 17 17 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 34 19 for root,dirs,files in os.walk(ISSM_DIR+ '/src/m'): 35 20 if '.svn' in dirs: … … 38 23 if file.find(".py") != -1: 39 24 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) 44 27 45 28 sys.path.append(ISSM_DIR + '/lib') 46 29 47 #Deal with scipy import:48 import scipy49 import numpy50 import nose51 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 89 30 print("\n To get started with ISSM, type issmdoc at the command prompt.\n\n")
Note:
See TracChangeset
for help on using the changeset viewer.