resolve unused parameter warnings in USER-ATC package
This commit is contained in:
@ -483,7 +483,7 @@ namespace ATC {
|
||||
// manages the solution of the
|
||||
// thermostat equations and variables
|
||||
//--------------------------------------------------------
|
||||
void ThermostatRescale::compute_thermostat(double dt)
|
||||
void ThermostatRescale::compute_thermostat(double /* dt */)
|
||||
{
|
||||
// compute right-hand side
|
||||
this->set_rhs(_rhs_);
|
||||
@ -738,7 +738,7 @@ namespace ATC {
|
||||
// Constructor
|
||||
//--------------------------------------------------------
|
||||
ThermostatGlcFs::ThermostatGlcFs(AtomicRegulator * thermostat,
|
||||
int lambdaMaxIterations,
|
||||
int /* lambdaMaxIterations */,
|
||||
const string & regulatorPrefix) :
|
||||
RegulatorMethod(thermostat,regulatorPrefix),
|
||||
lambdaSolver_(NULL),
|
||||
@ -1225,7 +1225,7 @@ namespace ATC {
|
||||
// fixed (uncoupled) nodes
|
||||
//--------------------------------------------------------
|
||||
void ThermostatIntegratorFlux::set_thermostat_rhs(DENS_MAT & rhs,
|
||||
double dt)
|
||||
double /* dt */)
|
||||
{
|
||||
|
||||
// only tested with flux != 0 + ess bc = 0
|
||||
@ -1586,7 +1586,7 @@ namespace ATC {
|
||||
//--------------------------------------------------------
|
||||
void ThermostatIntegratorFixed::add_to_energy(const DENS_MAT & nodalLambdaPower,
|
||||
DENS_MAT & deltaEnergy,
|
||||
double dt)
|
||||
double /* dt */)
|
||||
{
|
||||
deltaEnergy.resize(nNodes_,1);
|
||||
|
||||
@ -2387,7 +2387,7 @@ namespace ATC {
|
||||
// determines the power exerted by the Hoover
|
||||
// thermostat at each FE node
|
||||
//--------------------------------------------------------
|
||||
void ThermostatHooverVerlet::add_to_lambda_power(const DENS_MAT & myLambdaForce,
|
||||
void ThermostatHooverVerlet::add_to_lambda_power(const DENS_MAT & /* myLambdaForce */,
|
||||
double dt)
|
||||
{
|
||||
_myNodalLambdaPower_ = nodalAtomicHooverLambdaPower_->quantity();
|
||||
@ -2593,7 +2593,7 @@ namespace ATC {
|
||||
// determines the power exerted by the Hoover
|
||||
// thermostat at each FE node
|
||||
//--------------------------------------------------------
|
||||
void ThermostatHooverVerletFiltered::add_to_lambda_power(const DENS_MAT & myLambdaForce,
|
||||
void ThermostatHooverVerletFiltered::add_to_lambda_power(const DENS_MAT & /* myLambdaForce */,
|
||||
double dt)
|
||||
{
|
||||
_myNodalLambdaPower_ = nodalAtomicHooverLambdaPower_->quantity();
|
||||
|
||||
Reference in New Issue
Block a user