rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
gen_model_data.m
1 function model_data = gen_model_data(dmodel)
2 %function model_data = gen_model_data(dmodel)
3 %
4 % generation of model data of a LinStat model
5 %
6 % generated fields of model_data:
7 % grid: the grid
8 % df_info: an object of type feminfo
9 
10 % Bernard Haasdonk
11 
12 model = dmodel.descr;
13 
14 model_data = [];
15 model_data.grid = construct_grid(model);
16 model_data.df_info = feminfo(model,model_data.grid);
17 %model_data.inner_product_matrix = ...
18 % model_data.df_info.h10_inner_product_matrix
Reduced basis implementation for linear stationary PDEs.
structure representing the fem-space information shared by all fem-functions. Implemented as handle c...
Definition: feminfo.m:17