Ejemplo n.º 1
0
void TPZMaterial::FillDataRequirements(TPZMaterialData &data)
{
	data.SetAllRequirements(true);
	data.fNeedsNeighborSol = false;
	data.fNeedsNeighborCenter = false;
	data.fNeedsNormal = false;
}
Ejemplo n.º 2
0
void TPZDiscontinuousGalerkin::FillDataRequirementsInterface(TPZMaterialData &data){
	data.SetAllRequirements(true);
	data.fNeedsSol = false;
	if(fLinearContext == false){
		data.fNeedsNeighborSol = true;
	}
}
Ejemplo n.º 3
0
void TPZPrimalPoisson::FillBoundaryConditionDataRequirement(int type,TPZMaterialData &data)
{
    data.SetAllRequirements(false);
    data.fNeedsSol = true;
}
Ejemplo n.º 4
0
void TPZPrimalPoisson::FillDataRequirements(TPZMaterialData &data)
{
    data.SetAllRequirements(false);
    data.fNeedsSol = true;
}
Ejemplo n.º 5
0
void TPZNonDarcyFlow::FillBoundaryConditionDataRequirement(int type,TPZMaterialData &data)
{
	data.SetAllRequirements(false);
	data.fNeedsSol = true;
	data.fNeedsNormal = true;
}
Ejemplo n.º 6
0
void TPZNonDarcyFlow::FillDataRequirements(TPZMaterialData &data)
{
	data.SetAllRequirements(false);
	data.fNeedsSol = true;
	data.fNeedsNormal = true;
}