Skip to content

Commit

Permalink
Remove unused attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
GiudGiud committed Jan 27, 2025
1 parent 2f7663d commit dd74a6c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions framework/include/variables/MooseVariableData.h
Original file line number Diff line number Diff line change
Expand Up @@ -554,19 +554,19 @@ class MooseVariableData : public MooseVariableDataBase<OutputType>
FieldVariableValue _u_dot;

/// u_dotdot (second time derivative)
FieldVariableValue _u_dotdot, _u_dotdot_bak;
FieldVariableValue _u_dotdot;

/// u_dot_old (time derivative)
FieldVariableValue _u_dot_old, _u_dot_old_bak;
FieldVariableValue _u_dot_old;

/// u_dotdot_old (second time derivative)
FieldVariableValue _u_dotdot_old, _u_dotdot_old_bak;
FieldVariableValue _u_dotdot_old;

/// derivative of u_dot wrt u
VariableValue _du_dot_du;

/// derivative of u_dotdot wrt u
VariableValue _du_dotdot_du, _du_dotdot_du_bak;
VariableValue _du_dotdot_du;

/// The current qrule. This has to be a reference because the current qrule will be constantly
/// changing. If we initialized this to point to one qrule, then in the next calculation we would
Expand Down
8 changes: 4 additions & 4 deletions framework/include/variables/MooseVariableDataFV.h
Original file line number Diff line number Diff line change
Expand Up @@ -373,19 +373,19 @@ class MooseVariableDataFV : public MooseVariableDataBase<OutputType>, public Mes
FieldVariableValue _u_dot;

/// u_dotdot (second time derivative)
FieldVariableValue _u_dotdot, _u_dotdot_bak;
FieldVariableValue _u_dotdot;

/// u_dot_old (time derivative)
FieldVariableValue _u_dot_old, _u_dot_old_bak;
FieldVariableValue _u_dot_old;

/// u_dotdot_old (second time derivative)
FieldVariableValue _u_dotdot_old, _u_dotdot_old_bak;
FieldVariableValue _u_dotdot_old;

/// derivative of u_dot wrt u
VariableValue _du_dot_du;

/// derivative of u_dotdot wrt u
VariableValue _du_dotdot_du, _du_dotdot_du_bak;
VariableValue _du_dotdot_du;

/// Pointer to time integrator
const TimeIntegrator * const _time_integrator;
Expand Down

0 comments on commit dd74a6c

Please sign in to comment.