-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathOA.py
More file actions
186 lines (153 loc) · 6.59 KB
/
OA.py
File metadata and controls
186 lines (153 loc) · 6.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# -*- coding: utf-8 -*-
import numpy as np
def vectoa(Xg,Yg,X,Y,U,V,corrlenx,corrleny,err,b=0):
'''
(Adapted from Filipe Fernandes function)
Vectoa is a vectorial objective analysis function.
It interpolates a velocity field (U and V, east and north velocity components)
into a streamfunction field (dimension MxN) solving the Laplace equation:
$nabla^{2}Psi=0$.
======================================================================
Input:
Xg & Yg - Grid of of interpolation points (i.e. LON & LAT grid)
X & Y - Arrays of observation points
U & V - Arrays of observed east and north components of velocity
corrlen & err - Correlation length scales (in x and y) and error for a
gaussian streamfunction covariance function (floats)
b - Constant value that forces a correction in the data mean value.
Unless it is defined, b=0 by default.
======================================================================
Output:
PSI - Streamfuction field matrix with MxN dimension.
The dimension of the output is always the same of XC & YC
======================================================================
PYTHON VERSION by:
Iury Sousa and Hélio Almeida - 30 May 2016
Laboratório de Dinâmica Oceânica - IOUSP
======================================================================'''
# making sure that the input variables aren't changed
xc,yc,x,y,u,v=Xg.copy(),Yg.copy(),X.copy(),Y.copy(),U.copy(),V.copy()
corrlen = corrleny
xc = xc*( corrleny*1./corrlenx)
x = x*(corrleny*1./corrlenx)
n = len(x)
# Joins all the values of velocity (u then v) in one column-wise array.
# Being u and v dimension len(u)=y, then uv.shape = (2*y,1)
uv=np.array([np.hstack((u,v))]).T #data entered row-wise
# CALCULATING angles and distance
# pp is a join of two matrix calculating the distance between every point of observation and all others like the
# example below
# len(y) = M -> pp[0].shape = MxM being:
# pp[0][i] = y-y[i]
pp = -np.tile(y,(n,1)).T+np.tile(y,(n,1)),-np.tile(x,(n,1)).T+np.tile(x,(n,1))
#
t = []
for ii,jj in zip(pp[0].ravel(),pp[1].ravel()):
t.append(np.math.atan2(ii,jj))
t = np.array(t)
t.shape = pp[0].shape
# t end up to be angles and d2 the distances between every observation point and all the others
d2=((np.tile(x,(n,1)).T-np.tile(x,(n,1)))**2+(np.tile(y,(n,1)).T-np.tile(y,(n,1)))**2)
lambd = 1/(corrlen**2)
bmo=b*err/lambd
R=np.exp(-lambd*d2) #%longitudinal
S=R*(1-2*lambd*d2)+bmo #%transverse
R=R+bmo
A=np.zeros((2*n,2*n))
A[0:n,0:n]=(np.cos(t)**2)*(R-S)+S
A[0:n,n:2*n]=np.cos(t)*np.sin(t)*(R-S)
A[n:2*n,0:n]=A[0:n,n:2*n]
A[n:2*n,n:2*n]=(np.sin(t)**2)*(R-S)+S
A=A+err*np.eye(A.shape[0])
# angles and distances
nv1,nv2 =xc.shape
nv=nv1*nv2
xc = xc.T.ravel()
yc = yc.T.ravel()
#% the same idea of pp but this time for interpolation points
ppc = -np.tile(yc,(n,1)).T+np.tile(y,(nv,1)),-np.tile(xc,(n,1)).T+np.tile(x,(nv,1))
tc = []
for ii,jj in zip(ppc[0].ravel(),ppc[1].ravel()):
tc.append(np.math.atan2(ii,jj))
tc = np.array(tc)
tc.shape = ppc[0].shape
d2=((np.tile(xc,(n,1)).T-np.tile(x,(nv,1)))**2+(np.tile(yc,(n,1)).T-np.tile(y,(nv,1)))**2)
R=np.exp(-lambd*d2)+bmo;
P=np.zeros((nv,2*n))
# streamfunction-velocity covariance
P[:,0:n]=np.sin(tc)*np.sqrt(d2)*R;
P[:,n:2*n]=-np.cos(tc)*np.sqrt(d2)*R;
PSI=np.dot(P,np.linalg.solve(A,uv)) # solvi the linear system
PSI=PSI.reshape(nv2,nv1).T
return PSI
def scaloa(xc, yc, x, y, t=[], corrlenx=None,corrleny=None, err=None, zc=None):
"""
(Adapted from Filipe Fernandes function)
Scalar objective analysis. Interpolates t(x, y) into tp(xc, yc)
Assumes spatial correlation function to be isotropic and Gaussian in the
form of: C = (1 - err) * np.exp(-d**2 / corrlen**2) where:
d : Radial distance from the observations.
Parameters
----------
corrlen : float
Correlation length.
err : float
Random error variance (epsilon in the papers).
Return
------
tp : array
Gridded observations.
ep : array
Normalized mean error.
Examples
--------
See https://ocefpaf.github.io/python4oceanographers/blog/2014/10/27/OI/
Notes
-----
The funcion `scaloa` assumes that the user knows `err` and `corrlen` or
that these parameters where chosen arbitrary. The usual guess are the
first baroclinic Rossby radius for `corrlen` and 0.1 e 0.2 to the sampling
error.
"""
corrlen = corrleny
xc = xc*( corrleny*1./corrlenx)
x = x*(corrleny*1./corrlenx)
n = len(x)
x, y = np.reshape(x, (1, n)), np.reshape(y, (1, n))
# Squared distance matrix between the observations.
d2 = ((np.tile(x, (n, 1)).T - np.tile(x, (n, 1))) ** 2 +
(np.tile(y, (n, 1)).T - np.tile(y, (n, 1))) ** 2)
nv = len(xc)
xc, yc = np.reshape(xc, (1, nv)), np.reshape(yc, (1, nv))
# Squared distance between the observations and the grid points.
dc2 = ((np.tile(xc, (n, 1)).T - np.tile(x, (nv, 1))) ** 2 +
(np.tile(yc, (n, 1)).T - np.tile(y, (nv, 1))) ** 2)
# Correlation matrix between stations (A) and cross correlation (stations
# and grid points (C))
A = (1 - err) * np.exp(-d2 / corrlen ** 2)
C = (1 - err) * np.exp(-dc2 / corrlen ** 2)
if 0: # NOTE: If the parameter zc is used (`scaloa2.m`)
A = (1 - d2 / zc ** 2) * np.exp(-d2 / corrlen ** 2)
C = (1 - dc2 / zc ** 2) * np.exp(-dc2 / corrlen ** 2)
# Add the diagonal matrix associated with the sampling error. We use the
# diagonal because the error is assumed to be random. This means it just
# correlates with itself at the same place.
A = A + err * np.eye(len(A))
# Gauss-Markov to get the weights that minimize the variance (OI).
tp = None
ep = 1 - np.sum(C.T * np.linalg.solve(A, C.T), axis=0) / (1 - err)
if any(t)==True: ##### was t!=None:
t = np.reshape(t, (n, 1))
tp = np.dot(C, np.linalg.solve(A, t))
#if 0: # NOTE: `scaloa2.m`
# mD = (np.sum(np.linalg.solve(A, t)) /
# np.sum(np.sum(np.linalg.inv(A))))
# t = t - mD
# tp = (C * (np.linalg.solve(A, t)))
# tp = tp + mD * np.ones(tp.shape)
return tp, ep
if any(t)==False: ##### was t==None:
print("Computing just the interpolation errors.")
#Normalized mean error. Taking the squared root you can get the
#interpolation error in percentage.
return ep