コード例 #1
0
ファイル: PoolBase.cpp プロジェクト: hrani/moose-core
double PoolBase::getNinit( const Eref& e ) const
{
    return vGetNinit( e );
}
コード例 #2
0
ファイル: ZombiePool.cpp プロジェクト: subhacom/moose-core
// Do not get concInit from ZombiePool, the PoolBase handles it.
// Reconsider this, since for arrays of ZombiePools we end up with problems
// in that there is just  a single PoolBase so all the concInits are 
// the same. Here is a reimplementation.
double ZombiePool::vGetConcInit( const Eref& e ) const
{
	return vGetNinit( e ) / (NA * lookupVolumeFromMesh( e ) );
}