forked from perabrahamsen/daisy-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bdconv.h
51 lines (43 loc) · 1.35 KB
/
bdconv.h
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
// bdconv.h -- Bulk density convertion for select models.
//
// Copyright 2008 Per Abrahamsen and 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
#ifndef BDCONV_H
#define BDCONV_H
#include "convert.h"
#include "symbol.h"
#include <memory>
class Geometry;
class Soil;
class Volume;
class Units;
struct BD_convert : public Convert
{
const Convert& in;
const Convert& out;
double bulk;
// Use.
double operator()(double value) const;
bool valid (double value) const;
void set_bulk (const double new_bulk)
{ bulk = new_bulk; }
// Create and destroy.
BD_convert (const Units&,
const symbol has, const symbol want, const symbol bulk_unit);
};
#endif // BDCONV_H