Changeset 26669


Ignore:
Timestamp:
11/26/21 07:05:08 (3 years ago)
Author:
vverjans
Message:

CHG: Debugging python test543 (2)

Location:
issm/trunk-jpl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/stochasticforcing.py

    r26667 r26669  
    108108        if (checkdefaults):
    109109            md = checkfield(md, 'fieldname', 'stochasticforcing.defaultdimension', 'numel', 1, 'NaN', 1, 'Inf', 1, '>', 0)
    110             md = checkfield(md, 'fieldname', 'stochasticforcing.default_id', 'Inf', 1, '>=', 0, '<=', self.defaultdimension, 'size', [md.mesh.numberofelements, 1])
     110            md = checkfield(md, 'fieldname', 'stochasticforcing.default_id', 'Inf', 1, '>=', 0, '<=', self.defaultdimension, 'size', [md.mesh.numberofelements])
    111111        return md
    112112    # }}}
  • issm/trunk-jpl/test/NightlyRun/test543.py

    r26668 r26669  
    2727        if md.mesh.elements[ii][vertex] - 1 in iid1:  # one vertex in basin 1; NOTE: offset because of 1-based vertex indexing
    2828            idb_tf[ii] = 1
    29     if idbasin[ii] == 0:  # no vertex was found in basin 1
     29    if idb_tf[ii] == 0:  # no vertex was found in basin 1
    3030        for vertex in range(3):
    3131            idb_tf[ii] = 2
     
    3737        if md.mesh.elements[ii][vertex] - 1 in iid1:  # one vertex in basin 1; NOTE: offset because of 1-based vertex indexing
    3838            idb_df[ii] = 1
    39     if idbasin[ii] == 0:  # no vertex was found in basin 1
     39    if idb_df[ii] == 0:  # no vertex was found in basin 1
    4040        for vertex in range(3):
    4141            idb_df[ii] = 2
     
    6969covclv[0,0]      = 1/10*covclv[0,0]
    7070covflmlt         = 0.05*np.identity(nb_flmlt)
    71 #covglob          = np.zeros([6,6])
    72 #covglob[0:2,0:2] = covtf
    73 #covglob[2:4,2:4] = covclv
    74 #covglob[4:6,4:6] = covflmlt
     71covglob          = np.zeros([6,6])
     72covglob[0:2,0:2] = covtf
     73covglob[2:4,2:4] = covclv
     74covglob[4:6,4:6] = covflmlt
    7575
    76 #Hard-coding covariance matrix because python is complaining
    77 covglob = np.array([[1e-4,0.,0.,0.,0.,0.],[0.,1e-4,0.,0.,0.,0.],[0.,0.,1e-2,0.,0.,0.],[0.,0.,0.,1e-1,0.,0.],[0.,0.,0.,0.,0.05,0.],[0.,0.,0.,0.,0.,0.05]])
    7876testchol = np.linalg.cholesky(covglob)
    7977print(testchol)
     
    8280md.stochasticforcing.isstochasticforcing = 1
    8381md.stochasticforcing.fields = ['FrontalForcingsRignotAutoregression','DefaultCalving','FloatingMeltRate']
    84 md.stochasticforcing.defauldimension = 2
    85 md.stochasticforcing.default_id      = idb_df
    86 md.stochasticforcing.covariance      = covglob # global covariance among- and between-fields
    87 md.stochasticforcing.randomflag      = 0 # determines true/false randomness
     82md.stochasticforcing.defaultdimension = 2
     83md.stochasticforcing.default_id       = idb_df-1 #NOTE: offset because of 1-based vertex indexing
     84md.stochasticforcing.covariance       = covglob # global covariance among- and between-fields
     85md.stochasticforcing.randomflag       = 0 # determines true/false randomness
    8886
    8987md.transient.ismovingfront   = 1
Note: See TracChangeset for help on using the changeset viewer.