rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
dune_gen_model_data.m
1 function model_data = dune_gen_model_data(model)
2 % function model_data = dune_gen_model_data(model[, params])
3 %
4 % method which produces all H dependent data, that is required for a
5 % detailed simulations and is independent of the parameter mu.
6 %
7 % This function does no create any fields in model_data
8 
9 % call the mexptr
10 W = model.mexptr( 'gen_model_data' );
11 
12 % model data is saved in mex process, the following is just for compatibility
13 % with RBmatlab models.
14 model_data = [];
15 model_data.W = W;
16 model_data.grid = 'initialized in mexfile';
17 model_data.mexptr = model.mexptr;
18 
19 %| \docupdate