Unverified Commit b7055257 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

resolve unused parameter warnings in USER-ATC package

parent 118c2e5b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1693,7 +1693,7 @@ namespace ATC {
    extrinsicModelManager_.construct_transfers();
  }
  //--------------------------------------------------
  void ATC_Coupling::delete_mass_mat_time_filter(FieldName thisField)
  void ATC_Coupling::delete_mass_mat_time_filter(FieldName /* thisField */)
  {
  }
  //--------------------------------------------------
+1 −1
Original line number Diff line number Diff line
@@ -131,7 +131,7 @@ namespace ATC {
    virtual void initialize_mesh_data(void);  

// public for FieldIntegrator
    bool source_atomic_quadrature(FieldName field)  
    bool source_atomic_quadrature(FieldName /* field */)  
      { return (sourceIntegration_ == FULL_DOMAIN_ATOMIC_QUADRATURE_SOURCE); }
    ATC::IntegrationDomainType source_integration() 
      { return sourceIntegration_; }
+1 −1
Original line number Diff line number Diff line
@@ -319,7 +319,7 @@ namespace ATC {
  //  modify
  //    parses inputs and modifies state of the filter
  //--------------------------------------------------------
  bool ATC_CouplingMomentumEnergy::modify(int narg, char **arg)
  bool ATC_CouplingMomentumEnergy::modify(int /* narg */, char ** /* arg */)
  {
    return false;
  }
+4 −4
Original line number Diff line number Diff line
@@ -140,9 +140,9 @@ namespace ATC {
    /** compute scalar for output */
    virtual double compute_scalar() {return 0.;}
    /** compute vector for output */
    virtual double compute_vector(int n) {return 0.;}
    virtual double compute_vector(int /* n */) {return 0.;}
    /** compute vector for output */
    virtual double compute_array(int irow, int icol) {return 0.;}; 
    virtual double compute_array(int /* irow */, int /* icol */) {return 0.;}; 
    int scalar_flag() const {return scalarFlag_;}
    int vector_flag() const {return vectorFlag_;}
    int size_vector() const {return sizeVector_;}
@@ -398,8 +398,8 @@ namespace ATC {
//    /** determine weighting method for atomic integration */
//    void compute_consistent_md_mass_matrix(const SPAR_MAT & shapeFunctionMatrix,
 //                                          SPAR_MAT & mdMassMatrix);
    virtual void compute_md_mass_matrix(FieldName thisField,
                                        DIAG_MAT & massMat) {};
    virtual void compute_md_mass_matrix(FieldName /* thisField */,
                                        DIAG_MAT & /* massMat */) {};
/** access to md mass matrices */

    DIAG_MAN &mass_mat_md_inv(FieldName thisField)
+1 −1
Original line number Diff line number Diff line
@@ -1658,7 +1658,7 @@ namespace ATC {
  }
  //--------------------------------------------------------------------
  void ATC_Transfer::compute_vacancy_concentration(DENS_MAT & Cv,
    const DENS_MAT & H, const DENS_MAT & rhoN)
                                                   const DENS_MAT & H, const DENS_MAT & /* rhoN */)
  {
    int * type = lammpsInterface_->atom_type();
    DENS_MAT new_rho(nNodes_,1);
Loading