VPTissue Reference Manual
cell_color/Wortel.cpp
Go to the documentation of this file.
1 /*
2  * Copyright 2011-2016 Universiteit Antwerpen
3  *
4  * Licensed under the EUPL, Version 1.1 or as soon they will be approved by
5  * the European Commission - subsequent versions of the EUPL (the "Licence");
6  * You may not use this work except in compliance with the Licence.
7  * You may obtain a copy of the Licence at: http://ec.europa.eu/idabc/eupl5
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the Licence is distributed on an "AS IS" basis,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the Licence for the specific language governing
13  * permissions and limitations under the Licence.
14  */
20 #include "Wortel.h"
21 
22 #include "bio/Cell.h"
23 
24 #include <boost/property_tree/ptree.hpp>
25 #include <array>
26 
27 namespace SimPT_Default {
28 namespace CellColor {
29 
30 using namespace std;
31 using boost::property_tree::ptree;
32 using SimPT_Sim::Cell;
33 
34 Wortel::Wortel(const boost::property_tree::ptree&)
35 {
36 }
37 
38 array<double, 3> Wortel::operator()(SimPT_Sim::Cell* cell)
39 {
40  const double c0 = (cell->GetChemicals().size() >= 1) ? (cell->GetChemical(0)/cell->GetArea()) : 0.0;
41  return (c0 <= 0.05) ? array<double, 3> {{1.0, 1.0, 1.0}} : array<double, 3> {{1.0, c0/(400.0+c0), 0.0}};
42 }
43 
44 } // namespace
45 } // namespace
46 
47 
STL namespace.
A cell contains walls and nodes.
Definition: Cell.h:48
std::array< double, 3 > operator()(SimPT_Sim::Cell *cell)
Return color value.
Namespace for components of the Default model group.
Interface for Cell.
Interface for CellColor::WortelColor.
Wortel(const boost::property_tree::ptree &pt)
Straight initialization.
double GetArea() const
Return the area of the cell.
Definition: Cell.cpp:178