Figure 9.16:

Model fit to all adsorption experiments.

Code for Figure 9.16

Text of the GNU GPL.

main.m


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
% Copyright (C) 2001, James B. Rawlings and John G. Ekerdt
%
% This program is free software; you can redistribute it and/or
% modify it under the terms of the GNU General Public License as
% published by the Free Software Foundation; either version 2, or (at
% your option) any later version.
%
% This program is distributed in the hope that it will be useful, but
% WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
% General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; see the file COPYING.  If not, write to
% the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
% MA 02111-1307, USA.

%
% jbr,  11/28/01
%
%  modified to use paresto, jbr, 6/8/18
%

Hgas1 = [2.659, 27.590, 141.038, ...
	332.613, 546.857, 608.583, 875.353, 991.072, 1080.134, ...
	1142.782, 1203.178, 1256.244]';

Hads1 = [32.31, 40.02, 45.40, 48.49 ...
	50.19, 53.86, 52.77, 53.19, 53.67, 54.15, 54.51, 54.73]';


Hgas2 = [3.755, 36.331, 189.904, ...
	 413.881, 624.665, 817.592]';

Hads2 = [33.17, 40.90, 45.59, 47.72, ...
	 48.74, 49.43]';

Hgas3 = [12.794, 119.331, 339.917, ...
	 545.227, 735.746, 890.642]';

Hads3 = [36.91, 42.90, 45.65, 47.00, ...
	 47.82, 48.60]';

Hgas4 = [7.424, 73.312, 251.177, ...
	 491.691, 707.806, 873.926]';

Hads4 = [39.11, 46.06, 49.87, 51.57, ...
	 52.48, 53.18]';

Hgas5 = [9.176, 72.065, 259.002, ...
	 475.250, 670.034, 818.669]';

Hads5 = [39.52, 46.06, 49.92, 51.86, ...
	 52.96, 53.88]';

Hgas6 = [2.962, 34.350, 176.860, 405.233, ...
	 607.476, 799.723, 946.765]';

Hads6 = [32.70, 40.11, 44.92, 47.40, 48.62, ...
	 49.50, 50.12]';

Hgas7 = [3.159, 38.528, 200.877, 433.924, ...
	 647.630, 820.673]';

Hads7 = [32.42, 39.81, 44.51, 46.79, 48.14, ...
	 48.95]';

Hgas8 = [34.127, 172.316, ...
	 385.633, 616.149, 812.932, 961.191, 1061.967, 1155.829, 1219.299]';

Hads8 = [43.79, 48.97, 51.57, ...
	 53.09, 54.05, 54.67, 55.20, 55.60, 55.93]';

% choose a dataset or datasets to fit
cgmeas = [Hgas1; Hgas2; Hgas3; Hgas4; Hgas5; Hgas6; Hgas7; Hgas8];
cadsmeas = [Hads1; Hads2; Hads3; Hads4; Hads5; Hads6; Hads7; Hads8];

Ks0 = 2;
cms0 = 40;
cmp0 = 0;

theta0 = struct;
theta0.sqKs = sqrt(Ks0);
theta0.cms = cms0;
theta0.cmp = cmp0;
theta0.time = 1;
theta0.cg = 100;
theta0.cads = 30;

thetalb = struct;
thetalb.sqKs = sqrt(1E-3);
thetalb.cms = 10;
thetalb.cmp = 0;
thetalb.time = 1;

thetaub = struct;
thetaub.sqKs = sqrt(5);
thetaub.cms = 200;
thetaub.cmp = 100;
thetaub.time = 1;

algmodel = struct;
algmodel.transcription = "shooting";
%algmodel.nlp_solver_options.ipopt.linear_solver = 'ma27';
algmodel.nlp_solver_options.ipopt.mumps_scaling = 0;
% set eps to zero for algebraic model
algmodel.nlp_solver_options.sens_linsol_options.eps = 0;
% use a dummy differential state to measure time
algmodel.x = {'time'};
algmodel.z = {'cg', 'cads'};
algmodel.p = {'sqKs', 'cms', 'cmp'};
algmodel.d = {'cgmeas', 'cadsmeas'};

algmodel.ode = @(t, y, p) {1};
algmodel.alg = @(t, y, p) {y.cads - p.cmp - ...
			   (p.cms*p.sqKs*sqrt(y.cgmeas))/(1 + p.sqKs*sqrt(y.cgmeas)), ...
			   y.cg - y.cgmeas};
%algmodel.lsq = @(t, y, p) {(y.cgmeas-y.cg)/10, y.cadsmeas-y.cads};
algmodel.lsq = @(t, y, p) {y.cadsmeas-y.cads};
algmodel.tout = 1:numel(cgmeas);

pe = paresto(algmodel);

est = pe.optimize([cgmeas'; cadsmeas'], theta0, thetalb, thetaub);

conf =  pe.confidence(est, 0.95);

disp('Estimated parameters')
disp(est.theta)
disp('Bounding box intervals')
disp(conf.bbox)


table1 = [Hgas1 Hads1];
table2 = [Hgas2 Hads2];
table3 = [Hgas3 Hads3];
table4 = [Hgas4 Hads4];
table5 = [Hgas5 Hads5];
table6 = [Hgas6 Hads6];
table7 = [Hgas7 Hads7];
table8 = [Hgas8 Hads8];

nplot = 100;
Xplot = linspace(0,1.05*max(cgmeas),nplot)';
sqKs = est.theta.sqKs;
cms = est.theta.cms;
cmp = est.theta.cmp;
Yplot = cms*sqKs*sqrt(Xplot)./(1+sqKs*sqrt(Xplot)) + cmp;

table_all = [Xplot, Yplot];

save adsall.dat table_all table1 table2  table3  table4  table5  table6  table7  table8;

if (~ strcmp (getenv ('OMIT_PLOTS'), 'true')) % PLOTTING
plot (table_all(:,1), table_all(:,2), ...
       table1(:,1), table1(:,2), '+', ...
       table2(:,1), table2(:,2), 'x', ...
       table3(:,1), table3(:,2), '*', ...
       table4(:,1), table4(:,2), 'o', ...
       table5(:,1), table5(:,2), '+', ...
       table6(:,1), table6(:,2), 'x', ...
       table7(:,1), table7(:,2), '*', ...
       table8(:,1), table8(:,2), 'o');
% TITLE
end % PLOTTING