forked from perabrahamsen/daisy-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadsorption_vS_S.C
122 lines (109 loc) · 3.78 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
// 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"
class Adsorption_vS_S : 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 (const BlockModel& al)
: Adsorption (al)
{ }
};
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);
daisy_assert (approximate (M, C_to_M (soil, Theta, i, C, sf)));
}
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", "\
Model by van Schouwenberg and Schuffelen, 1963, with\n\
parameterization by Hansen et.al., 1990.")
{ }
void load_frame (Frame& frame) const
{ }
} Adsorption_vS_S_syntax;
// adsorption_vS_S.C ends here.