This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathadsorption_vS_S.C
273 lines (242 loc) · 8.37 KB
/
adsorption_vS_S.C
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
// adsorption_vS_S.C
//
// Copyright 1996-2001 Per Abrahamsen and Søren Hansen
// Copyright 2000-2001 KVL.
//
// This file is part of Daisy.
//
// Daisy is free software; you can redistribute it and/or modify
// it under the terms of the GNU Lesser Public License as published by
// the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// Daisy 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 Lesser Public License for more details.
//
// You should have received a copy of the GNU Lesser Public License
// along with Daisy; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#define BUILD_DLL
#include "adsorption.h"
#include "soil.h"
#include "mathlib.h"
#include "librarian.h"
#include "block_model.h"
#include "check.h"
#include <sstream>
class Adsorption_vS_S : public Adsorption
{
const double S_planar; // [g N/g clay]
const double S_edge; // [g N/g clay]
const double K_planar; // [g N/cm^3]
const double K_edge; // [g N/cm^3]
// Simulation.
public:
double C_to_A (const Soil& soil, int i, double C, double sf) const;
double C_to_M (const Soil&, double Theta, int, double C, double sf) const;
double M_to_C (const Soil&, double Theta, int, double M, double sf) const;
// Chemical soil constants.
double v_planar (const Soil& soil, int i, double sf) const
{
const double clay = soil.clay (i); // []
const double rho_b = soil.dry_bulk_density (i); // [g N/cm^3]
return S_planar * clay * rho_b * sf;
}
double v_edge (const Soil& soil, int i, double sf) const
{
const double clay = soil.clay (i); // []
const double rho_b = soil.dry_bulk_density (i); // [g N/cm^3]
return S_edge * clay * rho_b * sf;
}
// Create.
public:
Adsorption_vS_S (const BlockModel& al)
: Adsorption (al),
S_planar (al.number ("S_planar")),
S_edge (al.number ("S_edge")),
K_planar (al.number ("K_planar")),
K_edge (al.number ("K_edge"))
{ }
};
double
Adsorption_vS_S::C_to_A (const Soil& soil, int i, double C, double sf) const
{
return (v_planar (soil, i, sf) * C) / (K_planar + C)
+ (v_edge (soil, i, sf) * C) / (K_edge + C);
}
double
Adsorption_vS_S::C_to_M (const Soil& soil, double Theta, int i, double C,
double sf) const
{
return C_to_A (soil, i, C, sf) + Theta * C;
}
double
Adsorption_vS_S::M_to_C (const Soil& soil, double Theta, int i, double M,
double sf) const
{
const double ve = v_edge (soil, i, sf);
const double Ke = K_edge;
const double vp = v_planar (soil, i, sf);
const double Kp = K_planar;
double C;
if (M < 1e-6 * std::min (Ke, Kp))
// There are numerical problems in the general solution for small M.
C = M / (Theta + ve / Ke + vp / Kp);
else
{
daisy_assert (Theta > 0.0);
const double a = Theta;
const double b = Theta * (Kp + Ke) + vp + ve - M;
const double c = vp * Ke + ve * Kp - M * (Kp + Ke) + Kp * Ke * Theta;
const double d = - M * Kp * Ke;
C = single_positive_root_of_cubic_equation (a, b, c, d);
const double new_M = C_to_M (soil, Theta, i, C, sf);
if (!approximate (M, new_M, 0.01))
{
std::ostringstream tmp;
tmp << objid << ": M[i]: old = " << M << ", new = " << new_M
<< "; Theta = " << Theta << "; C = " << C;
Assertion::warning (tmp.str ());
}
}
return C;
}
static struct Adsorption_vS_SSyntax : DeclareModel
{
Model* make (const BlockModel& al) const
{ return new Adsorption_vS_S (al); }
Adsorption_vS_SSyntax ()
: DeclareModel (Adsorption::component, "vS_S", "\
Double langmuir description of NH4-N sorption to clay.")
{ }
void load_frame (Frame& frame) const
{
frame.set_strings ("cite", "van1963potassium");
frame.declare ("S_planar", "g N/g clay", Check::non_negative (), Attribute::Const, "\
Absorption capacity of the clay planar sites.");
frame.declare ("S_edge", "g N/g clay", Check::non_negative (), Attribute::Const, "\
Absorption capacity of the clay edge sites.");
frame.declare ("K_planar", "g N/cm^3", Check::non_negative (), Attribute::Const, "\
Half-saturation constant of the clay planer sites.");
frame.declare ("K_edge", "g N/cm^3", Check::non_negative (), Attribute::Const, "\
Half-saturation constant of the clay edge sites.");
}
} Adsorption_vS_S_syntax;
// The 'vS_S_Hansen' parameterization.
static struct AdsorptionvS_S_HansenSyntax : public DeclareParam
{
AdsorptionvS_S_HansenSyntax ()
: DeclareParam (Adsorption::component, "vS_S_Hansen", "vS_S", "\
.")
{ }
void load_frame (Frame& frame) const
{
frame.set ("S_planar", 5.964e-3);
frame.set ("S_edge", 0.308e-3);
frame.set ("K_planar", 6.3e-5);
frame.set ("K_edge", 1.372e-5);
}
} AdsorptionvS_S_Hansen_syntax;
// The 'vS_S_Styczen' parameterization.
static struct AdsorptionvS_S_StyczenSyntax : public DeclareParam
{
AdsorptionvS_S_StyczenSyntax ()
: DeclareParam (Adsorption::component, "vS_S_Styczen", "vS_S", "\
Parameter update..")
{ }
void load_frame (Frame& frame) const
{
frame.set ("S_planar", 5.964e-3);
frame.set ("S_edge", 0.2801e-3);
frame.set ("K_planar", 6.338e-4);
frame.set ("K_edge", 1.369e-5);
}
} AdsorptionvS_S_Styczen_syntax;
// The 'vS_S_old' model.
class Adsorption_vS_S_old : public Adsorption
{
// Simulation.
public:
double C_to_A (const Soil& soil, int i, double C, double sf) const;
double C_to_M (const Soil&, double Theta, int, double C, double sf) const;
double M_to_C (const Soil&, double Theta, int, double M, double sf) const;
// Chemical soil constants.
double K_planar () const
{ return 6.3e-5; } // [g/cm³]
double K_edge () const
{ return 1.372e-5; } // [g/cm³]
double v_planar (const Soil& soil, int i, double sf) const
{
// Maximum specific absorbtion [g / g clay]
const double S_planar = 5.964e-3;
const double porosity = soil.Theta (i, 0.0, 0.0);
const double clay = soil.clay (i);
const double rho_b = soil.dry_bulk_density (i);
return S_planar * clay * rho_b * sf * (1.0 - porosity);
}
double v_edge (const Soil& soil, int i, double sf) const
{
const double S_edge = 0.308e-3; // Same for edges. [g / g clay]
const double porosity = soil.Theta (i, 0.0, 0.0);
const double clay = soil.clay (i);
const double rho_b = soil.dry_bulk_density (i);
return S_edge * clay * rho_b * sf * (1.0 - porosity);
}
// Create.
public:
Adsorption_vS_S_old (const BlockModel& al)
: Adsorption (al)
{ }
};
double
Adsorption_vS_S_old::C_to_A (const Soil& soil, int i, double C, double sf) const
{
return (v_planar (soil, i, sf) * C) / (K_planar () + C)
+ (v_edge (soil, i, sf) * C) / (K_edge () + C);
}
double
Adsorption_vS_S_old::C_to_M (const Soil& soil, double Theta, int i, double C,
double sf) const
{
return C_to_A (soil, i, C, sf) + Theta * C;
}
double
Adsorption_vS_S_old::M_to_C (const Soil& soil, double Theta, int i, double M,
double sf) const
{
const double ve = v_edge (soil, i, sf);
const double Ke = K_edge ();
const double vp = v_planar (soil, i, sf);
const double Kp = K_planar ();
double C;
if (M < 1e-6 * std::min (Ke, Kp))
// There are numerical problems in the general solution for small M.
C = M / (Theta + ve / Ke + vp / Kp);
else
{
daisy_assert (Theta > 0.0);
const double a = Theta;
const double b = Theta * (Kp + Ke) + vp + ve - M;
const double c = vp * Ke + ve * Kp - M * (Kp + Ke) + Kp * Ke * Theta;
const double d = - M * Kp * Ke;
C = single_positive_root_of_cubic_equation (a, b, c, d);
daisy_assert (approximate (M, C_to_M (soil, Theta, i, C, sf)));
}
return C;
}
static struct Adsorption_vS_S_oldSyntax : DeclareModel
{
Model* make (const BlockModel& al) const
{ return new Adsorption_vS_S_old (al); }
Adsorption_vS_S_oldSyntax ()
: DeclareModel (Adsorption::component, "vS_S_old", "\
Buggy implementation included as vS_S before Daisy 6.47.\n\
Included here as reference.\n\
Note, linear sorption was used as default for NH4 as slong as memeory serve.")
{ }
void load_frame (Frame& frame) const
{ }
} Adsorption_vS_S_old_syntax;
// adsorption_vS_S.C ends here.