rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
descr_default.m
Go to the documentation of this file.
1 function descr = descr_default
2 %function model = descr_default
3 % function initializing some fields of a lin-stat model
4 %
5 % generated fields of descr:
6 % verbose : '5'
7 % debug : '0'
8 % rb_problem_type : ''LinStat''
9 % mu_names : '{}'
10 % mu_ranges : '{}'
11 % decomp_mode : '0'
12 % compute_output_functional : '0'
13 % operators : fem_operators()
14 % operators_output : fem_operators_output()
15 % get_inner_product_matrix : extracts the inner product matrix from the 'model_data'
16 % is_stationary : '1'
17 % axes_tight : '1'
18 % has_diffusivity : '0'
19 % has_source : '0'
20 % has_reaction : '0'
21 % has_advection : '0'
22 % has_output_functional : '0'
23 % has_dirichlet_values : '0'
24 % has_neumann_values : '0'
25 % has_robin_values : '0'
26 
27 %
28 
29 % B. Haasdonk 21.2.2011
30 
31 descr = [];
32 descr.verbose = 5;
33 descr.debug = 0;
34 descr.rb_problem_type = 'LinStat';
35 
36 descr.mu_names = {};
37 descr.mu_ranges = {};
38 descr.decomp_mode = 0; % default: complete evaluation
39 
40 descr.compute_output_functional = 0;
41 descr.operators = @fem_operators;
42 descr.operators_output = @fem_operators_output;
43 
44 % TODO: model_data should be a class
45 descr.get_inner_product_matrix = @(detailed_data) ...
46  detailed_data.df_info.regularized_h10_inner_product_matrix;
47 
48 % for demo_rb_gui:
49 descr.is_stationary = 1;
50 descr.axes_tight = 1;
51 
52 descr.has_diffusivity = 0;
53 descr.has_source = 0;
54 descr.has_reaction = 0;
55 descr.has_advection = 0;
56 descr.has_output_functional = 0;
57 descr.has_dirichlet_values = 0;
58 descr.has_neumann_values = 0;
59 descr.has_robin_values = 0;
60 
function r = verbose(level, message, messageId)
This function displays messages depending on a message-id and/or a level. Aditionally you can set/res...
Definition: verbose.m:17
Reduced basis implementation for linear stationary PDEs.
function ModelDescr descr = descr_default()
This function initializes the default settings for the ARE model.
Definition: descr_default.m:18
function demo_rb_gui(varargin)
reduced basis demo with sliders
Definition: demo_rb_gui.m:17