-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPart_2_Ex_5.m
More file actions
23 lines (21 loc) · 798 Bytes
/
Part_2_Ex_5.m
File metadata and controls
23 lines (21 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
%% Analyzing vertical disaggregation through EnKF
% In addition to be spatially distributed, the W3RA model also considers various
% vertical water storage compartments. We will now analyze how the TWS update
% is disaggregated among the different compartments.
%% Load config
% We load the config file that we used for DA.
clc, clear all;
addpath(genpath('./Codes/')); dbstop if error;
load('Config_DA.mat')
%% Visualize
% We will use an existing function to visualize the water storage distribution
% into the different water storage compartments.
F_visualizeEx5(config);
%% Reflection questions
%%
% # How does the EnKF disaggregate the TWS among the different vertical compartments?
%%
%%
% # Which individual compartments were most updated? Do you think this makes
% sense? Why?
%%