Exemplo n.º 1
0
double HSolve::getRm( Id id ) const
{
    unsigned int index = localIndex( id );
    assert( index < tree_.size() );
    return tree_[ index ].Rm;
}
Exemplo n.º 2
0
void HSolve::setVm( Id id, double value )
{
	unsigned int index = localIndex( id );
	assert( index < V_.size() );
	V_[ index ] = value;
}
Exemplo n.º 3
0
 /// @brief
 /// @todo Doc me!
 /// @return
 Index index() const
 {
     return pgrid_->faceIndex(cellIndex(), localIndex());
 }
Exemplo n.º 4
0
double HSolve::getCaFloor( Id id ) const
{
	unsigned int index = localIndex( id );
	assert( index < caConc_.size() );
	return caConc_[ index ].floor_;
}
Exemplo n.º 5
0
double HSolve::getVm( Id id ) const
{
	unsigned int index = localIndex( id );
	assert( index < V_.size() );
	return V_[ index ];
}
Exemplo n.º 6
0
void HSolve::setGk( Id id, double value )
{
	unsigned int index = localIndex( id );
	assert( index < current_.size() );
	current_[ index ].Gk = value;
}
Exemplo n.º 7
0
double HSolve::getCaCeiling( Id id ) const
{
	unsigned int index = localIndex( id );
	assert( index < caConc_.size() );
	return caConc_[ index ].ceiling_;
}
Exemplo n.º 8
0
double HSolve::getGk( Id id ) const
{
	unsigned int index = localIndex( id );
	assert( index < current_.size() );
	return current_[ index ].Gk;
}
Exemplo n.º 9
0
double HSolve::getHHChannelGbar( Id id ) const
{
	unsigned int index = localIndex( id );
	assert( index < channel_.size() );
	return channel_[ index ].Gbar_;
}
Exemplo n.º 10
0
void HSolve::setInstant( Id id, int instant )
{
	unsigned int index = localIndex( id );
	assert( index < channel_.size() );
	channel_[ index ].instant_ = instant;
}
Exemplo n.º 11
0
int HSolve::getInstant( Id id ) const
{
	unsigned int index = localIndex( id );
	assert( index < channel_.size() );
	return channel_[ index ].instant_;
}
Exemplo n.º 12
0
void HSolve::setInitVm( Id id, double value )
{
	unsigned int index = localIndex( id );
	assert( index < tree_.size() );
	tree_[ index ].initVm = value;
}