resolve unused parameter warnings in USER-ATC package
This commit is contained in:
@ -26,7 +26,7 @@ WeakEquationDiffusion::~WeakEquationDiffusion(void)
|
||||
//---------------------------------------------------------------------
|
||||
void WeakEquationDiffusion::M_integrand(
|
||||
const FIELD_MATS &fields,
|
||||
const Material * material,
|
||||
const Material * /* material */,
|
||||
DENS_MAT & capacity ) const
|
||||
{
|
||||
FIELD_MATS::const_iterator rhoField = fields.find(SPECIES_CONCENTRATION);
|
||||
@ -38,10 +38,10 @@ void WeakEquationDiffusion::M_integrand(
|
||||
// compute flux
|
||||
//--------------------------------------------------------------
|
||||
void WeakEquationDiffusion::B_integrand(
|
||||
const FIELD_MATS &fields,
|
||||
const GRAD_FIELD_MATS &grad_fields,
|
||||
const Material * material,
|
||||
DENS_MAT_VEC &flux) const
|
||||
const FIELD_MATS & /* fields */,
|
||||
const GRAD_FIELD_MATS & /* grad_fields */,
|
||||
const Material * /* material */,
|
||||
DENS_MAT_VEC & /* flux */) const
|
||||
{
|
||||
// material->diffusion_flux(fields, grad_fields, flux[SPECIES_CONCENTRATION]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user