Changeset 26668
- Timestamp:
- 11/26/21 05:47:27 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/test/NightlyRun/test543.py
r26665 r26668 69 69 covclv[0,0] = 1/10*covclv[0,0] 70 70 covflmlt = 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 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 75 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]]) 78 testchol = np.linalg.cholesky(covglob) 79 print(testchol) 75 80 76 81 # Stochastic forcing
Note:
See TracChangeset
for help on using the changeset viewer.