- #1
tworitdash
- 108
- 26
I want to develop a 2D random field and its change with time with constant velocity. My process:
1. Define a 2D grid [itex] [x, y] [/itex] with [itex] n \times n [/itex] points
2. Define 1D time axis [itex] [t] [/itex] with [itex] n_t [/itex]elements
3. Find the lagrangian distance between the points in space with the velocity in [itex] x [/itex] and [itex] y [/itex], i.e., [itex] [v_x, v_y] [/itex]
$$ D[t, (x_i, y_i), (x_j, y_j)] = \sqrt{(x_i - v_xt - x_j)^2 + (y_i - v_yt - y_j)^2} $$
[itex] D [/itex] has size [itex] [n_t \times n^2 \times n^2] [/itex]
4. Use this distance matrix and the time axis to formulate a covariance cube of size [itex] [n_t \times n^2 \times n^2] [/itex]
$$ \rho(D, t; \theta) = \frac{e^{-(D/b_s)^{c_s}} e^{-(t/b_t)^{c_t}}}{1 - \theta e^{-(D/b_s)^{c_s}} e^{-(t/b_t)^{c_t}}} $$
Where [itex] [b_s, c_s] [/itex] are spatial correlation parameters and [itex] [b_t, c_t] [/itex] are time correlation parameters. A non-zero $\theta$ makes this spatio-temporal correlation non-separable.
So, I have the correlation of all spatial points with all spatial points in space [itex] [n^2 \times n^2] [/itex] and also the change in the spatial correlation with time [itex] [n_t \times n^2 \times n^2] [/itex]
I have no clue how to proceed next. I read ideas in papers to make it a Multivariate autoregressive process (MAR) and find coefficients based on this covariance matrix.
The first confusion is if this AR model is for my random field itself with time and covariance is just a tool to solve that AR process or the AR model is for the 2D covariance matrices with time.
The second confusion is that if it is an AR process of the 2D random field itself with time, then, how this covariance matrix will help me solve for the random field? Because the covariance matrix is a [itex] [n_t \times n^2 \times n^2] [/itex] matrix.
Is there any other way I can solve this? I have the correlation structure already so in my head I somehow believe it should be simple, but when I think more I am confused.
1. Define a 2D grid [itex] [x, y] [/itex] with [itex] n \times n [/itex] points
2. Define 1D time axis [itex] [t] [/itex] with [itex] n_t [/itex]elements
3. Find the lagrangian distance between the points in space with the velocity in [itex] x [/itex] and [itex] y [/itex], i.e., [itex] [v_x, v_y] [/itex]
$$ D[t, (x_i, y_i), (x_j, y_j)] = \sqrt{(x_i - v_xt - x_j)^2 + (y_i - v_yt - y_j)^2} $$
[itex] D [/itex] has size [itex] [n_t \times n^2 \times n^2] [/itex]
4. Use this distance matrix and the time axis to formulate a covariance cube of size [itex] [n_t \times n^2 \times n^2] [/itex]
$$ \rho(D, t; \theta) = \frac{e^{-(D/b_s)^{c_s}} e^{-(t/b_t)^{c_t}}}{1 - \theta e^{-(D/b_s)^{c_s}} e^{-(t/b_t)^{c_t}}} $$
Where [itex] [b_s, c_s] [/itex] are spatial correlation parameters and [itex] [b_t, c_t] [/itex] are time correlation parameters. A non-zero $\theta$ makes this spatio-temporal correlation non-separable.
So, I have the correlation of all spatial points with all spatial points in space [itex] [n^2 \times n^2] [/itex] and also the change in the spatial correlation with time [itex] [n_t \times n^2 \times n^2] [/itex]
I have no clue how to proceed next. I read ideas in papers to make it a Multivariate autoregressive process (MAR) and find coefficients based on this covariance matrix.
The first confusion is if this AR model is for my random field itself with time and covariance is just a tool to solve that AR process or the AR model is for the 2D covariance matrices with time.
The second confusion is that if it is an AR process of the 2D random field itself with time, then, how this covariance matrix will help me solve for the random field? Because the covariance matrix is a [itex] [n_t \times n^2 \times n^2] [/itex] matrix.
Is there any other way I can solve this? I have the correlation structure already so in my head I somehow believe it should be simple, but when I think more I am confused.
Last edited: