Changeset 26804
- Timestamp:
- 01/21/22 21:43:56 (3 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/m4/issm_options.m4
r26801 r26804 210 210 SYSTEM_FMEMOPEN=1 211 211 if test "${IS_MAC}" == "yes"; then 212 if [[ $(system_profiler SPSoftwareDataType | grep "System Version:" | sed -e "s/[[:space:]]*System Version: macOS //" | cut -d "." -f 2) -lt 13 ]]; then 212 sys_ver=$(sw_vers -productVersion) 213 if [[ $(echo ${sys_ver} | cut -d "." -f 1) -eq 10 && $(echo ${sys_ver} | cut -d "." -f 2) -eq 13 ]]; then 213 214 SYSTEM_FMEMOPEN=0 214 215 fi -
issm/trunk-jpl/src/m/classes/calvingvonmises.py
r26799 r26804 56 56 57 57 def marshall(self, prefix, md, fid): # {{{ 58 yts = md.constants.yts 58 59 WriteData(fid, prefix, 'name', 'md.calving.law', 'data', 2, 'format', 'Integer') 59 60 WriteData(fid, prefix, 'object', self, 'fieldname', 'stress_threshold_groundedice', 'format', 'DoubleMat', 'mattype', 1, 'timeserieslength', md.mesh.numberofvertices + 1, 'yts', yts )
Note:
See TracChangeset
for help on using the changeset viewer.