Changeset 22274
- Timestamp:
- 11/24/17 12:27:39 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/jenkins/linux64_caladan
r22033 r22274 64 64 #by Matlab and runme.m 65 65 #ex: "'id',[101 102 103]" 66 PYTHON_NROPTIONS="--exclude 701 702 435 "66 PYTHON_NROPTIONS="--exclude 701 702 435 703" 67 67 MATLAB_NROPTIONS="'exclude',[701,702,435]" -
issm/trunk-jpl/jenkins/linux64_ross
r21871 r22274 67 67 #by Matlab and runme.m 68 68 #ex: "'id',[101 102 103]" 69 PYTHON_NROPTIONS="--exclude 243 701 702 435"69 PYTHON_NROPTIONS="--exclude 702 703" 70 70 MATLAB_NROPTIONS="'exclude',[IdFromString('Dakota')]" -
issm/trunk-jpl/jenkins/linux64_ross_dakota
r21871 r22274 62 62 #by Matlab and runme.m 63 63 #ex: "'id',[101 102 103]" 64 PYTHON_NROPTIONS=" "64 PYTHON_NROPTIONS="--exclude 702 703" 65 65 MATLAB_NROPTIONS="'exclude',[243,701,702,435]" -
issm/trunk-jpl/jenkins/linux64_ross_javascript
r22067 r22274 49 49 #by Matlab and runme.m 50 50 #ex: "'id',[101 102 103]" 51 #PYTHON_NROPTIONS="--exclude 119 243 514 701 702 435"51 #PYTHON_NROPTIONS="--exclude 119 243 514 701 702 703 435" 52 52 #MATLAB_NROPTIONS="'exclude',[119,243,514,701,702,435,IdFromString('Dakota')]" -
issm/trunk-jpl/jenkins/linux64_ross_python
r21871 r22274 58 58 #by Matlab and runme.m 59 59 #ex: "'id',[101 102 103]" 60 PYTHON_NROPTIONS="--exclude 243 701 702 435"60 PYTHON_NROPTIONS="--exclude 702 703" 61 61 MATLAB_NROPTIONS="'exclude',[IdFromString('Dakota')]" -
issm/trunk-jpl/jenkins/linux64_ross_test
r22033 r22274 64 64 #by Matlab and runme.m 65 65 #ex: "'id',[101 102 103]" 66 PYTHON_NROPTIONS="--exclude 243 701 702 435"66 PYTHON_NROPTIONS="--exclude 243 701 702 703 435" 67 67 MATLAB_NROPTIONS="'exclude',[243,701,702,435]" -
issm/trunk-jpl/src/m/mesh/bamgflowband.py
r22267 r22274 25 25 #Write expfile with domain outline 26 26 A = OrderedDict() 27 A .x= np.concatenate((x,np.flipud(x),[x[0]]))28 A .y= np.concatenate((base,np.flipud(surf),[base[0]]))29 A .nods = np.size(A.x)27 A['x'] = np.concatenate((x,np.flipud(x),[x[0]])) 28 A['y'] = np.concatenate((base,np.flipud(surf),[base[0]])) 29 A['nods'] = np.size(A['x']) 30 30 31 31 #markers: 32 m = np.ones((np.size(A .x)-1,)) # base = 132 m = np.ones((np.size(A['x'])-1,)) # base = 1 33 33 m[np.size(x) - 1] = 2 # right side = 2 34 34 m[np.size(x):2 * np.size(x) - 1] = 3 # top surface = 3
Note:
See TracChangeset
for help on using the changeset viewer.