rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
RBSimData.m
1 classdef RBSimData < AbstractModel.RBSimData
2  properties
3  % The reduced solution NxN matrix
4  PN;
5 
6  % Residual in Frobenius norm
7  residual;
8 
9  % Normalized residual in Frobenius norm (nresidual/norm(C'C))
10  nresidual;
11  nnresidual;
12 
13  % Time for reduced simulation
14  time_sim;
15 
16  % Time for error estimation
17  time_error_estim;
18  time_residual;
19  time_gamma;
20 
21  % Error estimate:
22  error_estimate;
23 
24  % For the error estimator:
25  gamma;
26  L;
27 
28  % The value of the validity criterion:
29  validity_crit;
30 
31  % Whether the error estimator is valid:
32  valid;
33 
34  % The value of the stability critertion:
35  stab_crit;
36 
37  % Whether we can ensure the stability:
38  stable;
39  end
40 
41 end
Abstract OOP model implementation interface.