rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
dom_dec_get_inner_product_matrices.m
1 function K = ...
2  dom_dec_get_inner_product_matrices(detailed_data)
3 % function K = dom_dec_get_inner_product_matrizes(detailed_data)
4 %
5 % h1 inner product on each domain.
6 % Return values:
7 % K: cell of inner product matrizes on subdomains
8 % G: matrix of inner product on the interface with respect to
9 % discrete functions on the dirichlet_side
10 
11 % I.Maier 19.07.2011
12 
13 K = cell(1,2);
14 for i = 1:2
15  K{i} = detailed_data.df_infos{i}.h10_inner_product_matrix + ...
16  detailed_data.df_infos{i}.l2_inner_product_matrix;
17 end;