-
Notifications
You must be signed in to change notification settings - Fork 1
/
Secrecion.cpp
52 lines (40 loc) · 1.06 KB
/
Secrecion.cpp
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
#include "Secrecion.h"
Secrecion::Secrecion()
{
tasas_de_secrecion.resize( 0 , 0.0 );
tasas_de_consumo.resize( 0 , 0.0 );
densidades_de_saturacion.resize( 0 , 0.0 );
tasas_de_exportacion_neta.resize( 0 , 0.0 );
oncoproteina = 0.0;
return;
}
void Secrecion::set_todas_las_secreciones_a_cero( void )
{
for( unsigned int i=0; i < tasas_de_secrecion.size(); i++ )
{
tasas_de_secrecion[i] = 0.0;
tasas_de_exportacion_neta[i] = 0.0;
}
return;
}
void Secrecion::set_todos_los_consumos_a_cero( void )
{
for( unsigned int i=0; i < tasas_de_consumo.size(); i++ )
{ tasas_de_consumo[i] = 0.0; }
return;
}
void Secrecion::multiplicar_las_secreciones_por_un_factor( double factor )
{
for( unsigned int i=0; i < tasas_de_secrecion.size(); i++ )
{
tasas_de_secrecion[i] *= factor;
tasas_de_exportacion_neta[i] *= factor;
}
return;
}
void Secrecion::multiplicar_los_consumos_por_un_factor( double factor )
{
for( unsigned int i=0; i < tasas_de_consumo.size(); i++ )
{ tasas_de_consumo[i] *= factor; }
return;
}